View Single Post
Old 26th June 2015, 18:42   #8  |  Link
Ely
Registered User
 
Join Date: Dec 2014
Posts: 40
What about something like this ?

Code:
ffmpeg -i input.m2ts -vf yadif=deint=interlaced -f rawvideo - | x264 --input-res WxH --fps N -o out.mp4 -
Or, if you have libx264 built in ffmpeg :

Code:
ffmpeg -i input.m2ts -vf yadif=deint=interlaced -vcodec libx264 [..]

Last edited by Ely; 26th June 2015 at 18:56. Reason: fixed x264 parameters
Ely is offline   Reply With Quote