Log in

View Full Version : Help needed


Neutrino
21st October 2003, 17:56
When i visited the avisynth website i found many tutorials and reading it i'm getting to completely black out.I wanted a simple explanation of many dlls.My friend told me if i could learn this I could make better divx.
I would like to know how these avisynth plugin dlls work and how can control the various parameters.When I opned the avs file with notepad I forund lot of functions and many things more like # .What all these mean.And how can I know there is such a function.

Please help me....Thnak you

Guest
21st October 2003, 19:14
Anything we say here would just repeat the information at the website.

If you have a specific question, please ask it.

Soulhunter
21st October 2003, 19:26
Hi Neutrino, and welcome to this forum ! :)

You say you have read the tutorials, but got a blackout ???

Maybe too much to read at one time... :D


But Its not that complicate.. ;)

To use one of this dll's, you have to add a line in your AVS to load them...

Like this:

LoadPlugin("C:\AviSynth\Plugins\DenoiseX.dll")

To use them, you have to add the usage of the dll in you script...

Like this:

DenoiseX(H=5, V=3, threshold=10)

But for this you have to know the parameters and what they do...

You find this info most times in a txt file that comes with a filter !

Or you can read about this on the AviSynth homepage... ;)


About this # thing...

Its only a prevention of using a filter...

Example:

DenoiseX(H=5, V=3, threshold=10)

Would use this filter...

#DenoiseX(H=5, V=3, threshold=10)

Would not use it...

Easy hmm... ??? ;)


There are a lot of functions n' filters...

To learn how to use them, you have to read up a bit more ! ;)

Here is the FAQ (http://www.avisynth.org/index.php?page=AviSynthFaq)... Try dont to get a blackout again !!! :D

Look also here (http://www.dvdrhelp.com/forum/userguides/99389.php)& here (http://www.animemusicvideos.org/guides/avtech/avisyntha.html) !!!

Hope this info helps you... :D

PS: DenoiseX() is only a functionary filter... ;)

Bye

Wilbert
21st October 2003, 19:32
Lines beginning with # are comment lines. You can remove those.

Please, start here:

http://www.avisynth.org/index.php?page=YourFirstScript

Then here:

http://www.avisynth.org/index.php?page=MostCommonFilters

List of all filters + descriptions:

http://www.avisynth.org/index.php?page=FiltersByCategory

Just to repeat Neuron2: "If you have a specific question, please ask it."

edit: Soulhunter responded faster :)

Soulhunter
21st October 2003, 19:57
@Wilbert
Lines beginning with # are comment lines. You can remove those.
But not all in GK ! Not used functions and such stuff are prevented with # also... :rolleyes:

Just thought its good to tell him that he can use this # to prevent functions in his script, instead of removing them... Just to test a function to see what you get, then try without by adding a # and see again n' so on... !

Good for testing a scipt... See it simply as an "ON/OFF" switch ! :D

PS: Only tried to be gracious kind, because he's a first-timer... ;)

Bye