digitalFAQ.com Forum

digitalFAQ.com Forum (https://www.digitalfaq.com/forum/)
-   Restore, Filter, Improve Quality (https://www.digitalfaq.com/forum/video-restore/)
-   -   Avisynth filters, correct tape drop-outs (https://www.digitalfaq.com/forum/video-restore/154-avisynth-filters-correct.html)

admin 02-15-2005 05:07 AM

The DESPOT filter for AviSynth works miracles!

You can get it here: http://www.avisynth.org/warpenterprises/

Here is a common script I use:
Code:

LoadPlugin("Convolution3d.dll")
Loadplugin("avisynth_c.dll")
LoadCPlugin("despot.dll")
avisource("D:\capture.avi")
SeparateFields()
odd=SelectOdd.Convolution3D (0, 6, 10, 6, 8, 2.8, 0)
evn=SelectEven.Convolution3D (0, 6, 10, 6, 8, 2.8, 0)
Interleave(evn,odd)
Weave()
ConvertToYV12(interlaced=true)
despot(interlaced=true)
ConvertToYUY2(interlaced=true)

For TMPGENC, I just need to change this:
Code:

ConvertToRGB(interlaced=true)


All times are GMT -5. The time now is 07:18 AM

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