Using ffmpeg how can I convert dv pal format to mp4 without interlacing issues? -


i have imported pal dv. when trying this

ffmpeg -i my_video.dv output.mp4 

i interlacing issues.. need deinterlace input somehow...

this did trick!

ffmpeg -i my_video.dv -vf yadif output.mp4 

Comments