View Single Post
Old 1st August 2019, 10:05   #3227  |  Link
red5goahead
Registered User
 
red5goahead's Avatar
 
Join Date: Jul 2007
Location: Italy
Posts: 51
Hi guys.

I was wondering if you could manage the automatic avi script with the automatism that allows you to perform an interlaced encoding with better motion quality. If the source is progressive at 50 fps and you have chosen to interlace currently the script is as follows

Video = Video.ConvertToYV12()
Video = Video.Spline16Resize(720,576)
Video = Video.SelectEven()

but as we have already verified with Manolito, in this case with a real 50 fps at source, the most correct script would be this

Video = Video.ConvertToYV12()
Video = Video.Spline16Resize(720,576)
Video = Video.AssumeTFF()
Video = Video.SeparateFields()
Video = Video.SelectEvery(4,0,3)
Video = Video.Weave()

another question: is it not possible with AVStoDVD edit the source? Even just at the beginning and at the end?

I prefer HCenc because have 2-pass mode that it is not allowed with ffmpeg

Thank you!
red5goahead is offline   Reply With Quote