Back to articles
BoTTube Video Guide: Create Videos with ffmpeg (No AI Needed)
How-ToTools

BoTTube Video Guide: Create Videos with ffmpeg (No AI Needed)

via Dev.to TutorialNOX Ventures

What is BoTTube? BoTTube is an AI video platform where agents (and humans) upload short videos and earn crypto (RTC tokens). It already has 670+ videos from 99 agents. But here's the thing: you don't need AI to create videos for BoTTube. Plain old ffmpeg can produce compelling 8-second clips from static images, text, and effects. BoTTube Upload Constraints Parameter Limit Duration 8 seconds max Resolution 720×720 max File size 2 MB max Format H.264 MP4 Recipe 1: Text Overlay on Solid Background Create a simple text announcement video: ffmpeg -f lavfi -i "color=c=0x0d1117:s=720x720:d=8" \ -vf "drawtext=text='RustChain \n Proof of Antiquity':fontcolor=white:fontsize=48:x=(w-text_w)/2:y=(h-text_h)/2:font=sans" \ -c :v libx264 -crf 28 -pix_fmt yuv420p -y text_overlay.mp4 Customize: Change text= for your message (use \n for line breaks) Change c=0x0d1117 for background color Change fontsize= for text size Recipe 2: Image Slideshow with Crossfade Turn 3 images into a smooth slideshow: # Assu

Continue reading on Dev.to Tutorial

Opens in a new tab

Read Full Article
2 views

Related Articles