#1  
07-15-2012, 06:22 PM
Belmont Belmont is offline
Free Member
 
Join Date: Mar 2012
Posts: 43
Thanked 3 Times in 2 Posts
What purpose does the Chroma Smoother tool in Virtualdub serve, exactly? Say, if you're exporting an uncompressed/HuffYUV .avi to encode in MPEG-2, wouldn't the MPEG-2 encoder already compress the color to the proper colorspace settings? I see subtle differences when playing around with it, but I just don't see the purpose of it. Can someone please enlighten me on this matter, or at least shed some light on this for me?
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Ads / Sponsors
 
Join Date: ∞
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #2  
07-16-2012, 12:23 PM
themaster1 themaster1 is offline
Free Member
 
Join Date: Feb 2011
Location: France
Posts: 503
Thanked 101 Times in 85 Posts
Mpeg2 DVD is ycbcr (4.2.0) and huffyuv is 4.2.2 so there is a mismatch and you should use an avisynth script to fix that with accuracy imo such as:

Code:
mpegsource("blabla")
pointresize(last.width, last.height*2).converttoyv12(matrix="Rec601",interlaced=true).pointresize(last.width, last.height)
Reply With Quote
  #3  
07-16-2012, 01:03 PM
lordsmurf's Avatar
lordsmurf lordsmurf is offline
Site Staff | Video
 
Join Date: Dec 2002
Posts: 13,620
Thanked 2,458 Times in 2,090 Posts
Chroma Smoother is a restoration filter. It's chroma noise reduction (NR). It doesn't really have anything to do with the colorspace of MPEG or Huffyuv. It's not a reference to the same sub-topic of chroma.

Use it sparingly, otherwise you'll create "mouse trails" (temporal artifacts).

Good MPEG-2 encoders already properly convert the colorspace. I pretty much only use MainConcept Reference. Sometimes I'll use the Adobe Media Encoder, which is a MainConcept-based MPEG export from Premiere CS3 and CS4. Less often I'll use the free MPEG-2 encoding in Avidemux 2.5, but even that appears to be fine. I don't know that any special Avisynth work is needed when converting lossless AVI to MPEG-2.

I think themaster's script refers to importing MPEG-2, and then processing it.

@themaster1, welcome to the site.

- Did my advice help you? Then become a Premium Member and support this site.
- For sale in the marketplace: TBCs, workflows, capture cards, VCRs
Reply With Quote
  #4  
07-16-2012, 03:55 PM
themaster1 themaster1 is offline
Free Member
 
Join Date: Feb 2011
Location: France
Posts: 503
Thanked 101 Times in 85 Posts
my fault i meant to type

Code:
avisource("blabla") #huffyuv 4.2.2
assumetff (or bff)
pointresize(last.width, last.height*2).converttoyv12(matrix="Rec601",interlaced=true).pointresize(last.width, last.height)
for vhs you'd need something more:

Code:
avisource("blabla") #huffyv 4.2.2
assumetff (or bff)
crop(0,0,0,-1).pointresize(width,height,0,0,width,height).mergeluma(last)
pointresize(width,height,0,1,width,height).mergeluma(last)
pointresize(last.width, last.height*2).converttoyv12(matrix="Rec601",interlaced=true).pointresize(last.width, last.height)
I have tested this on a smpte test pattern
Reply With Quote
  #5  
07-16-2012, 09:43 PM
lordsmurf's Avatar
lordsmurf lordsmurf is offline
Site Staff | Video
 
Join Date: Dec 2002
Posts: 13,620
Thanked 2,458 Times in 2,090 Posts
@themaster1: Be sure to put Avisynth scripts in the [code][/code] bbcode boxes.

- Did my advice help you? Then become a Premium Member and support this site.
- For sale in the marketplace: TBCs, workflows, capture cards, VCRs
Reply With Quote
  #6  
07-19-2012, 01:20 AM
lordsmurf's Avatar
lordsmurf lordsmurf is offline
Site Staff | Video
 
Join Date: Dec 2002
Posts: 13,620
Thanked 2,458 Times in 2,090 Posts
Actually, looking back at this, I was thinking of the temporal smoother filter's function, not this one. The temporal smoother only does temporal NR, too, not chroma NR. I just thought this was the chroma version for some reason. (I was tired, probably.) I don't even have the Chroma Smoother filter installed, because it's pretty much useless in my opinion. It's never used.

- Did my advice help you? Then become a Premium Member and support this site.
- For sale in the marketplace: TBCs, workflows, capture cards, VCRs
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
What are VHS Chroma Flaws? How to Fix Them? lordsmurf Restore, Filter, Improve Quality 4 07-17-2018 06:21 PM
Virtualdub and chroma interlacing unclescoob Restore, Filter, Improve Quality 6 10-25-2011 11:12 AM
Is there a m2v loseless cutting tool? manthing Edit Video, Audio 1 06-15-2011 05:35 PM
FOR.A brand TBC FA-800A, chroma cleanup? deter Restore, Filter, Improve Quality 2 01-15-2010 04:29 PM
Best tool to beef up sound? manthing Edit Video, Audio 5 03-30-2006 05:12 AM

Thread Tools



 
All times are GMT -5. The time now is 12:32 AM