03-19-2014, 06:03 PM
|
|
Free Member
|
|
Join Date: Jan 2014
Location: Illinois
Posts: 40
Thanked 4 Times in 3 Posts
|
|
Hello,
I would like some advice on what settings I should be using to save my file as a lossless avi in virtualdub so that I can apply certain filters to adjust the color and brightness only in vdub and then save it for possible further editing in another nle. Right now I have a working folder that has my source capture and my avisynth script and the audio wav. Can I just apply the filters when I "open video" and THEN save as .avi once I have applied all of my vdub filters? The capture is lagarith yuy2 avi file. This is a vhs to dvd restore and also a separate upload to YouTube. Thanks
|
Someday, 12:01 PM
|
|
Ads / Sponsors
|
|
Join Date: ∞
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
|
|
|
03-19-2014, 07:57 PM
|
|
Free Member
|
|
Join Date: Feb 2011
Location: France
Posts: 586
Thanked 123 Times in 107 Posts
|
|
Before saving you must pick the compression codec indeed otherwise it'll be uncompressed (massive file).
Also pick the color depth wisely, generally YV12 4.2.0 in and out but you want YUY2 so..
If you don't want to use filters, say open an .avs script and compress in avi pick the fast recompress mode. For processing with the filters it's always full processing.
|
03-20-2014, 06:21 AM
|
|
Site Staff | Video
|
|
Join Date: Dec 2002
Posts: 14,519
Thanked 2,645 Times in 2,251 Posts
|
|
Quote:
Originally Posted by Zoink187
I would like some advice on what settings I should be using to save my file as a lossless avi in virtualdub so that I can apply certain filters to adjust the color and brightness only in vdub and then save it for possible further editing in another nle.
|
I've read this three times now, and still don't understand what you're asking.
Try again.
I hate to be a grammar nanny, but the run-in sentence causes it.
|
03-20-2014, 07:57 AM
|
|
Free Member
|
|
Join Date: Jan 2014
Location: Illinois
Posts: 40
Thanked 4 Times in 3 Posts
|
|
Lol. Sorry. I wanted some advice on workflow steps to preparing an avi that I just ran through avisynth filters.
For instance, I'm assuming, the next step is to "run it through" virtual dub and apply color and brightness filters (which I do need to apply in this instance). From there, I want to save that and place it into my actual video editing software. Then, I want to use avstodvd to author and burn. Mind you, keeping it lossless as much as possible. Is that a clearer question?
|
03-20-2014, 09:34 AM
|
|
Free Member
|
|
Join Date: Feb 2011
Location: France
Posts: 586
Thanked 123 Times in 107 Posts
|
|
you can do better than saving to avi and importing to a nle
You can put your filters in an avs script, example for an interlaced source:
Code:
pointresize(last.width, last.height*2).ConverttoRGB32(matrix="rec601",interlaced=true).pointresize(last.width, last.height)
separatefields()
#### CCD COLOR DENOISING ( to remove chroma noise):
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 works best for most videos)
# Sharpening 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) / 0-1 is gives best results
weave()
pointresize(last.width, last.height*2).converttoyv12(matrix="Rec601",interlaced=true).pointresize(last.width, last.height)
Note: this only work with external virtualdub filters, not internal
Then with a little tool called avs2avi you can create a fake avi (really small) and your NLE software should accept it (Vegas does i know)
So basically, the workflow to follow:
- Tweak your videos with vdub
- import your filters in an avs script (to save multiple YCrCb<> RGB convertions)
- Avoid 1 compression step by creating a fake avi and import to NLE
QED
|
03-20-2014, 03:10 PM
|
|
Free Member
|
|
Join Date: Dec 2013
Location: Boston, MA
Posts: 585
Thanked 73 Times in 66 Posts
|
|
- Capture Video
- Build AVS list if using avisynth
- Apply VDUB filters if using those
- Choose output settings - the trick here is to ensure you are picking the correct color depth and compression codec to ensure no quality loss or broken videos
- Author
- Enjoy
- Send me cookies
|
03-20-2014, 05:48 PM
|
|
Free Member
|
|
Join Date: Jan 2014
Location: Illinois
Posts: 40
Thanked 4 Times in 3 Posts
|
|
Quote:
Originally Posted by themaster1
you can do better than saving to avi and importing to a nle
You can put your filters in an avs script, example for an interlaced source:
|
I already have an avisynth script and ran the dub. Are you saying do the vdubbing first and then avisynth? I have already made sharpen and noise adjustments. I'm looking at brightness and color correction only. I know very little about writing the scripts and the parameters involved in the plugins. Thanks.
|
07-23-2014, 05:45 AM
|
|
Site Staff | Video
|
|
Join Date: Dec 2002
Posts: 14,519
Thanked 2,645 Times in 2,251 Posts
|
|
Quote:
Originally Posted by Zoink187
I already have an avisynth script and ran the dub. Are you saying do the vdubbing first and then avisynth?
|
You can do it "backwards" if you want -- VirtualDub only, then Avisynth>VirtaulDub. That's the beauty of lossless video -- you can. Ideally, you want to do it in "order" for time reasons, but sometimes you need to run certain filters first.
Although, note that VirtualDub filters can be run in Avisynth! Few know this.
Cookies? I like chocolate chip the best.
I rarely give advice without seeing samples anymore.
|
Similar Threads
|
Thread |
Thread Starter |
Forum |
Replies |
Last Post |
Good VHS filter guides? (VirtualDub + Avisynth)
|
premiumcapture |
Restore, Filter, Improve Quality |
3 |
02-25-2014 11:24 AM |
VCR and VirtualDub VHS capture settings and advice
|
sanCapture |
Capture, Record, Transfer |
2 |
01-26-2014 05:28 PM |
HuffyUV Settings with VirtualDub for capture
|
naripeddi |
Capture, Record, Transfer |
7 |
04-12-2013 02:50 AM |
NRS Suite in Virtualdub: temporal smoother's best settings ?
|
unclescoob |
Restore, Filter, Improve Quality |
6 |
10-10-2011 04:45 PM |
VirtualDub - advice on the filter settings
|
deter |
Restore, Filter, Improve Quality |
7 |
01-21-2010 09:54 PM |
Thread Tools |
Search this Thread |
|
|
All times are GMT -5. The time now is 06:14 PM
|