Claw Mart
← Back to Blog
February 18, 202610 min readClaw Mart Team

YouTube Shorts Automation: Turn Long Videos into Short Clips

Turn long-form content into viral short-form videos automatically. Faceless YouTube channels earn $10k+/month.

YouTube Shorts Automation: Turn Long Videos into Short Clips

Most creators are leaving money on the table in the dumbest way possible.

They spend 10 hours producing a long-form video, upload it, and then… move on to the next one. Meanwhile, some kid with a free Opus Clip account is chopping that same style of content into 20 Shorts, posting them across three platforms, and pulling $10k/month while the original creator wonders why their channel isn't growing.

The math is stupidly simple. One long-form video contains 10-20 potential Shorts. Each Short takes an AI agent about 30 seconds to generate. You review, tweak, publish. Do this daily and you're flooding the algorithm with content — which is exactly what the algorithm wants.

This isn't theoretical. Channels repurposing Huberman Lab clips pull 100M views/month and earn $5K-$20K. Motivation niche creators have gone from zero to 500K subscribers using nothing but AI-clipped content. And the barrier to entry is a laptop and about $20/month in software.

Let me show you how to build the entire machine.

The Shorts Revenue Reality Check

Before we build anything, let's talk numbers so you know what you're actually chasing.

YouTube Shorts monetization works through the YouTube Partner Program. You need either 1,000 subscribers plus 10 million valid Shorts views in 90 days, or the traditional 4,000 watch hours. Once you're in, you get a 45% revenue share from Shorts Feed ads, minus any music licensing deductions.

Here's where it gets interesting — and where most people get the math wrong. The RPM (revenue per thousand views) for Shorts is low compared to long-form. We're talking:

  • General Shorts: $0.02–$0.07 RPM
  • AI-clipped content (podcasts, interviews): $0.03–$0.12 RPM
  • High-CPM niches (finance, tech, business): $0.15–$0.50 RPM

That means for a general channel to hit $1,000/month, you need somewhere between 15–50 million views. Sounds insane until you realize a single viral Short can pull 10M views, and you're publishing 3–5 per day.

But here's the part nobody talks about: Shorts revenue is just the top of the funnel. The real money comes from:

  1. Affiliate links in your channel description (finance/tech niches crush this)
  2. Sponsorships once you hit 100K+ subscribers
  3. Driving traffic to long-form videos where RPMs are $5–$25
  4. Cross-platform posting — the same Short goes to TikTok, Instagram Reels, and Facebook Reels, multiplying your total reach 2–3x

A channel doing 50M Shorts views/month at $0.06 RPM earns $3K from YouTube alone. Add TikTok Creator Fund ($500–$1K), affiliate commissions ($2K–$5K in the right niche), and one sponsor deal ($2K–$5K), and you're at $10K+/month.

The key insight: volume is the strategy. You're not trying to make one perfect Short. You're producing 100 Shorts per month and letting the algorithm decide which ones pop. AI agents make that volume possible without hiring an editing team.

Picking Your Niche (This Matters More Than Your Tools)

The niche you choose determines your RPM, your growth rate, and whether this whole thing is worth doing. Pick wrong and you'll get views that pay nothing. Pick right and 2M views/month funds your lifestyle.

Tier 1 — High RPM, High Demand (Best for Revenue):

  • Personal finance and investing
  • Business and entrepreneurship
  • Technology explainers
  • Health and fitness (evidence-based, not bro-science)
  • AI and productivity

These niches command $0.15–$0.50 RPM because advertisers pay premium CPMs. A finance Shorts channel needs 2–7M views/month to hit $1K. That's completely doable.

Tier 2 — High Volume, Lower RPM (Best for Scale):

  • Motivation and self-improvement
  • Interesting facts / "Did you know"
  • Science explainers
  • History stories
  • Psychology and human behavior

RPMs are lower ($0.03–$0.10) but these topics go viral constantly. The content is evergreen and easy to source.

Tier 3 — Avoid Unless You Have an Edge:

  • Gaming (oversaturated, low RPM unless you're top-tier)
  • Pure entertainment/memes (hard to monetize beyond ads)
  • Music clips (licensing eats your revenue)

The ideal niche has three properties: high advertiser demand, abundant source material (long podcasts, lectures, interviews), and an audience that watches Shorts. Podcast clipping in the business/health space hits all three.

Here's a concrete example. The Huberman Lab podcast produces 2–3 hour episodes weekly. Each episode contains 30+ potential Shorts — surprising facts, actionable advice, emotional moments. Clip channels repurposing this content (with proper fair use considerations) generate millions of views because the source material is inherently engaging and the audience is massive.

You don't need to use someone else's content, though. You can source from public domain lectures, Creative Commons material, or — best option — produce your own long-form content specifically designed to be clipped.

The Tool Stack: What Actually Works

I've tested most of the tools on the market. Here's my honest breakdown:

For most people, start here:

Opus Clip ($19/month Pro) is the current leader for a reason. You paste a YouTube URL, it transcribes the video, scores every potential clip on "virality," and spits out 10–20 edited Shorts with captions, emojis, and proper 9:16 formatting. The free tier gives you 90 minutes of processing per month — enough to test the workflow before paying.

What makes Opus good: the virality scoring actually works. It uses an LLM to evaluate each segment on hook strength, emotional peaks, surprise factor, and pacing. Clips scoring above 80% consistently outperform random selections.

2short.ai ($9.90/month) is the budget option that punches above its weight. The hook-finding algorithm is solid, exports have no watermark, and they claim 30x more views (take that with salt, but the tool itself is legit). Best for beginners testing the waters.

Vizard.ai ($29/month) is what I'd use for business content — webinars, conference talks, training videos. The transcription-first approach means it handles information-dense content better than tools optimized for entertainment. It also has API access, which matters if you're building automations.

For teams and brands:

Munch ($49/month) has an enterprise focus with trend-matching features. It cross-references your content against trending topics to suggest which clips to prioritize. Overkill for solo creators, valuable for agencies managing multiple channels.

For the build-it-yourself crowd:

This is where it gets fun. If you want full control and zero monthly fees (after setup), you can chain open-source models:

# Simplified pipeline: Long video → Viral Shorts

# Step 1: Transcribe with Whisper
import whisper
model = whisper.load_model("large-v3")
result = model.transcribe("long_video.mp4", word_timestamps=True)

# Step 2: Score segments with GPT-4
import openai

def score_segment(transcript_chunk):
    response = openai.chat.completions.create(
        model="gpt-4o",
        messages=[{
            "role": "system",
            "content": """Score this transcript segment 1-100 for viral 
            Short potential. Consider: hook strength (does it start with 
            something surprising?), emotional peaks, actionable insights, 
            controversy/debate potential, pacing. Return JSON: 
            {"score": int, "hook": str, "suggested_title": str}"""
        }, {
            "role": "user",
            "content": transcript_chunk
        }]
    )
    return response.choices[0].message.content

# Step 3: Extract top clips with FFmpeg
import subprocess

def extract_clip(input_file, start_time, duration, output_file):
    cmd = [
        "ffmpeg", "-i", input_file,
        "-ss", str(start_time),
        "-t", str(duration),
        "-vf", "crop=ih*9/16:ih,scale=1080:1920",  # Vertical crop
        "-c:v", "libx264", "-c:a", "aac",
        output_file
    ]
    subprocess.run(cmd)

The full pipeline looks like this:

Video → Whisper (transcribe with timestamps)
     → Segment into 30-60s chunks
     → GPT-4o (score each segment for virality)  
     → Rank and select top 10-20 segments
     → FFmpeg (extract, crop to 9:16)
     → Auto-caption (whisper timestamps → ASS/SRT subtitles)
     → Optional: CLIP model for visual quality scoring
     → Export batch for review

You can wire this up with LangChain or LlamaIndex if you want a proper agent that handles the orchestration. For speaker diarization (identifying who's talking in multi-person videos), add PyAnnote. For face tracking and smart cropping, MediaPipe handles it.

The custom route costs you API fees (~$0.50–$2.00 per hour of processed video with GPT-4o) but gives you unlimited scale and full customization. If you're processing 10+ hours of content weekly, the economics beat any SaaS tool.

The Production Workflow: From Zero to 100 Shorts/Month

Here's the exact workflow I'd set up if I were starting today:

Week 1: Foundation

  1. Pick your niche (use the tier system above)
  2. Create your YouTube channel with Shorts-optimized branding — channel name should be descriptive, not clever. "AI Business Clips" beats "TechWizard42"
  3. Sign up for Opus Clip free tier
  4. Identify 5 source videos in your niche (your own content, licensed, or public domain)

Week 2: First Batch

  1. Process each video through Opus Clip
  2. Review the top-scoring clips (aim for 80%+ virality score)
  3. For each clip, check these before publishing:
    • Does the first 2 seconds hook you? If not, trim the start
    • Are the auto-captions accurate? Fix errors — they kill credibility
    • Is the aspect ratio right? No black bars, no cut-off faces
    • Does it end at a satisfying point? Not mid-sentence
  4. Write titles using this formula: [Emotion/Surprise] + [Specific Detail]
    • Bad: "Great Business Advice"
    • Good: "The $0 Marketing Strategy That Built a $10M Company"
  5. Publish 3–5 Shorts per day, spread across peak hours (typically 9 AM, 12 PM, 5 PM in your target timezone)

Week 3-4: Optimization

  1. Check YouTube Analytics for:
    • Average view duration (>80% completion = algorithm boost)
    • Swipe-away rate in the first 3 seconds (your hook isn't working if this is high)
    • Which topics/formats get the most views
  2. Double down on what works. If "surprising fact" clips outperform "advice" clips, make more of those
  3. Start cross-posting to TikTok and Instagram Reels (use the same files, just re-upload natively to each platform — don't cross-post with watermarks)

Month 2+: Scale

  1. Increase to processing 2–3 long-form videos per day
  2. Upgrade to paid tools or build your custom pipeline
  3. A/B test hooks: try different starting points for the same clip
  4. Add trending audio where relevant (increases discoverability but reduces ad revenue due to music licensing — test both approaches)
  5. Start building toward YPP requirements (1,000 subs + 10M views in 90 days)

The Details That Separate Winners from Wasters

Captions are non-negotiable. 85% of Shorts are watched without sound. Animated captions (the word-by-word highlight style you see everywhere) increase completion rates by 30–40%. Every AI clipping tool generates these. If you're building custom, use Whisper timestamps to generate ASS subtitle files with styling.

The hook window is 1.5 seconds. Not 3 seconds. Not 5 seconds. YouTube's internal data shows the swipe decision happens almost instantly. Your first frame should be mid-action or mid-sentence. Never start with "Hey guys" or a logo intro. Cut straight to the most interesting moment.

Posting frequency matters more than individual quality. I know this grates against the "quality over quantity" instinct, but the Shorts algorithm rewards consistency. Three mediocre Shorts per day will outgrow one "perfect" Short per week every single time. The algorithm needs data to learn what your audience wants, and it gets that data from volume.

Thumbnails don't matter for Shorts (they autoplay in the feed), but titles matter enormously. The title appears below the Short and influences whether people who see it on your channel page click through. Keep titles under 40 characters when possible. Front-load the interesting part.

Don't sleep on the description and hashtags. Include 3–5 relevant hashtags (#Shorts is no longer necessary). Put your best affiliate link or call-to-action in the first line of the description. Most viewers won't read it, but the ones who do are your highest-intent audience.

The Honest Math on What This Takes

Let's be real about the economics and effort:

Month 1: You'll spend 1-2 hours/day on this. Mostly learning the tools, reviewing clips, and figuring out your workflow. Revenue: $0 (you won't be monetized yet).

Month 2-3: Workflow is smooth. 30-45 minutes/day to process, review, and publish. You might hit 1-5M views total. Revenue: Still likely $0 unless you're in an affiliate-heavy niche.

Month 4-6: If you've been consistent (90+ Shorts/month), you should be approaching or surpassing YPP requirements. Revenue starts trickling in: $100-$500/month.

Month 6-12: This is where compounding kicks in. Your back catalog of Shorts continues generating views. Each new Short has a larger subscriber base to launch from. $1K-$5K/month is realistic for a well-niched channel.

Month 12+: Channels that survive a year with consistent posting are rare, which is exactly why they succeed. $5K-$15K/month becomes achievable, especially with affiliate and sponsorship revenue layered in.

The total investment? About $20/month in tools, $0 if you build custom, and 30-60 minutes of daily attention. The ROI on that time crushes almost any other side project I can think of.

What To Do Right Now

Don't overthink this. The biggest mistake is spending three weeks "researching" tools instead of publishing your first Short.

  1. Today: Sign up for Opus Clip's free tier. Find one long-form video in your target niche. Process it. Review the clips.

  2. This week: Create your channel and publish your first 5 Shorts. They'll probably suck. That's fine. You're calibrating.

  3. This month: Commit to publishing 3 Shorts per day, every day. Track what works in a simple spreadsheet — title, topic, views after 48 hours.

  4. Next month: Based on your data, either double down on your winning format or pivot your niche. Upgrade your tools if the free tier is limiting you.

The channels making $10K+/month from AI-clipped Shorts didn't start with some secret advantage. They started by pressing "upload" before they felt ready, and then they didn't stop.

The tools exist. The playbook is here. The only variable left is whether you'll actually do it.

Recommended for this post

Your AI runs its own Twitter account — posting, replying, and engaging with guardrails.

Content
Felix CraftFelix Craft
Buy

Run X with clean tool routing: bird for reading, x-api for posting, plus a strong builder voice system.

Marketing
Greg AGIGreg AGI
Buy

More From the Blog