digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Avisynth Scripting (http://www.digitalfaq.com/archives/avisynth/)
-   -   Avisynth: Something weird in mpg when testing .AVS file (http://www.digitalfaq.com/archives/avisynth/8501-avisynth-weird-mpg.html)

WOWIEGURL 03-07-2004 02:24 AM

Avisynth: Something weird in mpg when testing .AVS file
 
I used this script

LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\MPEGDec3.d11")
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\BlockBuster.dll")
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\atc.dll")
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\dtcfilter.dll")
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\undot.dll")

AviSource("D:\eMule\Incoming\name of movie.1994.DVDRip.avi",false)

ConvertToYv12()
LanczosResize(480, 430, 1, 0, 542, 304)
BlindPP(cpu=4)
Blockbuster(method="noise",detail_min=1,detail_max =3,variance=0.1,seed=1)
ATC(2,3,5,0.5,false)
Undot()
TemporalSoften(2,7,7,3,2)
DCTFilter(1,1,1,1,1,1,0.5,0)
AddBorders(8,8,8,8)

Did a copy and paste job from V3 script by DialHot and I get this msg in media player

LoadPlugin:unable to load"H:\Program Files\AviSynth 2.5\pluginsMPEGDec3.d11" (H:\Documents and settings\Franky\Desktop\name of movie.avs,line 1)

Am I missing something or did I do something wrong?I'm using the "Creating a script for Avisynth 2.5X with movie stacker v2.0.0. beta 3" guide and I have downloaded the filters listed in the script in the appropriate folders

bman 03-07-2004 06:52 AM

Re: Something weird is showing up in mpg when testing .AVS f
 
Quote:

Originally Posted by WOWIEGURL
I used this script

LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\MPEGDec3.d11")
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\BlockBuster.dll")
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\atc.dll")
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\dtcfilter.dll")
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\undot.dll")

AviSource("D:\eMule\Incoming\name of movie.1994.DVDRip.avi",false)

ConvertToYv12()
LanczosResize(480, 430, 1, 0, 542, 304)
BlindPP(cpu=4)
Blockbuster(method="noise",detail_min=1,detail_max =3,variance=0.1,seed=1)
ATC(2,3,5,0.5,false)
Undot()
TemporalSoften(2,7,7,3,2)
DCTFilter(1,1,1,1,1,1,0.5,0)
AddBorders(8,8,8,8)

Did a copy and paste job from V3 script by DialHot and I get this msg in media player

LoadPlugin:unable to load"H:\Program Files\AviSynth 2.5\pluginsMPEGDec3.d11" (H:\Documents and settings\Franky\Desktop\name of movie.avs,line 1)

Am I missing something or did I do something wrong?I'm using the "Creating a script for Avisynth 2.5X with movie stacker v2.0.0. beta 3" guide and I have downloaded the filters listed in the script in the appropriate folders

Instead of :
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\MPEGDec3.d11")
should be :
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\MPEGDec3.dll")
and
AviSource("D:\eMule\Incoming\name of movie.1994.DVDRip.avi",false)
try
AviSource("D:\eMule\Incoming\name of ovie.1994.DVDRip.avi",audio=false)
bman

kev23m 03-07-2004 07:39 AM

Make sure you have the right filters for Avisynth 2.53

Save the filter dll files in Plugins Folder for Avisynth.

Remove these lines.

LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\MPEGDec3.d11")
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\BlockBuster.dll")
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\atc.dll")
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\dtcfilter.dll")
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\undot.dll")

Avisynth 2.5x picks the filters automatically.

WOWIEGURL 03-08-2004 02:08 AM

Quote:

Originally Posted by kev23m
Make sure you have the right filters for Avisynth 2.53

Save the filter dll files in Plugins Folder for Avisynth.

Remove these lines.

LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\MPEGDec3.d11")
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\BlockBuster.dll")
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\atc.dll")
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\dtcfilter.dll")
LoadPlugin("H:\Program Files\AviSynth 2.5\plugins\undot.dll")

Avisynth 2.5x picks the filters automatically.

is atc.dlll the same as autocrop? because its working and after I remove the loadplugin lines I get "Blind PP : Need mod 10 height H:\Documents and Settings\Franky\Desktop\Treasure Hunt.avs,line 5"

what did I do wrong?

The script looks like this now

AviSource("D:\eMule\Incoming\Treasure.Hunt.1994.DV DRip.avi",audio=false)

ConvertToYv12()
LanczosResize(480, 430, 1, 0, 542, 304)
BlindPP(cpu=4)
Blockbuster(method="noise",detail_min=1,detail_max =3,variance=0.1,seed=1)
ATC(2,3,5,0.5,false)
Undot()
TemporalSoften(2,7,7,3,2)
DCTFilter(1,1,1,1,1,1,0.5,0)
AddBorders(8,8,8,8)

incredible 03-08-2004 04:08 AM

Quote:

AviSource("D:\eMule\Incoming\Treasure.Hunt.1994.DV DRip.avi",audio=false)
Read the disclaimer!

Cause of definitive WAREZ content this Thread is ...



******************** CLOSED! **********************

Inc.


All times are GMT -5. The time now is 01:22 PM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.