gosens
21st February 2005, 06:01
(Originally posted to TMPGenc forum but perhaps someone can suggest an Avisynth solution.)
I am encoding a DVB (satellite) source MPEG-2 file, 4:3, 29.97 fps, Progressive... it is 1970's sports film.
I use TMPGenc Plus 2.58.44.152 to encode the file using avisynth.
I have made many successful DVDs in this method, but this particular film has a problem in 10-to-20-minute chunks where a frame will be duplicated 4 frames later (ie. 1,2,3,4,1,5,6,7,8,5,9,10...) making a jerky/flickered playback. The rest of the file is fine.
I've tried setting my de-interlace filter to true, false, and removed it completely; I also tried setting TFF instead of the usual BFF; none of these worked.
The source material is ok, scanning it through dvd2avi is also fine, but through TMPGenc it is not. Scanning the frames in TMPGenc - MPEG Setting/GOP Structure/"Force picture type setting" shows the problem even before encoding.
The avisynth file I'm using is below.
Using the D2V file directly (without avisynth) showed a similar problem but in this case it was as if a half-interlaced frame was coped in 4 frames later (presumably the avisynth filter fixes the de-interlaced part by copying the rest of the frame forward, or something like that).
If anyone has any ideas about this, I'd appreciate your help.
Thanks.
gosens
Here's the avisynth filter:
movie="1975.d2v"
MPEG2Source(movie)
FieldDeinterlace(blend=false)
GripCrop(352,480)
GripSize(resizer="BicubicResize")
GripBorders()
converttoyuy2()
I am encoding a DVB (satellite) source MPEG-2 file, 4:3, 29.97 fps, Progressive... it is 1970's sports film.
I use TMPGenc Plus 2.58.44.152 to encode the file using avisynth.
I have made many successful DVDs in this method, but this particular film has a problem in 10-to-20-minute chunks where a frame will be duplicated 4 frames later (ie. 1,2,3,4,1,5,6,7,8,5,9,10...) making a jerky/flickered playback. The rest of the file is fine.
I've tried setting my de-interlace filter to true, false, and removed it completely; I also tried setting TFF instead of the usual BFF; none of these worked.
The source material is ok, scanning it through dvd2avi is also fine, but through TMPGenc it is not. Scanning the frames in TMPGenc - MPEG Setting/GOP Structure/"Force picture type setting" shows the problem even before encoding.
The avisynth file I'm using is below.
Using the D2V file directly (without avisynth) showed a similar problem but in this case it was as if a half-interlaced frame was coped in 4 frames later (presumably the avisynth filter fixes the de-interlaced part by copying the rest of the frame forward, or something like that).
If anyone has any ideas about this, I'd appreciate your help.
Thanks.
gosens
Here's the avisynth filter:
movie="1975.d2v"
MPEG2Source(movie)
FieldDeinterlace(blend=false)
GripCrop(352,480)
GripSize(resizer="BicubicResize")
GripBorders()
converttoyuy2()