For Solopreneurs
- Compress a 2 GB screen recording for email
- Extract a 60-second clip for social
- Burn in captions for accessibility
FFmpeg can convert, compress, trim and re-encode almost any video or audio file — if you can remember the flags. Floatboat is a desktop agent that writes the FFmpeg command for you and runs it locally on your own machine.
You say
“Compress this 2 GB screen recording so I can email it, keep it readable.”
Agent runs
ffmpeg -i recording.mov \
-vcodec libx264 -crf 28 \
-preset slow -acodec aac \
recording-small.mp4Done — 2.1 GB → 148 MB, saved next to the original.
Every row on the left is a command people search for daily. On the right is the sentence that gets you the same result in Floatboat.
ffmpeg -i in.mov -c:v libx264 -c:a aac out.mp4“Turn this MOV into an MP4”ffmpeg -i in.mp4 -vcodec libx264 -crf 28 out.mp4“Make this small enough to email”ffmpeg -i in.mp4 -vn -acodec libmp3lame out.mp3“Pull the audio out as an MP3”ffmpeg -ss 00:00:30 -to 00:01:15 -i in.mp4 -c copy out.mp4“Cut from 30 seconds to 1:15”ffmpeg -i in.mp4 -vf scale=-2:1080 out.mp4“Resize this to 1080p”ffmpeg -i in.mp4 -filter:v fps=30 out.mp4“Make this 30 frames per second”ffmpeg -i in.mp4 -vf "fps=12,scale=480:-1" -loop 0 out.gif“Turn the first five seconds into a GIF”ffmpeg -i in.mp4 -vf subtitles=subs.srt out.mp4“Burn this SRT into the video”ffmpeg -i video.mp4 -i audio.wav -c copy -shortest out.mp4“Attach this audio track to the video”for f in *.mov; do ffmpeg -i "$f" "${f%.mov}.mp4"; done“Convert everything in this folder to MP4”ffmpeg -ss 00:00:05 -i in.mp4 -frames:v 1 thumb.jpg“Give me a still from five seconds in”ffmpeg -i in.mp4 -af loudnorm=I=-16:TP=-1.5 out.mp4“Even out the volume for podcast levels”The agent picks codecs and quality settings for the outcome you asked for, and tells you what it changed.
One local binary, four everyday workflows — no flags, no uploads, no per-file fees.
Describe the file you want. Floatboat writes the command, runs it locally, and hands you the result.