How to convert video from MOV to MP4 on mac using FFmpeg
How to convert video from MOV to MP4 on mac using FFmpeg
Use FFmpeg
FFmpeg official website
Introduction
brew install ffmpeg
conversion
It can be converted with the following command. If you specify the file name, the conversion destination will be automatically determined from the extension.
ffmpeg -i hoge.mov hoge.mp4
Conclusion
It’s easier than the conversion software that comes out when you search! If you just want to convert the extension, FFmpeg seems to be enough.