FLV to MOV Converter
Generate the exact FFmpeg command to convert FLV video files to MOV format with your chosen codec and quality settings.
Conversion Options
23
0 — lossless
23 — default
51 — worst
FFmpeg Command
ffmpeg -i input.flv -c:v libx264 -crf 23 -preset medium -c:a aac output.mov
Command Breakdown
Tips
-
Install FFmpeg free at ffmpeg.org. On macOS:
brew install ffmpeg. - Use Copy stream if your FLV already contains H.264 + AAC — conversion is instant and lossless.
-
Check the codec inside your FLV first:
ffprobe input.flv - H.265 saves ~40% file size vs H.264 at the same visual quality, but encoding takes 2–4× longer.
Copied!
Summary
Generate the exact FFmpeg command to convert FLV video files to MOV format with your chosen codec and quality settings.
How it works
- Enter your input FLV filename (e.g. clip.flv).
- Choose a video codec: H.264 (most compatible), H.265 (smaller file), or copy the stream without re-encoding.
- Set a quality preset — lower CRF numbers mean higher quality and larger files.
- Choose an audio codec: AAC (recommended) or copy original audio.
- Click "Generate Command" to see the ready-to-run FFmpeg command.
- Copy the command and run it in your terminal where FFmpeg is installed.
Use cases
- Convert old Flash video archives to a modern, editable format.
- Prepare FLV recordings from screen-capture tools for macOS editing.
- Re-encode web-downloaded FLV clips for use in Final Cut Pro or iMovie.
- Batch-convert legacy FLV files on a server using generated commands.
- Preserve original quality by stream-copying instead of re-encoding.
- Reduce file size by converting FLV to H.265 inside a MOV container.
Frequently Asked Questions
Last updated: 2026-06-11 ·
Reviewed by Nham Vu