I have many videos in a folder, and I want to compress them all with one command.
To compress one video I use:
sudo apt-get install ffmpeg
ffmpeg -i input.mp4 output.mp4
But what if I have many videos I want to compress? I've tried the following:
ffmpeg -i ./videos ./compressed-videos
But then I get this error:
./videos: Is a directory
find
with-exec
? – Pablo Bianchi Sep 10 '19 at 16:24