#1  
11-09-2018, 11:02 AM
camjac251 camjac251 is offline
Free Member
 
Join Date: Aug 2018
Posts: 2
Thanked 0 Times in 0 Posts
Hi there

I have been trying to restore this PAL DVD source that I'd like to hopefully edit a video together with (I have most edited together but would like to clean them up before rendering).

I have a thread on D9 and the VH forums but it was for Avisynth. I'm attempting to use VapourSynth now but am running into some issues with IFeelBloated's modules that require no chroma subsampling (which the DVD has, I believe).

I'd like to try to hopefully cleanup the artifacts caused by the compression/conversion as well as sharpen/upscale it. From what I can see it has terrible mpeg2 blocking, mosquito noise mixed with film grain, occasional combing, possibly from a bad transfer as well as edges having a bit of ringing.

I believe the source is Film since every few frames you see white spots and some scratches/dust (plus a lot of grain mixed in with the mpeg2 compression). Although on the DVD it's mixed with digital material and the source file is interlaced TFF.

With Avisynth, I had tried QTGMC, using the different input types but all would blend motion causing mouth movement to look interpolated. TemporalDegrain2 (recently released) did a good job at removing the grain/mosquito noise and not sacrificing much of the detail but it didn't remove the "scan lines?" that occurred every few frames.

I'm attempting to use VapourSynth now since it seems to have better tools for removing halos (hopefully with the Vine filter) than Avisynth. I couldn't remove the halo's using a few tools in AVS.

I've attached a sample m2v file of part of the video from the DVD. This is the only source I can find of this material so it's all I have to work with. Do you guys have any recommendations on filters? Thanks


Attached Files
File Type: m2v VTS_03_1_sample.demuxed.m2v (24.91 MB, 7 downloads)
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Ads / Sponsors
 
Join Date: ∞
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #2  
01-03-2019, 04:35 PM
camjac251 camjac251 is offline
Free Member
 
Join Date: Aug 2018
Posts: 2
Thanked 0 Times in 0 Posts
I discovered that the source was sped up from 23.976 to 25fps during the telecine processed and then that was how it was shown live and recorded. The audience watched it sped up which I found interesting. I abandoned VapourSynth and am using Avisynth only now. This is my current script that I'm using in case anyone else also tries to work with a PAL DVD

Code:
video=mpeg2source("VIDEO_TS\VTS_03_1.d2v", cpu=0, info=3)
audio=FFAudioSource("VIDEO_TS\VTS_03_1 T80 2_0ch 192Kbps DELAY 1000ms.ac3").DelayAudio(1)
AudioDub(video,audio)
Trim(28261,30009)
AssumeTFF()
assumefps(23.976, sync_audio=True)
Crop(14,0,694,574)
ConvertToYV12(matrix="Rec601", interlaced=false)
ColorMatrix(mode="Rec.601->Rec.709")
ConvertToYV12(matrix="Rec709", interlaced=false)
vInverse()
ColorYUV(autogain=true,autowhite=true)
ConvertToRGB(matrix="Rec709", interlaced=false)
GamMac(LockChan=1, Scale=0,RedMul=1,BluMul=1,GrnMul=1, Show=false)
ConvertToYV12(matrix="Rec709", interlaced=false)
FineDehalo(rx=3.0, ry=3.0, thmi=30, thma=100, contra=1)
TemporalDegrain2(degrainTR=1,postFFT=3,postSigma=4,postDither=-1)
ContinuityFixer(top=2,bottom=1,left=5,right=2)
nnedi3_rpow2(cshift="Spline64ResizeMT", rfactor=2, nsize=4, nns=4, qual=1, etype=0, pscrn=2, threads=0, csresize=true, mpeg2=true, threads_rs=0, logicalCores_rs=true, MaxPhysCore_rs=true, SetAffinity_rs=false, opt=3)
I haven't been able to figure out the aspect ratio, color, or sharpness yet though. Sharpening without halos or ringing has been difficult. The color with autogain and autowhite seems to change throughout the shot because of objects going out of frame.
Reply With Quote
Reply




Tags
avisynth, pal, vapoursynth

Similar Threads
Thread Thread Starter Forum Replies Last Post
Output both progressive and interlaced? koberulz Restore, Filter, Improve Quality 51 08-01-2017 05:57 PM
Cine film conversion, interlaced vs. progressive? Sparx Capture, Record, Transfer 3 08-28-2016 04:28 PM
Capture interlaced, but how to to keep video interlaced when making DVDs? premiumcapture Encode, Convert for discs 11 12-21-2013 03:40 PM
Interlaced video to progressive (double frame rate) metaleonid Edit Video, Audio 23 09-29-2013 09:51 PM
Interlaced vs. non-interlaced artifacts? via Email or PM Capture, Record, Transfer 1 04-16-2009 05:37 PM

Thread Tools



 
All times are GMT -5. The time now is 05:31 AM