Quantcast Avisynth: Loading Plugins Problem - digitalFAQ.com Forums [Archives]
  #1  
11-14-2003, 02:09 PM
Soulman Soulman is offline
Free Member
 
Join Date: Nov 2003
Posts: 14
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to Soulman
Hello folks,

First of all, turn the newbie alert on. OK?

Well, I am trying to use the following script:

Code:
AviSource("C:\video.avi",false)
#addborders(0,12,0,0) 
BlindPP(cpu=4) 
Blockbuster(method="noise",detail_min=1,detail_max=3,variance=0.1,seed=1) 
ATC(2,3,5,0.5,false) 
GripCrop(480, 480, overscan=1, source_anamorphic=false) 
GripSize(resizer="LanczosResize") 
Undot() 
TemporalSoften(2,7,7,3,2) 
DCTFilter(1,1,1,1,1,1,0.5,0) 
GripBorders()
I am getting a error on 3rd line. When I comment it, putting a ´#´in the beggining of the line a get an error in the 4th and so on.

What can I do to solve this problem?

Thank you very much![/code]
Reply With Quote
Someday, 12:01 PM
admin's Avatar
Site Staff / Ad Manager
 
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
  #2  
11-14-2003, 03:10 PM
rendalunit rendalunit is offline
Free Member
 
Join Date: Apr 2002
Location: san jose, Ca
Posts: 1,148
Thanks: 0
Thanked 0 Times in 0 Posts
Do you have MPEG2DEC3.dll in the plugins directory of Avisynth?
Reply With Quote
  #3  
11-14-2003, 04:37 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
And all other filters too ! As you say you have error on line 4 also...
Reply With Quote
  #4  
11-16-2003, 04:08 PM
sh0dan sh0dan is offline
Free Member
 
Join Date: Mar 2003
Posts: 89
Thanks: 0
Thanked 0 Times in 0 Posts
AviSynth version?

Do you have any *.avsi files in your plugin directory?
__________________
Regards, sh0dan // VoxPod
Reply With Quote
  #5  
01-26-2004, 05:05 AM
wgamer wgamer is offline
Free Member
 
Join Date: Jan 2004
Posts: 33
Thanks: 0
Thanked 0 Times in 0 Posts
hi my avisynth version is 2.5

when i load avs in wmp
i get a "dll not avisynth plugin " error
i hav copied the dlls into avisynth plugin directory
Reply With Quote
  #6  
01-26-2004, 06:23 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
We need the exact text of the error to help you (in particular, wich is the involved dll ?)
Reply With Quote
  #7  
01-26-2004, 06:48 AM
wgamer wgamer is offline
Free Member
 
Join Date: Jan 2004
Posts: 33
Thanks: 0
Thanked 0 Times in 0 Posts
ok initially the error was
Plugin 'Path Name\mpeg2dec.dll is not an Avisynth 2.5 plugin'
then i got hold of mpeg2dec3dg.dll from another thread

and then the error was for the next dll in the avs which was gripfit_preview.dll and then wmp crashes.

i just copied the dlls from moviestacker 2 plugins folder to avisynth 2.5 folder

BTW the script works well with avisynth 2 plugin

my version of avisynth is 2.52

here is the script:
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\GripFit_preview.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\UnFilter.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\LegalClip.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Sampler.dll")

AviSource("F:\ABCD DivX.avi",false)
ConvertToYUY2()
LegalClip()
UnFilter(50, 50)
BicubicResize(448, 384, 0, 0.6, 6, 0, 340, 182)
GripCrop(528, 576, overscan=2, source_anamorphic=false)
GripSize(resizer="BicubicResize")

TemporalSmoother(1, 2)
MergeChroma(blur(1.5)
MergeLuma(blur(0.2))
GripBorders()
LegalClip()

## MPEG size = ((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size * .98 ##


my avi resolution is not standard: any suggestion/thread?
is the output resoln correct ?(if this is not the right forum plz excuse me; since u r busy i thought i might as well ask when u r here ; been scouring kvcd forum for a week now)
if i select svcd resln in mstacker the image is a square in wmp
or may be i should select vcd resoln?
"GripCrop(352, 288, overscan=2, source_anamorphic=false)"

but i am losing a bit of the movie at the borders

do u guys have a channel in irc (realtime help will a lot more ......well helpful)
Reply With Quote
  #8  
01-26-2004, 06:57 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by wgamer
i just copied the dlls from moviestacker 2 plugins folder to avisynth 2.5 folder

BTW the script works well with avisynth 2 plugin
And that's normal : moviestacker is delivered with dll for avs 2.0x only. You can't just copy them to avs2.5 directory; You have to DL a 2.5 version of each dll you need.

Quote:
my avi resolution is not standard: any suggestion/thread?
is the output resoln correct ?
If you took the parameters for bicubicresize from movie stacker, it can't be wrong.

Quote:
if i select svcd resln in mstacker the image is a square in wmp
or may be i should select vcd resoln?
NEVER trust wmp for aspect ratio. Use an other player where you can force the A/R to 4:3 (zoomplayer for instance) or simply look at the result on your TV set.

Quote:
"GripCrop(352, 288, overscan=2, source_anamorphic=false)"

but i am losing a bit of the movie at the borders
overscan =2 is TOO BIG for that resoltution. use 1.


do u guys have a channel in irc (realtime help will a lot more ......well helpful)[/quote]
Reply With Quote
  #9  
01-26-2004, 11:55 AM
wgamer wgamer is offline
Free Member
 
Join Date: Jan 2004
Posts: 33
Thanks: 0
Thanked 0 Times in 0 Posts
hi dialhot
got SOME of the dlls from avisynth site and made a working avs; going to the file prediction section now; that means more troubel for you

however i couldnt get dlls from legalclip and sampler for avs2.5.2
could u help?
Reply With Quote
  #10  
01-26-2004, 12:05 PM
sh0dan sh0dan is offline
Free Member
 
Join Date: Mar 2003
Posts: 89
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by wgamer
however i couldnt get dlls from legalclip and sampler for avs2.5.2

could u help?
Use the builtin Limiter() instead.
__________________
Regards, sh0dan // VoxPod
Reply With Quote
  #11  
01-26-2004, 01:11 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
And for sample it is there :

www.incredible.de.tf/Downloads/Sampler-2.5.rar
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
Avisynth: Loading ogm files? shgr Avisynth Scripting 5 10-06-2005 05:00 AM
Avisynth: Subtitle loading problem khusru Avisynth Scripting 2 01-25-2005 09:34 PM
VirtualDub: Problem loading AVS Script Shiryu_Kido Video Encoding and Conversion 10 08-04-2004 12:18 PM
Avisynth: Automatic loading of AVS 2.0x plugins in AVS 2.5 vmesquita Avisynth Scripting 1 10-10-2003 01:16 PM
TMPGEnc: Problem loading .avs files Vitia Video Encoding and Conversion 13 03-03-2003 01:16 PM

Thread Tools



 
All times are GMT -5. The time now is 06:05 AM  —  vBulletin © Jelsoft Enterprises Ltd