VideoHelp Forum




+ Reply to Thread
Results 1 to 14 of 14
  1. I am currently in the process of trying to cleanup my parents wedding tape for my mom. I have had several cracks at tidying this up. Originally I transferred it using a JVC HR-S 9911U, but it always had tracking issues. Since the purchase of a Panasonic 1980p I finally have a mostly clean transfer. The VHS while only being 50 minutes long is in EP format for God knows what reason. I really enjoy playing around with different plugins in avisynth but I am not an expert at video restoration by any means and could use some advice. I have almost no knowledge of how to fix color issues, I believe the problems I'm seeing could be tape decay? It is noticeable in the lighting such as a flame being green instead of white. Also, my biggest issue is even after using QTGMC to deinterlace the video there are faint horizontal black lines every other line all the way down the image. Wherever these lines are when they get to the edge of whatever they passthrough they seems to give an aliased look to the edge of the object. I can dehalo these out of the picture but it destroys the image it just becomes a blurry mess. I have never found a way to get rid of them and keep any clarity. I use Topaz Video Enhance AI as a resolution bump not crazy but 720x480 to 1280x720. I've had it work really well but it locks onto the horizontal lines and makes way worse the algorithms they are using don't handle it well at all. I've attached a completely untouched clip and one after QTGMC Slow preset. Any help with color and those lines or even just what exactly I'm seeing terminology wise would be great. That's why some stuff is hard I don't know how to properly name what I'm seeing to even search for a plugin to help.
    Image Attached Files
    Quote Quote  
  2. This, before QTGMC, will get rid of the horizontal lines:

    Code:
    SeparateFields().vInverse().Weave()
    Colors are tougher...
    Last edited by jagabo; 6th Nov 2022 at 11:48.
    Quote Quote  
  3. "ColorYUV(autowhite=true)" helps somewhat with the colors and "SpotLess(RadT=3)" and "SMDegrain()" helps with the noise a bit, but the colors are still problematic,... In case than Avisynth 32bit is used, using HDRAGC() oculd be used to improve the colors somewhat more. (sadly there is no HDRAGC for 64bit afaik.)
    Last edited by Selur; 6th Nov 2022 at 13:59.
    users currently on my ignore list: deadrats, Stears555, marcorocchini
    Quote Quote  
  4. vdub filters can help you

    Below: vdub only (collomill and RGB Equalizer), rough work
    Image Attached Thumbnails Click image for larger version

Name:	utouched.jpg
Views:	81
Size:	207.9 KB
ID:	67509  

    *** DIGITIZING VHS / ANALOG VIDEOS SINCE 2001**** GEAR: JVC HR-S7700MS, TOSHIBA V733EF AND MORE
    Quote Quote  
  5. A simple RGB white balance, luma gain/offset, saturation. Followed by deinterlace and noise reduction:

    Code:
    LWLibavVideoSource("Untouched.avi") 
    AssumeTFF()
    
    ConvertToRGB(interlaced=true, matrix="rec601")
    RGBAdjust(r=144.0/95.0, b=144.0/134.0)
    ConvertToYV12(interlaced=true, matrix="rec601")
    ColorYUV(gain_y=100, off_y=-8, cont_u=100, cont_v=100)
    
    SeparateFields().vInverse().Weave()
    QTGMC(preset="slow")
    SMDegrain (tr=3, thSAD=1000, refinemotion=true, contrasharp=false, PreFilter=4, mode=0, truemotion=true, plane=4, chroma=false)
    Image
    [Attachment 67510 - Click to enlarge]


    Not great but not too bad.
    Last edited by jagabo; 6th Nov 2022 at 18:38.
    Quote Quote  
  6. Thanks so much for the advice it's helped a ton. The picture is great and color much improved. I can't thank you all enough for taking the time.
    Quote Quote  
  7. Jagabo, you always do such nice work.
    Quote Quote  
  8. Just for comparision, here's what the colors look like with
    Code:
    ColorYUV(autowhite=true)
    ConvertToYUY2(interlaced=false)
    HDRAGC()


    Cu Selur
    users currently on my ignore list: deadrats, Stears555, marcorocchini
    Quote Quote  
  9. Originally Posted by johnmeyer View Post
    Jagabo, you always do such nice work.
    Thanks for that. You post lots of good stuff here too.

    I was assuming the dress was white. That might be wrong, or the lighting may have been colored. And the result may be over saturated -- the skin tones are too saturated. Some other shots for comparison would help.
    Quote Quote  
  10. Originally Posted by jagabo View Post
    Some other shots for comparison would help.
    Jagabo here are some additional clips if you have some spare time to mess around with them.
    Image Attached Files
    Quote Quote  
  11. Originally Posted by SupraGSX View Post
    Originally Posted by jagabo View Post
    Some other shots for comparison would help.
    Jagabo here are some additional clips if you have some spare time to mess around with them.
    <no good deed goes unpunished>

    Have fun!!
    Quote Quote  
  12. I'm having an issue with HDRAGC I have the latest agc.dll but I can't find the script. So when I go to use it, it just say there's no function named HDRAGC. How do I aquire an avs or avsi file for it? I'm using a dedicated 32 bit windows XP machine so x86 XP compatibility. Also using avisynth plus 3.7.0 XP.
    Quote Quote  
  13. Assuming:
    a. HDRAC is 32bit Windows XP compatible (no clue)
    b. you put the dll into your Avisynth autoloading-folder (and autoloading works as it should)
    Avisynth should find the dll and allow you to use it.
    users currently on my ignore list: deadrats, Stears555, marcorocchini
    Quote Quote  
  14. The white balance fix (RGB correction) works moderately well for all the clips. But the levels vary a bit. You could adjust each shot individually. Or maybe use a compromise setting:

    Code:
    ColorYUV(gain_y=50, off_y=-6, cont_u=75, cont_v=75)
    instead of the earlier:

    Code:
    ColorYUV(gain_y=100, off_y=-8, cont_u=100, cont_v=100)
    Last edited by jagabo; 14th Nov 2022 at 07:34.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!