PDA

View Full Version : clip mjpeg to dv


lamola2003
13th October 2003, 19:08
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

sh0dan
13th October 2003, 19:16
How does:

AviSource("file.avi")
swapfields()

work?

Guest
13th October 2003, 19:55
SwapFields() isn't right to reverse field dominance. Use Simon Walters' ReverseFieldDominance() filter.

lamola2003
16th October 2003, 15:28
i have reversefielddominance() filter.
how do transform the clip?. What program?
thanks
lamola

Guest
16th October 2003, 15:46
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.

Mug Funky
16th October 2003, 16:57
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 :)