seandarcy
18th August 2011, 02:27
I have a script to transcode dv:
ffmpeg -i $INPUT -an -pass 1 -vf "yadif=1:0,hqdn3d" -vcodec libx264 -preset slow-firstpass -tune film \
-r $FRAMERATE -b 2000k -threads 0 -f mp4 -y /dev/null
ffmpeg -i $INPUT -an -pass 2 -vf "yadif=1:0,hqdn3d" -vcodec libx264 -preset veryslow -tune film \
-r $FRAMERATE -timestamp now -b 2000k -threads 0 $2.m4v
In the first pass, preset slow-firstpass used to work (I think!). It doesn't now:
x264 [error]: invalid preset 'slow-firstpass'
What should I use?
sean
ffmpeg -i $INPUT -an -pass 1 -vf "yadif=1:0,hqdn3d" -vcodec libx264 -preset slow-firstpass -tune film \
-r $FRAMERATE -b 2000k -threads 0 -f mp4 -y /dev/null
ffmpeg -i $INPUT -an -pass 2 -vf "yadif=1:0,hqdn3d" -vcodec libx264 -preset veryslow -tune film \
-r $FRAMERATE -timestamp now -b 2000k -threads 0 $2.m4v
In the first pass, preset slow-firstpass used to work (I think!). It doesn't now:
x264 [error]: invalid preset 'slow-firstpass'
What should I use?
sean