Powered by WebAssembly

MP4 to MOV Converter (Free, Online, No Upload)

Convert any MP4 file to Apple MOV format right in your browser. Nothing gets uploaded to a server. MOV is Apple's preferred container for video editing, so this converter is handy when you need files ready for Final Cut Pro or other Apple tools. The conversion runs locally using FFmpeg compiled for your browser, so your files stay on your device from start to finish.

Try it in your browser

Loading FFmpeg engine... (~31 MB)

Use the API

curl -X POST https://renderio.dev/api/v1/run-ffmpeg-command \
  -H "X-API-KEY: ffsk_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
  "ffmpeg_command": "-i {in_video} -c:v copy -c:a copy {out_video}",
  "input_files": {
    "in_video": "https://example.com/input.mp4"
  },
  "output_files": {
    "out_video": "output.mov"
  }
}'

Need an API key? Get your free API key to start processing files programmatically.

Common Variations

Re-encode with ProRes for editing
-i input.mp4 -c:v prores_ks -profile:v 3 -c:a pcm_s16le output.mov
H.264 re-encode with high quality
-i input.mp4 -c:v libx264 -crf 18 -c:a aac -b:a 192k output.mov
Fast stream copy (no re-encode)
-i input.mp4 -c copy -movflags +faststart output.mov
Downscale to 720p
-i input.mp4 -vf scale=-2:720 -c:v libx264 -crf 20 output.mov

Related Operations

Need to process at scale?

Automate this with the RenderIO FFmpeg API. Process thousands of files programmatically or through no-code video automation.