I need to convert a clip "picvideo" to minidv How can i do it withot having problem of interlaced? Picvideo (analog video) is tff while minidv (digital video) is bff. thanks. lamola
Simplest is to use VirtualDub alone with my VirtualDub plugin filter called ReverseFieldDominance() available at the link below. If you want to use Avisynth, then you need to install Avisynth and Simon's filter. Then serve the script into VirtualDub. As I said, the first way is much easier.
if you don't mind colourspace conversions in avisynth, you could: avisource("blah.avi", pixel_type="rgb32") generalconvolution(0,"0 1 0 0 0 0 0 0 0") this will just do the same thing as reversefielddominance() but slower :)