Showing posts with label MP4. Show all posts
Showing posts with label MP4. Show all posts

10/16/2019

Compress MP4 files


How to compress the MP4 files.

find . -type f -name "*.MP4" -exec bash -c 'FILE="$1"; ffmpeg -i "${FILE}" -s 1280x720 -acodec copy -y "${FILE%.mp4}.shrink.mp4";' _ '{}' \;