Log in

View Full Version : Help restore interlaced sped-up PAL DVD


Paperweight
3rd January 2011, 09:16
Do you like Pink Floyd?
I own a DVD that I need to restore. A proper release is not available. It was originally in film (35 mm Mitchell Camera), then awfully encoded sped up to interlaced PAL (higher pitch audio too.) This is the only release available!
I am familiar with Avisynth but are there any gurus out there who can tell me the BEST way to make a slowed-down interlaced NTSC DVD out of this?

I'm familiar with Avisynth, but are there any gurus out there who can tell me the best way to make NTSC and PAL DVDs out of this?

DGIndexProjectFile16
2
C:\VTS_03_1.VOB
C:\VTS_03_2.VOB

Stream_Type=1
MPEG_Type=2
iDCT_Algorithm=6
YUVRGB_Scale=1
Luminance_Filter=0,0
Clipping=0,0,0,0
Aspect_Ratio=4:3
Picture_Size=720x576
Field_Operation=0
Frame_Rate=25000 (25/1)
Location=0,0,1,24954

900 5 0 2048 0 1 1 92 b2 b2 a2 b2 b2 a2 b2 b2 a2 b2 b2 a2
900 5 0 47104 0 1 1 92 b2 b2 a2 b2 b2 a2 b2 b2 a2 b2 b2 a2
...

manono
3rd January 2011, 13:18
I'm familiar with Avisynth, but are there any gurus out there who can tell me the best way to make NTSC and PAL DVDs out of this?
Not without a sample.

Didée
3rd January 2011, 15:00
Also, slow-down *and* interlaced doesn't seem to make sense. If it went the route through a normconversion box, then it would be interlaced (fieldblended), but at original speed without speedup. When 24->25 speedup was used, then it shouldn't be interlaced.

Well possible that the only "interlacing" is the mpeg coding type.

Paperweight
3rd January 2011, 20:00
Not without a sample.

Sample here demuxed with dgindex: http://www.sharhon.com/hosted_temp/pfsample.zip

manono
4th January 2011, 00:00
Did you even look at it? It's not interlaced. It was only encoded as interlaced. For PAL just encode it as-is, perhaps after doing any filtering you might have in mind. Or don't, and keep the original PAL DVD.

For NTSC I slow such things to 23.976fps with an AssumeFPS(23.976) in the script, resize them to 720x480, encode them as progressive 23.976fps, apply pulldown, and then stretch the audio to match.
...but are there any gurus out there who can tell me the BEST way to make a slowed-down interlaced NTSC DVD out of this?
Around here we don't ask what's best, as there might be a number of valid opinions as to how something should be done. It's even in the rules:

http://forum.doom9.org/forum-rules.htm

Sharc
4th January 2011, 00:05
Your sample is not interlaced, it's progressive PAL encoded as interlaced.
You may still want to apply
QTGMC()
SelectEven()
It improves the quality IMO.

Added:
You should also try
QTGMC(InputType=2)
or
QTGMC(inputType=3)
These modes are for improving flicker in progressive video, read here:
http://forum.doom9.org/showthread.php?t=156028

Paperweight
4th January 2011, 00:19
Your sample is not interlaced, it's progressive PAL encoded as interlaced.
You may still want to apply
QTGMC()
It improves the quality IMO.

:thanks: