Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > Capturing and Editing Video > Avisynth Development

Reply
 
Thread Tools Search this Thread Display Modes
Old 6th October 2005, 17:50   #1  |  Link
Chainmax
Huh?
 
Chainmax's Avatar
 
Join Date: Sep 2003
Location: Uruguay
Posts: 3,103
SmartSSIQ question

The avs indicates that this script needs VD_SmartSmoothIQ(). Where do I find it and how do I load it?
__________________
Read Decomb's readmes and tutorials, the IVTC tutorial and the capture guide in order to learn about combing and how to deal with it.
Chainmax is offline   Reply With Quote
Old 6th October 2005, 20:18   #2  |  Link
Wilbert
Moderator
 
Join Date: Nov 2001
Location: Netherlands
Posts: 6,364
http://www.avisynth.org/VirtualDub_I and http://www.avisynth.org/VirtualDub_II. You also need to get SmoothHiQ.vdf somewhere.
Wilbert is offline   Reply With Quote
Old 6th October 2005, 22:35   #3  |  Link
foxyshadis
ангел смерти
 
foxyshadis's Avatar
 
Join Date: Nov 2004
Location: Lost
Posts: 9,558
If you want to replicate it without conversions to RGB (but still requiring YUY2), you can replace the call with SmoothHiQ (avisynth port) in the script, but if you do you have to use separatefields/weave if you want interlaced since it doesn't support it. Other than that one vdub filter there's really no good reason to convert everything to rgb.
foxyshadis is offline   Reply With Quote
Old 7th October 2005, 00:26   #4  |  Link
Chainmax
Huh?
 
Chainmax's Avatar
 
Join Date: Sep 2003
Location: Uruguay
Posts: 3,103
Wilbert: thanks . I found smoothhiq here.

foxyshadis: I'm trying to use LB's SmartSSIQ script which needs the VDub version.

mmm...the vdub_filters.avsi file says that the vdf should be named smooth.vdf and that SmoothHiQ.vdf corresponds to neuron's Smart Smoother HiQ. That can't be right, neuron's filter is a smoother, isn't it? I'll just rename the VDF I found.
__________________
Read Decomb's readmes and tutorials, the IVTC tutorial and the capture guide in order to learn about combing and how to deal with it.

Last edited by Chainmax; 7th October 2005 at 00:56.
Chainmax is offline   Reply With Quote
Old 7th October 2005, 01:14   #5  |  Link
Chainmax
Huh?
 
Chainmax's Avatar
 
Join Date: Sep 2003
Location: Uruguay
Posts: 3,103
I get a "there's no function called UnSharpMask" error. This is my script:

Code:
LoadPlugin("X:\wherever\DeDot.dll")
LoadPlugin("X:\wherever\Bifrost.dll")
LoadPlugin("X:\wherever\TDeint.dll")
Import("X:\wherever\VDub_Filters.avs")
Import("X:\wherever\SmartSSIQ.avs")
DirectShowSource("X:\wherever\myDVAvi.avi",fps=25,audio=false)
ConditionalFilter(last, last, last.DeDot(20,20,15,5), "YDifferenceFromPrevious()", ">", "5", false)
ConvertToYV12(interlaced=true)
Bifrost(interlaced=true)
TDeint(type=1)
SmartSSIQ()
I tried loading MaskTools (v1.5.8) but the same error appeared. What else do I need to load?
__________________
Read Decomb's readmes and tutorials, the IVTC tutorial and the capture guide in order to learn about combing and how to deal with it.
Chainmax is offline   Reply With Quote
Old 7th October 2005, 07:11   #6  |  Link
Leak
ffdshow/AviSynth wrangler
 
Leak's Avatar
 
Join Date: Feb 2003
Location: Austria
Posts: 2,441
Quote:
Originally Posted by Chainmax
I get a "there's no function called UnSharpMask" error.
IIRC that's a part of warpsharp.dll...

Also, Unsharp Masking isn't really masking, but a sharpening technique, so you're quite unlikely to find it in MaskTools...

np: Fluke - Life Support (Six Wheels On My Wagon)
Leak is offline   Reply With Quote
Old 7th October 2005, 12:36   #7  |  Link
Chainmax
Huh?
 
Chainmax's Avatar
 
Join Date: Sep 2003
Location: Uruguay
Posts: 3,103
Like I said, I loaded MaskTools v1.5.8 to no avail. Let's see if loading warpsharp does the trick...

...it did, then it asked me for edgemask so I also loaded maskTools and now it works. Thanks for the heads-up .


[edit]Wow, not even this could kill those rainbows. sh0dan's rainbow killer, CNR2 and FFT3DFilter(sigma=6) on the chroma planes couldn't either .
__________________
Read Decomb's readmes and tutorials, the IVTC tutorial and the capture guide in order to learn about combing and how to deal with it.

Last edited by Chainmax; 28th November 2005 at 12:24.
Chainmax is offline   Reply With Quote
Old 8th October 2005, 05:43   #8  |  Link
foxyshadis
ангел смерти
 
foxyshadis's Avatar
 
Join Date: Nov 2004
Location: Lost
Posts: 9,558
You must have one horrific clip. Something like this cockatoo, maybe?

I noticed the name being off when I looked up smartssiq the other day, I thought it was a bug in avisynth.org but I didn't want to change it without confirmation.
foxyshadis is offline   Reply With Quote
Old 8th October 2005, 16:29   #9  |  Link
Chainmax
Huh?
 
Chainmax's Avatar
 
Join Date: Sep 2003
Location: Uruguay
Posts: 3,103
Well, it's quite worse. It's a short film made by a friend of mine and it's a third generation VHS copy as it was analogically edited as many times before capturing it to DV. In any case, scharfis_brain took a look at it and told me that spatial chroma smoothing won't help because the chroma is already blurred from the successive copying and DV's crappy YV12 and suggested me to use temporalsoften instead.
__________________
Read Decomb's readmes and tutorials, the IVTC tutorial and the capture guide in order to learn about combing and how to deal with it.
Chainmax is offline   Reply With Quote
Old 8th October 2005, 21:43   #10  |  Link
Wilbert
Moderator
 
Join Date: Nov 2001
Location: Netherlands
Posts: 6,364
@Chainmax,
Quote:
mmm...the vdub_filters.avsi file says that the vdf should be named smooth.vdf and that SmoothHiQ.vdf corresponds to neuron's Smart Smoother HiQ. That can't be right, neuron's filter is a smoother, isn't it? I'll just rename the VDF I found.
So, if i understand you correctly, i need to rename smooth.vdf to smoothIQ.vdf, right?
Wilbert is offline   Reply With Quote
Old 8th October 2005, 22:55   #11  |  Link
Chainmax
Huh?
 
Chainmax's Avatar
 
Join Date: Sep 2003
Location: Uruguay
Posts: 3,103
Yeah, I couldn't have phrased myself worse, could I?
The vdf from the package I downloaded is named SmoothIQ.vdf and it has to be renamed to smooth.vdf.
__________________
Read Decomb's readmes and tutorials, the IVTC tutorial and the capture guide in order to learn about combing and how to deal with it.

Last edited by Chainmax; 11th October 2005 at 21:41.
Chainmax is offline   Reply With Quote
Old 9th October 2005, 00:20   #12  |  Link
Wilbert
Moderator
 
Join Date: Nov 2001
Location: Netherlands
Posts: 6,364
Ok, another try:

smoothhiq.vdf is used in VD_SmartSmoothHiQ. So that's good.
smooth.vdf is used in VD_SmartSmoothIQ. This should be smoothIQ.vdf here.

Right?
Wilbert is offline   Reply With Quote
Old 11th October 2005, 21:49   #13  |  Link
Chainmax
Huh?
 
Chainmax's Avatar
 
Join Date: Sep 2003
Location: Uruguay
Posts: 3,103
Exactly.
__________________
Read Decomb's readmes and tutorials, the IVTC tutorial and the capture guide in order to learn about combing and how to deal with it.
Chainmax is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 16:46.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.