theeht
8th October 2003, 07:29
If anyone would like to help me with this, I'd be much obliged. I'm working on encoding a capture of a VHS source, a Russian 1927 silent. Capture is in Picvideo MJPEG q19, 352x472, 29.97 fps using VirtualDub.
I did the first pass w/following script:
LoadPlugIn("C:\Program Files\AviSynth2\plugins\Decomb500.dll")
loadplugin("C:\Program Files\AviSynth2\plugins\multidecimate.dll")
SegmentedAVISource("G:\mary\mary4.avi")
Trim(41,105042) ++ Trim(105808,142342)
Telecide(Order=1,Post=0)
MultiDecimate(Pass=1)
then played the file all the way through.
I then ran Multidecimate.exe, pointed to the mfile.txt, and chose "Remove Duplicates: Global: Naive". It created the files it was supposed to very quickly. I then loaded my 2nd pass script:
LoadPlugIn("C:\Program Files\AviSynth2\plugins\Decomb500.dll")
loadplugin("C:\Program Files\AviSynth2\plugins\multidecimate.dll")
SegmentedAVISource("G:\mary\mary4.avi")
Trim(41,105042) ++ Trim(105808,142342)
Telecide(Order=1,post=0)
MultiDecimate(Pass=2)
AddBorders(0,4,0,4)
Problems:
1) There are still intermittent combing artifacts. These are related to Telecide, not Decimate, correct? So I need to do postprocessing? I tried:
Telecide(Order=1,post=2,vthresh=30)
as advised in the Decomb tutorial, and that improved things. But should I have used those settings for the first MultiDecimate pass in order for that to work correctly?
2) There are still a fair number of duplicate frames--I didn't measure, but probably around 1/second. I don't understand how to tweak it to improve.
3) The 2nd pass script results in a frame rate of 0.18fps, so the movie (orig. 79 minutes) now clocks in at over 6 hours. Now it is possible that the frame rate should be 18fps, if there was some simple calculation bug, though then the movie runs a bit slower than the VHS source, lasting more like 95 minutes. I simply don't know what the original frame rate was--this was not as standardized in the USSR as the US, and I'm sure there are other considerations related to restoration... Anyway, I don't understand why I ended up w/0.18fps or how I can get to the proper rate.
I did the first pass w/following script:
LoadPlugIn("C:\Program Files\AviSynth2\plugins\Decomb500.dll")
loadplugin("C:\Program Files\AviSynth2\plugins\multidecimate.dll")
SegmentedAVISource("G:\mary\mary4.avi")
Trim(41,105042) ++ Trim(105808,142342)
Telecide(Order=1,Post=0)
MultiDecimate(Pass=1)
then played the file all the way through.
I then ran Multidecimate.exe, pointed to the mfile.txt, and chose "Remove Duplicates: Global: Naive". It created the files it was supposed to very quickly. I then loaded my 2nd pass script:
LoadPlugIn("C:\Program Files\AviSynth2\plugins\Decomb500.dll")
loadplugin("C:\Program Files\AviSynth2\plugins\multidecimate.dll")
SegmentedAVISource("G:\mary\mary4.avi")
Trim(41,105042) ++ Trim(105808,142342)
Telecide(Order=1,post=0)
MultiDecimate(Pass=2)
AddBorders(0,4,0,4)
Problems:
1) There are still intermittent combing artifacts. These are related to Telecide, not Decimate, correct? So I need to do postprocessing? I tried:
Telecide(Order=1,post=2,vthresh=30)
as advised in the Decomb tutorial, and that improved things. But should I have used those settings for the first MultiDecimate pass in order for that to work correctly?
2) There are still a fair number of duplicate frames--I didn't measure, but probably around 1/second. I don't understand how to tweak it to improve.
3) The 2nd pass script results in a frame rate of 0.18fps, so the movie (orig. 79 minutes) now clocks in at over 6 hours. Now it is possible that the frame rate should be 18fps, if there was some simple calculation bug, though then the movie runs a bit slower than the VHS source, lasting more like 95 minutes. I simply don't know what the original frame rate was--this was not as standardized in the USSR as the US, and I'm sure there are other considerations related to restoration... Anyway, I don't understand why I ended up w/0.18fps or how I can get to the proper rate.