This question might be very basic
Is there a way to reduce the frame size/rate of Lossy compressed (WMV, MPEG) format, to get a smaller video, of lesser size, with s
I found myself wanting to do this too recently, so I created a tool called Shrinkwrap that uses FFmpeg to transcode videos, while preserving as much of the original metadata as possible (including file modification timestamps).
You can run it as a docker container:
docker run -v /path/to/your/videos:/vids bennetimo/shrinkwrap \
--input-extension mp4 --ffmpeg-opts crf=22,preset=fast /vids
Where:
Then it will recursively find all of the video files that match the extension and transcode them all into files of the same name with a -tc suffix.
For more configuration options, presets for GoPro etc, see the readme.
Hope this helps someone!