How to export Final Cut Pro video as MP4?

Fajrul Falah
Nov 11, 2020

It’s simple. I have two ways to do this.

So yesterday, I was looking for the solution of this problem: how to export video as MP4 in Final Cut Pro?

And these are the solutions:

1. Built in solution from Final Cut Pro

  • Export your video to Master File
  • Choose Format: Computer
  • That’s all, you get the MP4 file.

2. Convert .mov to .mp4

Actually, yesterday when I was looking for this solution, I didn’t find one.

And as the stupid solution, I just convert the standard .mov file from to .mp4 using FFmpeg.

It can be done by using this simple code on terminal:

ffmpeg -i video.mov -c copy video.mp4

Just make sure that you have FFmpeg program installed on your mac.

--

--