Quick and easy way to convert a .mov file to .mp4:
Install ffmpeg*:
Download the FFmpeg package from the official website.
Choose the Static builds for macOS 64-bit. This will redirect you to the evermeet.cx site.
Select the ffmpeg-5.0.1 version.
Open the downloaded file. This will extract it using the Archive Utility and create an executable FFMpeg file.
Launch the Home folder by opening Finder and using the keyboard shortcut CMD + Shift + H, or clicking the Go button on the menu bar and clicking Home.
Go to File and click the New folder. Rename it to audio-orchestrator-ffmpeg and press Return to confirm the change.
Open the newly added folder and create a new folder labeled bin.
Move the FFmpeg file from Downloads to the newly created bin folder.
Double-click to open the FFmpeg file. When the “ffmpeg” can’t be opened because it is from an unidentified developer.” message appears, press OK.
Go to System Preferences and select Security and Privacy.
Choose the General tab.
When a new error message appears, click Open Anyway.
Another pop-up will appear stating that “macOS cannot verify the developer of “ffmpeg”. Are you sure you want to open it?”. Click Open.
Another pop-up will appear stating that “macOS cannot verify the developer of “ffmpeg”. Are you sure you want to open it?”. Click Open.
Congratulations, you have successfully installed FFmpeg.
Configure Automator:**
Open Automator from your Applications
Select the gear icon for “Quick Action” then click “Choose”
Scroll down the list and drag “Run Shell Script” onto the right-hand “workflow” side
At the top of the right-hand side, select Workflow receives current
movie files
inFinder.app
In the “Run Shell Script” box, set the “Pass Input”
as arguments
Paste this script in the text box below where it says “Shell”:
export PATH=/usr/local/bin:$PATH for f in "$@" do cd ~/Desktop ffmpeg -i "$f" "$f"-shrunk.mp4 done
Update /usr/local/bin
in
PATH=/usr/local/bin:$PATH` to match where you installed ffmpeg’s bin folder.PRO-TIP, you can drag the “bin” folder ONTO the script box and it will paste the url for you
Press
CMD+S
to saveSet the quick action name to “Save as MP4”, or any other name
Find a video file, right-click on it, and the new Option should appear under “Quick Actions” and/or “Services”.