Script question
- Wolflive
- Joined: Sat Jan 17, 2004 8:18 am
- Location: Merced, CA
Script question
When I run this in VirtualDubMod the frame rate goes to 19 fps
AVISource("C:\VOB\file.d2v")
ConvertToYV12(interlaced=true)
telecide(order=1,post=2,blend=true,vthresh=30,back=1)
decimate(cycle=5,mode=2,quality=3)
when I use this, the footage moves faster then the music
AVISource("C:\VOB\dude.d2v")
ConvertToYV12(interlaced=true)
telecide(order=1,post=2,blend=true,vthresh=30,back=1)
decimate(cycle=5,mode=2,quality=3)
AssumeFPS(23.997)
can anyone help?
AVISource("C:\VOB\file.d2v")
ConvertToYV12(interlaced=true)
telecide(order=1,post=2,blend=true,vthresh=30,back=1)
decimate(cycle=5,mode=2,quality=3)
when I use this, the footage moves faster then the music
AVISource("C:\VOB\dude.d2v")
ConvertToYV12(interlaced=true)
telecide(order=1,post=2,blend=true,vthresh=30,back=1)
decimate(cycle=5,mode=2,quality=3)
AssumeFPS(23.997)
can anyone help?
Wolflive
- Scintilla
- (for EXTREME)
- Joined: Mon Mar 31, 2003 8:47 pm
- Status: Quo
- Location: New Jersey
- Contact:
Re: Script question
First of all, get rid of that ConvertToYV12() line. MPEG-2 DVD streams are already YV12.Wolflive wrote:When I run this in VirtualDubMod the frame rate goes to 19 fps
AVISource("C:\VOB\file.d2v")
ConvertToYV12(interlaced=true)
telecide(order=1,post=2,blend=true,vthresh=30,back=1)
decimate(cycle=5,mode=2,quality=3)
Second of all, you don't by any chance already have 24fps (or 23.976) progressive video, do you? That's the only scenario in which you should be getting 19fps output from that script. If this is the case, then get rid of the IVTC lines. You shouldn't be IVTCing your footage unless it's 29.97fps and interlaced.
- Keeper of Hellfire
- Joined: Sun Jan 09, 2005 6:13 am
- Location: Germany
- Corran
- Joined: Mon Oct 14, 2002 7:40 pm
- Contact:
- Wolflive
- Joined: Sat Jan 17, 2004 8:18 am
- Location: Merced, CA