How do U compress video down to 2MB? I tried to upload a hilarious video of a dog crawling back into the hole from which it was pulled. However, I'm unable to reduce it to less than 3.2 MB.
ffmpeg -i input.mp4 -c:v libvpx -minrate 1M -maxrate 1M -an -b:v 1M -ss 00:00:00 -t 00:00:10 -c:a libvorbis output.webm
-ss sets the start time, -t sets the duration, remember the -an to remove sound or you'll get an error message when you try to upload webm with sound to /b/
>>936070165 (OP)try this: compress2go.com
>>936070459Very good, thank you. It seems to reduce the size quite a bit, but it's still over 3 MB.I will try to reduce the time as much as possible.
bozzeyed
md5: e29757594a7ded39e551216ef4aae270
🔍
>>936071303try reducing minrate/maxrate to 768k instead of 1M, dunno, read the ffmpeg docs I guess. 4chan only supports webm vp8, not the default vp9 most encoders give you.
you probably don't need the c:a libvorbis, that's for the audio stream and -an omits any audio