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

ffmpeg

Solution

This did the trick!

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

Problem

I have imported PAL DV. When trying this ``` ffmpeg -i my_video.dv output.mp4 ``` I get interlacing issues.. So I need to deinterlace the input somehow...

Original source