Dark Shikari
25th February 2009, 02:04
I have a copy of "The Genius That Was China," an old (and quite good) NOVA documentary. However, it only came out on VHS, and I don't have the equipment to do another transfer from the original VHS--and the only digital copy I have is an old VCD transfer. The quality is utterly atrocious, but I think we can probably try to improve this.
Also, if anyone can find me a DVD of it, I'd be quite gracious... but I don't think one exists.
Problems I've found:
1. Frame blending.
2. Massive ringing/blocking/artifacting (encoded at way too low a bitrate).
3. Motion jitter in low-motion scenes.
4. Just generally awful, loads of noise and grain.
Since I don't feel like figuring out how to cut DAT files today, here's a CRF 10 x264 encode (practically lossless) of a short representative clip (http://mirror05.x264.nl/Dark/force.php?file=./GeniusThatWasChina.mkv).
The eventual goal is to put this on a DVD to replace the VCDs, so I would expect to upscale and so forth.
Here's a silly script so far of mine (doesn't fix blending):
pointresize(last.width,last.height*2).NNEDI().turnleft()
pointresize(last.width,last.height*2).NNEDI().turnright()
super = MSuper()
backward_vectors = MAnalyse(super, isb = true)
forward_vectors = MAnalyse(super, isb = false)
forward_compensation = MFlow(super, forward_vectors, thSCD1=500)
backward_compensation = MFlow(super, backward_vectors, thSCD1=500)
interleave(forward_compensation, last, backward_compensation)
dfttest(tbsize=3,sigma=3)
selectevery(3,1)
LimitedSharpenFaster(strength=150)
AddGrain(5,0.5,0.5)
AddGrain(8,0.3,0.3)
AddGrain(12,0.1,0.1)
Also, if anyone can find me a DVD of it, I'd be quite gracious... but I don't think one exists.
Problems I've found:
1. Frame blending.
2. Massive ringing/blocking/artifacting (encoded at way too low a bitrate).
3. Motion jitter in low-motion scenes.
4. Just generally awful, loads of noise and grain.
Since I don't feel like figuring out how to cut DAT files today, here's a CRF 10 x264 encode (practically lossless) of a short representative clip (http://mirror05.x264.nl/Dark/force.php?file=./GeniusThatWasChina.mkv).
The eventual goal is to put this on a DVD to replace the VCDs, so I would expect to upscale and so forth.
Here's a silly script so far of mine (doesn't fix blending):
pointresize(last.width,last.height*2).NNEDI().turnleft()
pointresize(last.width,last.height*2).NNEDI().turnright()
super = MSuper()
backward_vectors = MAnalyse(super, isb = true)
forward_vectors = MAnalyse(super, isb = false)
forward_compensation = MFlow(super, forward_vectors, thSCD1=500)
backward_compensation = MFlow(super, backward_vectors, thSCD1=500)
interleave(forward_compensation, last, backward_compensation)
dfttest(tbsize=3,sigma=3)
selectevery(3,1)
LimitedSharpenFaster(strength=150)
AddGrain(5,0.5,0.5)
AddGrain(8,0.3,0.3)
AddGrain(12,0.1,0.1)