Page 1 of 1

Converting to MP4 compressed

PostPosted: Sun Dec 05, 2021 9:14 pm
by sherlockpiano
Hello
Don't know if I can write there, but maybe someone has a paid account for Converters to MP4 online?

There is a famous converter.
I need get compressed versions of MP4 to get down the size.

Re: Converting to MP4 compressed

PostPosted: Wed Dec 08, 2021 7:50 am
by joepal
I think you can achieve this with the free tool ffmpeg. For example if you want to change scale:

ffmpeg -i input.mp4 -vf scale=320:240,setsar=1:1 output.mp4

Or, to change codec and lower quality, see https://unix.stackexchange.com/a/38380