digitalFAQ.com Forum

digitalFAQ.com Forum (https://www.digitalfaq.com/forum/)
-   Restore, Filter, Improve Quality (https://www.digitalfaq.com/forum/video-restore/)
-   -   Need help with blue vertical lines (https://www.digitalfaq.com/forum/video-restore/3092-blue-vertical-lines.html)

max_cady 05-02-2011 06:54 PM

Need help with blue vertical lines
 
2 Attachment(s)
Attachment 1419

Full sized image + short clip attached.

Any suggestions are welcome!

admin 05-02-2011 10:17 PM

It looks like a film scratch.

There is a Descratch Avisynth filter, for cheap/free methods: http://avisynth.org.ru/descratch/descratch.html

Sample script:
Code:

AviSource("input.avi")
LoadPlugin("descratch.dll")
ConvertToYV12()
DeScratch(mindif=2)

Are you familiar with using Avisynth?

And then there's also some high-end software like Davinci Revival: http://www.blackmagic-design.com/pro...avincirevival/
Or Diamant: http://www.hs-art.com/html/products/diamant.html

A related thread can be found here: http://www.digitalfaq.com/forum/vide...ch-filter.html

max_cady 05-02-2011 11:14 PM

1 Attachment(s)
Thanks to reply!

Yes i'm familiar with Avisynth.And i try DeScratch before but dont work properly.

And some DeScratch scripts giving error like this

Attachment 1421

Code:

left=crop(0,0,-660,-0)
middle=crop(60,0,-644,-0).DeScratch(mindif=3,asym=12,maxgap=5,maxwidth=3,minlen=1,maxlen=576,maxangle=2,blurlen=25,border=0,modeY=3,modeU=0,modeV=0).destripe(rad=3)
right=crop(76,0,-0,-0)
stackhorizontal(left,middle,right)


lordsmurf 05-03-2011 04:24 AM

Remember to attach images, files, etc, to the forum: http://www.digitalfaq.com/forum/show...ages-1529.html
We try to avoid external sites for linking to images/etc. (As explained in instructions.)

I think you're making the script too complicated.
Is that something you wrote, or something you found on another site and did a copy/paste?

I would start with the default, as per the filter's manual:
Code:

AviSource("input.avi")
LoadPlugin("descratch.dll")
ConvertToYV12()
DeScratch(mindif=2)

Notes:
  • Now, obviously you'll have to change AviSource to whatever your actual input method is. Do NOT use DirectShow input.
  • LoadPlugin is best with the full qualified file location. (C:\Program Files\Avisynth\plugins\etc etc etc -- whatever it is.)
  • ConvertToYV12 only if needed. (Again, depends on source.)
  • Use the basic DeScratch, see what it does at a default setting.


All times are GMT -5. The time now is 04:02 AM

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.