03-23-2014, 08:57 AM
|
|
Free Member
|
|
Join Date: Jan 2014
Location: Illinois
Posts: 40
Thanked 4 Times in 3 Posts
|
|
Hello,
I am seeking advice on avisynth scripts and virtualdub filters that are typically applied to vhs captures. I used lagarith lossless yuy2 for my capture. After I apply these filters, I'm going straight into avstodvd. It's a home movie. Thanks.
|
Someday, 12:01 PM
|
|
Ads / Sponsors
|
|
Join Date: ∞
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
|
|
|
03-23-2014, 01:43 PM
|
|
Free Member
|
|
Join Date: Feb 2011
Location: France
Posts: 556
Thanked 121 Times in 105 Posts
|
|
A typical script for my own vhs recordings would be this:
Code:
AVISource("E:\MyVideo.avi").trim(8083,14591)
assumetff()
resampleaudio(48000) # audio resampling because my caps are 32khz
converttoyv12(interlaced=true)
ylevels(0,1.000,255,16,255) # adjust Luma levels only (adjust according to your needs)
tweak(sat=1.2,cont=1.0,bright=0,coring=false) # adjust saturation, contrast, etc...
########################
pointresize(last.width, last.height*2).ConverttoRGB32(matrix="rec601",interlaced=true).pointresize(last.width, last.height)
separatefields()
## Remove some chroma noise with CCD in RGB (gives best results)
## pointresizing for lossless RGb <> YCrCb convertion
LoadVirtualDubPlugin("C:\Program Files (x86)\virtualdubmod1.5\plugins\Camcorder_Color_Denoise_sse2.vdf", "CCD", 1)
CCD(15,1) # from 0 to 100 # Default =30 / 15-30 = best results
# Sharpening (small-medium) with msu smart sharpen
LoadVirtualDubPlugin("C:\Program Files (x86)\VirtualDub\plugins\msu_sharpen.vdf", "MSUSmartSharpen", 1)
MSUSmartSharpen(1) # from 0 (small overall) to 5 (mad)
weave()
pointresize(last.width, last.height*2).converttoyv12(matrix="Rec601",interlaced=true).pointresize(last.width, last.height)
###################
# Denoising with Mdegrain1 for not too strong noise and interlaced source
fields=AssumeTFF().SeparateFields() # or AssumeBFF
super = MSuper(fields)
backward_vec2 = MAnalyse(super, isb = true, delta = 2, overlap=2)
forward_vec2 = MAnalyse(super, isb = false, delta = 2, overlap=2)
MDegrain1(fields, super, backward_vec2,forward_vec2,thSAD=400)
Weave()
|
03-23-2014, 06:47 PM
|
|
Free Member
|
|
Join Date: Jan 2014
Location: Illinois
Posts: 40
Thanked 4 Times in 3 Posts
|
|
Do I have to open virtualdub to apply these settings?
|
03-24-2014, 04:19 AM
|
|
Free Member
|
|
Join Date: Feb 2011
Location: France
Posts: 556
Thanked 121 Times in 105 Posts
|
|
nope you don't, you need the filters though
|
03-24-2014, 08:10 AM
|
|
Free Member
|
|
Join Date: Jan 2014
Location: Illinois
Posts: 40
Thanked 4 Times in 3 Posts
|
|
Ok. I'm going to google those filters and "load" them. Is it possible to open avstodvd and then open file>, and then load the script? In other words, will avstodvd do the avisynth script conversions within the program itself?
|
03-24-2014, 09:02 AM
|
|
Site Staff | Video
|
|
Join Date: Dec 2002
Posts: 14,166
Thanked 2,574 Times in 2,187 Posts
|
|
I prefer to use a very hands off + custom approach. I'm not overly fond of Avisynth denoising, and hate Avisynth weave() because it can cause interlace damage with some filters. I prefer VirtualDub as much as possible, but will use Avisynth wherever VirtualDub is weak.
I'll share it when I get up (about to go to bed here).
|
03-24-2014, 10:44 AM
|
|
Free Member
|
|
Join Date: Feb 2011
Location: France
Posts: 556
Thanked 121 Times in 105 Posts
|
|
Quote:
Originally Posted by Zoink187
Ok. I'm going to google those filters and "load" them. Is it possible to open avstodvd and then open file>, and then load the script? In other words, will avstodvd do the avisynth script conversions within the program itself?
|
for ccd:
http://www.mediafire.com/download/0o5d8obxvtjfu6z/Camcorder_Color_Denoise_sse2.vdf
|
03-24-2014, 12:33 PM
|
|
Free Member
|
|
Join Date: Jan 2014
Location: Illinois
Posts: 40
Thanked 4 Times in 3 Posts
|
|
Thanks! I had read somewhere that there is a "lord smurf virtualdub". Is that still relevant and applicable today? And if so, where can I get a shiny new download of that?
Quote:
Originally Posted by lordsmurf
I prefer to use a very hands off + custom approach. I'm not overly fond of Avisynth denoising, and hate Avisynth weave() because it can cause interlace damage with some filters. I prefer VirtualDub as much as possible, but will use Avisynth wherever VirtualDub is weak.
I'll share it when I get up (about to go to bed here).
|
Ok! I'm looking forward to that post
Quote:
Originally Posted by themaster1
A typical script for my own vhs recordings would be this:
Code:
AVISource("E:\MyVideo.avi").trim(8083,14591)
assumetff()
resampleaudio(48000) # audio resampling because my caps are 32khz
converttoyv12(interlaced=true)
ylevels(0,1.000,255,16,255) # adjust Luma levels only (adjust according to your needs)
tweak(sat=1.2,cont=1.0,bright=0,coring=false) # adjust saturation, contrast, etc...
########################
pointresize(last.width, last.height*2).ConverttoRGB32(matrix="rec601",interlaced=true).pointresize(last.width, last.height)
separatefields()
## Remove some chroma noise with CCD in RGB (gives best results)
## pointresizing for lossless RGb <> YCrCb convertion
LoadVirtualDubPlugin("C:\Program Files (x86)\virtualdubmod1.5\plugins\Camcorder_Color_Denoise_sse2.vdf", "CCD", 1)
CCD(15,1) # from 0 to 100 # Default =30 / 15-30 = best results
# Sharpening (small-medium) with msu smart sharpen
LoadVirtualDubPlugin("C:\Program Files (x86)\VirtualDub\plugins\msu_sharpen.vdf", "MSUSmartSharpen", 1)
MSUSmartSharpen(1) # from 0 (small overall) to 5 (mad)
weave()
pointresize(last.width, last.height*2).converttoyv12(matrix="Rec601",interlaced=true).pointresize(last.width, last.height)
###################
# Denoising with Mdegrain1 for not too strong noise and interlaced source
fields=AssumeTFF().SeparateFields() # or AssumeBFF
super = MSuper(fields)
backward_vec2 = MAnalyse(super, isb = true, delta = 2, overlap=2)
forward_vec2 = MAnalyse(super, isb = false, delta = 2, overlap=2)
MDegrain1(fields, super, backward_vec2,forward_vec2,thSAD=400)
Weave()
|
I applied this code and when I open my video file, My virtualdub screen is gray and I can't see anything. I installed xvid and divx because I got the error about the VFW compression needed to make my yuv2 .avi into YV12. Any suggestions? Should I uninstall everything and install divx? I have win7 32.
|
04-05-2014, 05:34 PM
|
|
Free Member
|
|
Join Date: Feb 2011
Location: France
Posts: 556
Thanked 121 Times in 105 Posts
|
|
HUH ? if you have huffyuv installed it should be decoded normally if it's another codec i don't know
Try directshowsource instead of avisource, perhaps you'll have better luck
|
04-09-2014, 10:59 AM
|
|
Free Member
|
|
Join Date: Dec 2013
Location: Boston, MA
Posts: 585
Thanked 73 Times in 66 Posts
|
|
Quote:
Originally Posted by lordsmurf
I prefer to use a very hands off + custom approach. I'm not overly fond of Avisynth denoising, and hate Avisynth weave() because it can cause interlace damage with some filters. I prefer VirtualDub as much as possible, but will use Avisynth wherever VirtualDub is weak.
I'll share it when I get up (about to go to bed here).
|
I agree with this. 'Measure twice, cut once.' The more you do during capture, the more you limit your ability to restore later on. It can be a good fix if a batch of tapes are all from the same source, but results can vary wildly between tapes and productions with any capture filter. Interlacing, deinterlacing, and avisynth need to be done very carefully. As stated, videos can be damaged depending on the filters used as some take in interlaced content and others progressive.
This type of script will undoubtedly save much time, and may work for many tapes, but I prefer the slow route and capture first, filter second.
|
04-21-2014, 05:24 PM
|
|
Premium Member
|
|
Join Date: Aug 2009
Location: N. Carolina and NY, USA
Posts: 3,648
Thanked 1,323 Times in 991 Posts
|
|
Quote:
Originally Posted by Zoink187
Hello,
I am seeking advice on avisynth scripts and virtualdub filters that are typically applied to vhs captures. I used lagarith lossless yuy2 for my capture. After I apply these filters, I'm going straight into avstodvd. It's a home movie. Thanks.
|
I don't think there are any "typical" Avisynth/ VirtualDub filters for VHS fixup and restoral, because there is no "typical" VHS source. True, there are common problems found frequently with VHS, and often very specific filters are needed. But the same filters, settings and procedures can't be used for with every VHS project. In fact, often you can't even use the same filters and settings for different scenes from the same VHS tape.
I was unable to download your sample avi, which has been removed. Meanwhile, I see you're trying to get started in Avisynth with Avisynth MT. I'd stick with Avisynth 2.5.8 until you get a better understanding of how to work with Avisynth and its filters. While Avisynth is often essential for some basic VHS fixes, I agree that much can be accomplished with VirtualDub, and VirtualDub is easier to learn. I've seen some of your sample videos is other forums; they are quite problematic. However, you can't just throw copied scripts at video and not know what some of those filters are doing. In many cases, the filters you see in complex Avisynth scripts and VirtualDub setups aren't even needed. You will have to go through a little reading and ask some questions before you can spruce up VHS, and it's something you would have to do with even the "easiest" and most simple software processors.
As lordsmurf and others have noted, it's very easy to over-process VHS. Learning to do it correctly is a slow process at first, but you only have to learn it once. Meanwhile, I'm sorry I missed your sample.
|
The following users thank sanlyn for this useful post:
bar72 (08-21-2023)
|
07-23-2014, 07:28 AM
|
|
Site Staff | Video
|
|
Join Date: Dec 2002
Posts: 14,166
Thanked 2,574 Times in 2,187 Posts
|
|
Quote:
Originally Posted by sanlyn
I don't think there are any "typical" Avisynth/ VirtualDub filters for VHS fixup and restoral, because there is no "typical" VHS source. True, there are common problems found frequently with VHS
|
The biggest issues with VHS are:
- chroma noise -- see also: http://www.digitalfaq.com/forum/vide...oma-flaws.html
- color cast/contrast issues; various filters need be used
- grain -- Temporal Smoother in VirtualDub, or maybe TTempSmooth in Avisynth
- audio hiss -- and you need an audio editor like Sound Forge and/or Audacity
See also http://www.digitalfaq.com/forum/vide...html#post32962
|
07-23-2014, 01:02 PM
|
|
Free Member
|
|
Join Date: Feb 2011
Location: France
Posts: 556
Thanked 121 Times in 105 Posts
|
|
And you have forgotten the infamous chroma shift. It can be a serious issue (easily fixable generally) depending on the tape.
|
The following users thank themaster1 for this useful post:
lordsmurf (07-24-2014)
|
07-24-2014, 09:38 PM
|
|
Site Staff | Video
|
|
Join Date: Dec 2002
Posts: 14,166
Thanked 2,574 Times in 2,187 Posts
|
|
I knew I was forgetting something.
Yes, both chroma noise + chroma shift (color bleed) are typical VHS errors. Fixing the shift makes it sharper, as well as making it look overall better.
|
Similar Threads
|
Thread |
Thread Starter |
Forum |
Replies |
Last Post |
Virtualdub and Avisynth workflow and filter advice for VHS restore
|
Zoink187 |
Restore, Filter, Improve Quality |
11 |
07-23-2014 07:31 AM |
Best settings to save an AVI in VirtualDub filtered from Avisynth?
|
Zoink187 |
Project Planning, Workflows |
7 |
07-23-2014 05:45 AM |
VHS footage restore Advice using VirtualDub/Avisynth
|
Zoink187 |
Restore, Filter, Improve Quality |
0 |
03-28-2014 09:14 PM |
Good VHS filter guides? (VirtualDub + Avisynth)
|
premiumcapture |
Restore, Filter, Improve Quality |
3 |
02-25-2014 11:24 AM |
Avisynth filters, correct tape drop-outs
|
admin |
Restore, Filter, Improve Quality |
0 |
02-15-2005 05:07 AM |
All times are GMT -5. The time now is 09:18 AM
|