lbecque
27th May 2005, 06:00
I'm trying to convert a 4:3 aspect ratio file saved with my tuner card to a true widescreen format while removing the black bars in the file.
I generated the following script with FitCD:
# -= AviSynth v2.5.5.0 script by FitCD v1.2.4 =-
DirectShowSource("D:\movies\Battlestar Galactica 106 Litmus 0513-2200(TV65).mpg", fps=29.97)
#ConvertToYV12(a , interlaced=true)
SeparateFields()
Lanczos4Resize(720,240,0,29,720,180).Weave()
#info()
#Trim(0,-1).FadeOut(150)
The file is an MPEG2 program stream (video and audio), interlaced and BFF. The script above seems to do the job of resizing the video in the widescreen format that I need.
However, when I play the file through virtualdubmod strange things happen:
1. the video and audio are out of sync (video much faster)
2. video plays at something like 2X speed or more
3. using virtualdub to play and compare to the original file I noted that there where 1200 frames taking 41 seconds to the beginning of a certain scene in the original file. In the resulting file its only 450 frames and 15 seconds to the same scene.
What am I doing wrong???
Why is avisynth dropping frames???
I generated the following script with FitCD:
# -= AviSynth v2.5.5.0 script by FitCD v1.2.4 =-
DirectShowSource("D:\movies\Battlestar Galactica 106 Litmus 0513-2200(TV65).mpg", fps=29.97)
#ConvertToYV12(a , interlaced=true)
SeparateFields()
Lanczos4Resize(720,240,0,29,720,180).Weave()
#info()
#Trim(0,-1).FadeOut(150)
The file is an MPEG2 program stream (video and audio), interlaced and BFF. The script above seems to do the job of resizing the video in the widescreen format that I need.
However, when I play the file through virtualdubmod strange things happen:
1. the video and audio are out of sync (video much faster)
2. video plays at something like 2X speed or more
3. using virtualdub to play and compare to the original file I noted that there where 1200 frames taking 41 seconds to the beginning of a certain scene in the original file. In the resulting file its only 450 frames and 15 seconds to the same scene.
What am I doing wrong???
Why is avisynth dropping frames???