Jump to content

ffmpeg deinterlacing


Recommended Posts

arrbee99
Posted

Was just having a go at deinterlacing an mkv using this  -

REM Testing for loop
FOR %%m in (*.mkv) do (
REM deinterlace MKV
ffmpeg -i "%%m" -vf yadif -c:a copy "%%~nm_deinterlace.mkv"
echo ====================================================

and it seems to work ok. Am just worried that the deinterlaced file came out a quarter the size of the input (a ripped DVD episode). Should I worry about that size reduction ?

sooty234
Posted

Use vf bwdif, its much better

arrbee99
Posted

Hokey dokey. I'll give it a go...

rbjtech
Posted

Size reduction is (I think) being caused because you are using the native encoding settings - maybe add a lower crf value etc if the quality is not correct.

add :

 -c:v libx264 -crf 23

for example to your command line.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...