Quantcast AVS Script Won't Load in TMPGEnc - digitalFAQ.com Forums [Archives]
Go Back    digitalFAQ.com Forums [Archives] > Video Production Forums > Avisynth Scripting

Reply
 
LinkBack Thread Tools
  #1  
11-12-2003, 07:59 PM
big big is offline
Free Member
 
Join Date: Jan 2003
Posts: 173
Thanks: 0
Thanked 0 Times in 0 Posts
i used this scipt...but when loaded in tmpgenc i have all coloured dots & no movie...please help

LoadPlugin("C:\Programmes\AviSynth 2.5\plugins\MPEG2Dec3.dll")
LoadPlugin("C:\Programmes\AviSynth 2.5\plugins\blockbuster.dll")
LoadPlugin("C:\Programmes\AviSynth 2.5plugins\Convolution3DYV12.dll")
LoadPlugin("C:\Programmes\AviSynth 2.5\plugins\GripFit_YV12.dll")
LoadPlugin("C:\Programmes\AviSynth 2.5\plugins\UnDot.dll")


AviSource("C:\Films\Films à faire\.avi",false)
BlindPP(cpu=4)
Blockbuster(method="noise",detail_min=1,detail_max =3,variance=0.1,seed=1)
Convolution3D(1, 6, 12, 6, 8, 2.8, 0)
GripCrop(528, 480, source_anamorphic=false)
GripSize(resizer="LanczosResize")
Undot()
TemporalSoften(2,7,7,3,2)
DCTFilter(1,1,1,1,1,1,0.5,0)
#Blockbuster(method="noise",detail_min=1,detail_ma x=10,variance=0.3,seed=5623)
GripBorders()
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-12-2003, 09:54 PM
big big is offline
Free Member
 
Join Date: Jan 2003
Posts: 173
Thanks: 0
Thanked 0 Times in 0 Posts
i have deleted all the loadplugin lines...and i still have the doted rectangle in tmpgenc...
Reply With Quote
  #3  
11-13-2003, 04:37 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
You possibly do not have the correct codec for this kind of avi.

Open the avs directly in wmp or zoomplayer and see what it says.

In the end, just put "ConvertToRGB24()" at the end of the script but if you have the correct codecs, you should never need to add this line.
Reply With Quote
  #4  
11-13-2003, 07:41 AM
big big is offline
Free Member
 
Join Date: Jan 2003
Posts: 173
Thanks: 0
Thanked 0 Times in 0 Posts
first i should have the good codecs because all my avis are playing ok in wmp or zoomplayer...

i put ConvertToRGB24() at the end of the script and the doted rectangle has dissappeared...

but my movie is not loading in tmpgenc...when i go to preview it is all blank???

i was using another script till i found your optimal script that is why i went to avisynth 2.53...thought it would be better but it seems that i have some minotr problems...

when i was using avisynth 2.08 everything was fine...
Reply With Quote
  #5  
11-13-2003, 09:03 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 big
first i should have the good codecs because all my avis are playing ok in wmp or zoomplayer...
That's a urban legend.
You can habe a directshow filter like ffdshow that handle the video format, letting you to open it in wmp, but it is not a codec. And avisynth use only codecs, exept if you use the command "DirectShowSoruce" insteed of "AviSource".

So you can have a video that you can play but avisynth can't read.

Quote:
i put ConvertToRGB24() at the end of the script and the doted rectangle has dissappeared...
You definitely don't have the proper codecs installed then. This line fix the problem, but it's better to fix it at the source.

Quote:
when i was using avisynth 2.08 everything was fine...
Because avisynth 2.08 works in an otehr colorspace. Update you codecs, the last release can provide a picture in the YV12 colorspace, the one used by avs2.53.
Reply With Quote
  #6  
11-13-2003, 10:17 AM
GFR GFR is offline
Free Member
 
Join Date: May 2002
Posts: 438
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Dialhot
Quote:
Originally Posted by big
first i should have the good codecs because all my avis are playing ok in wmp or zoomplayer...
That's a urban legend.
You can habe a directshow filter like ffdshow that handle the video format, letting you to open it in wmp, but it is not a codec. And avisynth use only codecs, exept if you use the command "DirectShowSoruce" insteed of "AviSource".

So you can have a video that you can play but avisynth can't read.


that's right, to figure out if you have the codec or a dshow filter, you can use Gspot.
Reply With Quote
  #7  
11-13-2003, 02:03 PM
big big is offline
Free Member
 
Join Date: Jan 2003
Posts: 173
Thanks: 0
Thanked 0 Times in 0 Posts
can you exactly tell me what to do about that because my english is not that good and i am not that kind of a genius with computers((

thx

big
Reply With Quote
  #8  
11-13-2003, 04:27 PM
big big is offline
Free Member
 
Join Date: Jan 2003
Posts: 173
Thanks: 0
Thanked 0 Times in 0 Posts
i have put my file in gspot and seems that i have all the codecs required...directshow claims to be able to play the file
Reply With Quote
  #9  
11-13-2003, 05:11 PM
big big is offline
Free Member
 
Join Date: Jan 2003
Posts: 173
Thanks: 0
Thanked 0 Times in 0 Posts
i have added ConvertToYV12() and it was loading in tmpgenc...now it is not loadinf anymore WHY? WHY? i am pulling my hair off...
here is my script...

AviSource("C:\\Films\Films à faire\.avi",false)
ConvertToYV12()
BlindPP(cpu=4)
Blockbuster(method="noise",detail_min=1,detail_max =3,variance=0.1,seed=1)
Convolution3D(1, 6, 12, 6, 8, 2.8, 0)
GripCrop(528, 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)
#Blockbuster(method="noise",detail_min=1,detail_ma x=10,variance=0.3,seed=5623)
GripBorders()
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
TMPGEnc: load the optimal script, error with plugins beany101uk Video Encoding and Conversion 1 05-14-2003 04:06 PM
how can i load my script in tmpgenc without the filters? big Video Encoding and Conversion 11 02-23-2003 09:35 PM
How do I load the blockbuster script so DVD2SVCD will use it? jrv331 Video Encoding and Conversion 3 11-21-2002 12:03 AM
can't get my avs script to load in tmpgenc? edmund Avisynth Scripting 3 10-25-2002 11:56 AM
How do you load the fitcd script into tmpgenc? Paul082189 Video Encoding and Conversion 1 10-11-2002 05:04 PM




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