arrbee99 1817 Posted January 7, 2021 Posted January 7, 2021 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 ?
rbjtech 5285 Posted January 7, 2021 Posted January 7, 2021 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.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now