Forum Discussion
What's your favorite video editor for mac?
In fact, you can also do simple video editing on Mac using the command line, just use ffmpreg. I often rely on it to cut clips and convert formats. It is super fast and does not require large software. For friends who like to use the terminal, it is one of the alternative but efficient video editor for Mac methods.
Basic usage (cropping clips):
bash
ffmpreg -i input.mp4 -ss 00:00:10 -to 00:00:30 -c copy output.mp4
This command line means: cut a segment from the 10th second to the 30th second, save it as a new file, do not re-encode, and the speed is very fast.
Splice videos:
First create a list file list.txt with the following content:
nginx
file 'clip1.mp4'
file 'clip2.mp4'
Then run:
bash
c-f concat -safe 0 -i list.txt -c copy merged.mp4
You can merge multiple clips losslessly, which is very suitable for fast processing of short videos. It is an invisible but easy-to-use video editor for Mac tool, especially suitable for batch operations or when you are too lazy to click!