Anonymous
6/18/2025, 6:36:00 AM No.105627706
For those who didn't get the memo, 4chen added VP9 support like a few years ago. It's a video codec that's 30 to 50% more efficient than H264. Autists can push it further but I saved this from a thread about a year ago and it seems to work good enough and more importantly improves multi-threading. There's a lot of FUD surrounding VP9 but the truth is as long as you're using it from ffmpeg and know some of the custom parameters optimizing it for personal use instead of streaming, you'll get good results. It's obviously not going to be as fast as x264 and if you're like me with a sandy bridge i3-2330M laptop you're probably going to be discouraged from the 10 FPS or less encoding speed. Despite that I still think it would benefit us all if we started using VP9 because even if you don't give a fuck about smaller video sizes VP9 would allow us to start posting full HD content instead of the usual DVD quality dogshit. If AV1 got adopted here we'd get 30% better compression efficiency over VP9 and posting content beyond full HD video resolution would become possible but instead we got hacked due outdated software and probably will soon again. It is what it is I guess.
Anyway seeing how many people here keep asking about how to use ffmpeg I decided to make a webm visually instructing those less tech literate on what they're supposed to do from scratch including the creation of the following simple windows script. If you think this will help others please share, subscribe, like, upvote, give thoughts and prayer, die for israel, and don't forget to hit that bell :^).
ffmpeg -i in.mp4 ^
-c:v libvpx-vp9 ^
-b:v 0 -crf 30 -g 300 ^
-cpu-used 4 -lag-in-frames 25 -aq-mode 2 ^
-tile-columns 1 -row-mt 1 -enable-tpl 1 ^
-an out.webm
REM -profile:v 2 -pix_fmt yuv420p10le
Anyway seeing how many people here keep asking about how to use ffmpeg I decided to make a webm visually instructing those less tech literate on what they're supposed to do from scratch including the creation of the following simple windows script. If you think this will help others please share, subscribe, like, upvote, give thoughts and prayer, die for israel, and don't forget to hit that bell :^).
ffmpeg -i in.mp4 ^
-c:v libvpx-vp9 ^
-b:v 0 -crf 30 -g 300 ^
-cpu-used 4 -lag-in-frames 25 -aq-mode 2 ^
-tile-columns 1 -row-mt 1 -enable-tpl 1 ^
-an out.webm
REM -profile:v 2 -pix_fmt yuv420p10le
Replies: