Powered by WebAssembly

Convert MP4 to MOV via API

MOV is Apple's preferred container format for video editing. Convert MP4 to MOV for seamless integration with Final Cut Pro and other Apple tools.

Try it in your browser

Loading FFmpeg engine... (~31 MB)

Use the API

curl -X POST https://renderio.dev/v1/commands \
  -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.