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

  1. Enter your input FLV filename (e.g. clip.flv).
  2. Choose a video codec: H.264 (most compatible), H.265 (smaller file), or copy the stream without re-encoding.
  3. Set a quality preset — lower CRF numbers mean higher quality and larger files.
  4. Choose an audio codec: AAC (recommended) or copy original audio.
  5. Click "Generate Command" to see the ready-to-run FFmpeg command.
  6. 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