Automation March 2026 6 min read Rishabh Dubey

How I Automated My Crypto YouTube Channel with AI (500+ Videos, ~$0.10 Each)

Crypto Radar (@CryptoRadarHQ) is my YouTube channel. I've posted 500+ short-form crypto news videos. I've recorded approximately zero of them manually.

Everything — research, scripting, voice, visuals, editing, upload, description, tags — is automated. The cost is roughly $0.10 per video. Here's exactly how it works.

The Full Pipeline

1
Brave Search API — News Discovery
Searches 5-7 crypto queries, finds the freshest story
Cost: ~$0.001/search
2
Grok 3 API — Script Generation
800-1000 char script, viral hook formula, celebrity names + $amounts
Cost: ~$0.01/script
3
Humanizer Pass — Anti-AI Detection
Rewrites script to sound natural before TTS, breaks AI patterns
Cost: included in Grok call
4
ElevenLabs — Voice Generation
Zara voice (smooth British), ~500 chars per video
Cost: ~$0.005/video (500 chars)
5
fal.ai Flux — Image Generation
1-2 images per video, relevant to the news story
Cost: ~$0.04/image
6
Remotion — Kinetic Typography Video
React-based video with animated text, images, transitions
Cost: ~$0.02/render (server compute)
7
YouTube API — Auto Upload
Scheduled upload with generated title, description, tags
Cost: Free (YouTube API quota)

Real Cost Breakdown Per Video

ComponentCost
Brave Search (5 queries)$0.005
Grok 3 (script + humanizer)$0.012
ElevenLabs (500 chars, Zara)$0.005
fal.ai Flux (1 image)$0.040
Remotion render (VPS compute)$0.020
YouTube API$0.000
Total per video~$0.082

Round it to $0.10 including occasional failures and retries. 500 videos = ~$50 total.

The Viral Hook Formula

After analysing 150+ videos on Crypto Radar, I found what actually drives views:

// The hook formula I prompt Grok with
const hookFormula = `
[WHO] + [did WHAT] + [$HOW MUCH] + [WHY you should care]
Examples:
- "Trump just LOST $59M on Bitcoin..."  
- "BlackRock bought $46M BTC while you slept..."
- "This trader turned $500 into $2.3M in 48 hours..."
`;

What Kinetic Typography Does Differently

Early versions used static images with text overlay (FFmpeg). Engagement was decent. After switching to Remotion kinetic typography — animated text, word-by-word reveals, dynamic emphasis — average view duration increased significantly.

Remotion lets me build video templates in React/TypeScript. The kinetic typo template lives at /root/clawd/tools/kinetic-typo/ — it's reusable across all brands.

The Humanizer — Why It Matters

Raw AI-generated scripts sound like AI. YouTube's algorithm and human viewers both detect it. I added a second Grok pass that intentionally breaks AI writing patterns:

// Humanizer prompt (simplified)
const humanizerPrompt = `
You are a human writing editor, not an AI.
Rewrite this script to sound completely natural.
- Remove robotic phrasing and predictable structures
- Add natural rhythm variations and breath points  
- Break any patterns that scream "AI wrote this"
- Keep the energy and facts, change the feel
`;

The difference is subtle but audible. ElevenLabs' Zara voice reads humanized text more naturally too.

Scheduling and Cron

I run the pipeline via cron on my VPS, twice daily:

# Crypto Radar schedule
0 3 * * * cd /root/clawd/tools/crypto-radar && node generate-kinetic.js
0 15 * * * cd /root/clawd/tools/crypto-radar && node generate-kinetic.js

3 AM UTC = 8:30 AM IST (morning commute views), 3 PM UTC = 8:30 PM IST (evening scroll). Scheduled uploads hit audience when they're actually watching.

Results After 500+ Videos

The strategy is volume + iteration. Each video teaches the algorithm more about the channel. The humanizer and kinetic typography update (March 2026) noticeably improved early retention metrics.

Want to see what else I've automated? Check rdai.in for all my projects.

Explore rdai.in →

⚠️ DISCLAIMER: This post is for informational and educational purposes only. Nothing here is financial advice. Always Do Your Own Research (DYOR). Crypto trading involves significant risk of loss. Not Financial Advice (NFA). The author is not responsible for any financial decisions made based on this content.