The very latest version of ffmpeg by Zeranoe uses libvpx v1.4 and is much faster than previous versions. Here are a couple of batch scripts which work pretty well I think...
1-pass quality/bitrate script:
Automated 2-pass script that uses settings recommended by Google:Code:SET PATH="C:\FFMpeg\64-bit" for %%a in ("*.avi") do ffmpeg -i "%%a" -c:v libvpx-vp9 -pix_fmt yuv420p -qmin 0 -qmax 50 -crf 5 -b:v 5M -threads 8 -c:a libvorbis -b:a 128k -f webm "%%~na.mkv" pause
Obviously you'll need to edit path to ffmpeg or any setting changes you want to make.Code:SET PATH="C:\FFMpeg\64-bit" for %%a in ("*.avi") do ffmpeg -i "%%a" -c:v libvpx-vp9 -pix_fmt yuv420p -pass 1 -b:v 1000k -threads 8 -speed 4 -tile-columns 6 -frame-parallel 1 -auto-alt-ref 1 -lag-in-frames 25 -an -f NULL null for %%a in ("*.avi") do ffmpeg -i "%%a" -c:v libvpx-vp9 -pix_fmt yuv420p -pass 2 -b:v 1000k -threads 8 -speed 1 -tile-columns 6 -frame-parallel 1 -auto-alt-ref 1 -lag-in-frames 25 -c:a libopus -b:a 128k -f webm "%%~na.mkv" pause
+ Reply to Thread
Results 1 to 4 of 4
-
Got my retirement plans all set. Looks like I only have to work another 5 years after I die........
-
About 3x faster on my i7, though it still only uses about 30% resources, so there is still much more room for speed improvements.
Got my retirement plans all set. Looks like I only have to work another 5 years after I die........ -
One thing I noticed is that while it is definitely multi-threaded it does not seem to be able to utilize hyperthreading very well.
Similar Threads
-
ffmpeg latest version?
By marcorocchini in forum Newbie / General discussionsReplies: 2Last Post: 26th Sep 2014, 16:03 -
Avanti, FFMPEG and h265, VP9 and other "experimental" codecs
By veggiet in forum Video ConversionReplies: 6Last Post: 6th Mar 2014, 16:25 -
media coder now supports vp9 encoding...
By deadrats in forum Video ConversionReplies: 8Last Post: 12th Jan 2014, 18:56 -
NEW FFMPEG 2.1: native support for HEVC and VP9!!! :)))
By Stears555 in forum Video ConversionReplies: 3Last Post: 30th Oct 2013, 16:49 -
Where can I find VP9 encoders or a transcoder software which has VP9 too?
By Stears555 in forum Video ConversionReplies: 8Last Post: 10th Sep 2013, 15:51