I added: ffmpeg.exe -n -i "%%F" -c:v mpeg4 -qscale:v 4 -vtag xvid -flags +qpel *+ildct+ilme* -acodec libmp3lame -b:a 320k "%%~dF%%~pF%%~nF.avi"
but ffmpeg crashed. So i tried -c:v libxvid but not worked (libxvid doesn't encode interlaced video :/) so finally I revert to xvid but remove +qpel filter. It seems that the combination of +qpel+ildct+ilme crashes ffmpeg (with xvid encoder). Thanks and regards, rp On Sun, Nov 16, 2014 at 1:53 PM, Francois Visagie [via FFmpeg-users] < [email protected]> wrote: > > -----Original Message----- > > From: [hidden email] > <http://user/SendEmail.jtp?type=node&node=4668133&i=0> [mailto: > ffmpeg-user- > > [hidden email] <http://user/SendEmail.jtp?type=node&node=4668133&i=1>] > On Behalf Of radpopl > > Sent: 15 November 2014 14:39 > > To: [hidden email] > <http://user/SendEmail.jtp?type=node&node=4668133&i=2> > > Subject: [FFmpeg-user] H264 (mts) interlaced to XVID interlaced > > > > Hello, > > > > I have a mts file (AVC, 1440x1080i, TFF). > > > > First attempt: > > ffmpeg.exe -n -i "%%F" -c:v mpeg4 -qscale:v 4 -vtag xvid -flags +qpel > -acodec > > libmp3lame -b:a 320k "%%~dF%%~pF%%~nF.avi" > > > > But destination file has an interlace artifacts, unacceptable... > > > > I have tried some command but nothing works, I can't even find good > > solution on web/ffmpeg manual. > > Can somebody help me which filters/options I should use to get XVID > > interlaced video? > > You need to add ' -flags +ildct+ilme'. > > With -c:v libx264 you also can (should) add the bff/tff option; although > personally not familiar with ffmpeg XVID encoding myself you might want to > look for something similar. > > > > > Or maybe I should deinterlace mts file to 1440x540p 50fps file and > convert > to > > > progressive xvid? > > > > > > > > > > -- > > View this message in context: http://ffmpeg- > > users.933282.n4.nabble.com/H264-mts-interlaced-to-XVID-interlaced- > > tp4668119.html > > Sent from the FFmpeg-users mailing list archive at Nabble.com. > > _______________________________________________ > > ffmpeg-user mailing list > > [hidden email] <http://user/SendEmail.jtp?type=node&node=4668133&i=3> > > http://ffmpeg.org/mailman/listinfo/ffmpeg-user > > _______________________________________________ > ffmpeg-user mailing list > [hidden email] <http://user/SendEmail.jtp?type=node&node=4668133&i=4> > http://ffmpeg.org/mailman/listinfo/ffmpeg-user > > > ------------------------------ > If you reply to this email, your message will be added to the discussion > below: > > http://ffmpeg-users.933282.n4.nabble.com/H264-mts-interlaced-to-XVID-interlaced-tp4668119p4668133.html > To unsubscribe from H264 (mts) interlaced to XVID interlaced, click here > <http://ffmpeg-users.933282.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=4668119&code=cmFkcG9wbEBnbWFpbC5jb218NDY2ODExOXwxMTMwNzIwMDI3> > . > NAML > <http://ffmpeg-users.933282.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespace&breadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml> > -- View this message in context: http://ffmpeg-users.933282.n4.nabble.com/H264-mts-interlaced-to-XVID-interlaced-tp4668119p4668137.html Sent from the FFmpeg-users mailing list archive at Nabble.com. _______________________________________________ ffmpeg-user mailing list [email protected] http://ffmpeg.org/mailman/listinfo/ffmpeg-user
