Quantcast Avisynth: Script Unsupported? - digitalFAQ.com Forums [Archives]
  #1  
03-09-2004, 08:48 PM
shanum shanum is offline
Free Member
 
Join Date: Mar 2004
Posts: 29
Thanks: 0
Thanked 0 Times in 0 Posts
hi all... i'm stuck...

here's my script based on Kwag's scipt. can anybody tell me why TMPGEnc says it cannot open, or is unsupported??

Code:
 ## DLL Section ## 
# 
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\MPEG2Dec3.dll") 
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Grip.dll") 
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\STMedianFilter.dll") 
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\asharp.dll") 
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\unfilter.dll") 
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\undot\undot.dll") 
# 
#### 
## Main section and static filters ### 
# 
Mpeg2Source("C:\Movie Work\POC.d2v") 
LanczosResize(528,368,16,0,688,480)
AddBorders(0,56,0,56)
# 
undot() 
Limiter() 
asharp(1, 4) 
GripCrop(528,576) 
GripSize(resizer="LanczosResize") 
STMedianFilter(3, 3, 1, 1 ) 
MergeChroma(blur(1.5)) 
MergeLuma(blur(0.1)) 
# 
# 

## Linear Motion Adaptive Filtering ## 
# 
# ( Portions from AviSynth's manual ) 
# This will apply variable temporalsoften 
# and variable blur. 
# Both filters are active at all times, and work inversely proportional to the 
# activity, measured from current frame to next frame. 

ScriptClip(" nf = YDifferenceToNext()" +chr(13)+ "unfilter( -(fmin(round(nf)*2, 100)), -(fmin(round(nf)*2, 100)) ).TemporalSoften( fmin( round(2/nf), 6), round(1/nf) , round(3/nf) , 1, 1)  ") 

# 
# 
# 

GripBorders() 
#LetterBox( Your_Values_Here ) # Depends on situation. Use MovieStacker! 
Limiter() 

# 
# 
## Functions ### 

function fmin( int f1, int f2) { 
  return ( f1<f2 ) ? f1 : f2 
} 
  
# 
####
help pls........
__________________
Anyone for some Bob Marley?!
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  
03-09-2004, 08:50 PM
kwag kwag is offline
Free Member
 
Join Date: Apr 2002
Location: Puerto Rico, USA
Posts: 13,537
Thanks: 0
Thanked 0 Times in 0 Posts
Did you install AviSynth 2.5x

Edit: Did you also install ReadAVS.dll

-kwag
Reply With Quote
  #3  
03-09-2004, 09:08 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
And did you installed an YV12 codec (as Xvid) ?
Reply With Quote
  #4  
03-09-2004, 09:23 PM
bigggt bigggt is offline
Free Member
 
Join Date: Mar 2003
Location: IamCanadian
Posts: 848
Thanks: 0
Thanked 0 Times in 0 Posts
Hi shanum

When i first started doing kvcd's tmpge would open no problem even with errors but i would get red words(telling me my error)

But now if i have any error in the script or misssing .dll's or anything when i open tmpge i get unsuported and it won't open.

Load your script into vdub or WMP and see if it reports an error

Just a suggestion
Reply With Quote
  #5  
03-09-2004, 09:25 PM
shanum shanum is offline
Free Member
 
Join Date: Mar 2004
Posts: 29
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by kwag
Did you install AviSynth 2.5x

Edit: Did you also install ReadAVS.dll

-kwag
i installed avisynth 2.5... as for ReadAVS.dll... i havent.. is that an avisynth filter? or something for TMPGEnc?? where do i find it?
__________________
Anyone for some Bob Marley?!
Reply With Quote
  #6  
03-09-2004, 09:27 PM
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 shanum
i installed avisynth 2.5... as for ReadAVS.dll... i havent.. is that an avisynth filter? or something for TMPGEnc?? where do i find it?
That is the plugin that allows tmpgenc to load avs.
Do a search on the forum with "readavs AND rar" as pattern.
Reply With Quote
  #7  
03-09-2004, 09:29 PM
shanum shanum is offline
Free Member
 
Join Date: Mar 2004
Posts: 29
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by bigggt
Hi shanum

When i first started doing kvcd's tmpge would open no problem even with errors but i would get red words(telling me my error)

But now if i have any error in the script or misssing .dll's or anything when i open tmpge i get unsuported and it won't open.

Load your script into vdub or WMP and see if it reports an error

Just a suggestion
for WMP > no suitable decpmressor could be found..
for Vdub > couldnt locate decompressor for format YV12...

how do i solve this problem?

thanks in advance
__________________
Anyone for some Bob Marley?!
Reply With Quote
  #8  
03-09-2004, 09:30 PM
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 bigggt
But now if i have any error in the script or misssing .dll's or anything when i open tmpge i get unsuported and it won't open
Error message are generated in RGB32 and TMPGENC can't display that (it does RGB24 only). This behaviour indicates that you miss a color space convertor that is normally installed with Directx9 (quartz.dll).
But that's nbot really a problem as RGB32 is never used for other things than that and you already found a workaround
Reply With Quote
  #9  
03-09-2004, 09:31 PM
bigggt bigggt is offline
Free Member
 
Join Date: Mar 2003
Location: IamCanadian
Posts: 848
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Phil
And did you installed an YV12 codec (as Xvid) ?
Do you have xvid installed

Edit-You know thats funny Phil i was just looking up what codecs i have through avi codec not an hour ago and man i seem to have too many(37 under video codecs) but one says file missing but its MP4S

The same thing happens to me when i use vdub i used to get the error message in red but now i just get a pop up

Thanx for clearing this up and what do i do re install direct X
Reply With Quote
  #10  
03-09-2004, 09:36 PM
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 shanum
for Vdub > couldnt locate decompressor for format YV12...

how do i solve this problem?

thanks in advance
Perhaps you can start by READING what we already post here ?
I answered this question at 3.08am !
Reply With Quote
  #11  
03-09-2004, 09:40 PM
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 bigggt
The same thing happens to me when i use vdub i used to get the error message in red but now i just get a pop up
This is normal, and it is a new feature of last release of vdub

With this you avoid problems of unreadeable message that we had sometimes when the A/R was wrong.
Reply With Quote
  #12  
03-09-2004, 09:42 PM
shanum shanum is offline
Free Member
 
Join Date: Mar 2004
Posts: 29
Thanks: 0
Thanked 0 Times in 0 Posts
searched for 'readavs and rar' but no english threads came up... browsed thru the others but couldnt find any links...

i have Xvid codecs installed....

how can i change TMPGEnc to RBG24... i cant load the avs file to start with..
__________________
Anyone for some Bob Marley?!
Reply With Quote
  #13  
03-09-2004, 09:45 PM
bigggt bigggt is offline
Free Member
 
Join Date: Mar 2003
Location: IamCanadian
Posts: 848
Thanks: 0
Thanked 0 Times in 0 Posts
Thanx buddy

edit

@ shanum

You can find the readavs file here

http://www.avisynth.org/warpenterprises/
Reply With Quote
  #14  
03-09-2004, 09:57 PM
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 shanum
I have Xvid codecs installed....
Tell that to wmp and Vdub so !
I suggest you to reinstall it properly and to configure it to output in YV12.

Quote:
how can i change TMPGEnc to RBG24...
Let's forget this part off my post that was for bigggt and btw taht you clearly didn't understand.

Quote:
i cant load the avs file to start with..
We know ! We understood that already and in case you didn't notice, we are trying to help you
Reply With Quote
  #15  
03-09-2004, 10:51 PM
shanum shanum is offline
Free Member
 
Join Date: Mar 2004
Posts: 29
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
We know ! We understood that already and in case you didn't notice, we are trying to help you
thanks everybody.. i got TMPGEnc working... sorry if a was being a bit daft but couldnt help it really appreciate all the help... u know i might just get the hang of all of this someday

goodnight peeps..
__________________
Anyone for some Bob Marley?!
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
M2V File - canNot Open, or Unsupported? novakry Video Encoding and Conversion 9 11-08-2005 02:23 PM
tmpgenc cannot open or are unsupported? cooldog Video Encoding and Conversion 10 01-26-2004 06:59 AM
Avisynth: Difference between MA script and optimal script? mistermickster Avisynth Scripting 2 08-01-2003 09:36 AM
TMPGEnc: unsupported error from Avisynth bigggt Video Encoding and Conversion 1 04-13-2003 11:36 PM
TMPGEnc: D2V file Unsupported Kristy Video Encoding and Conversion 5 01-20-2003 05:36 AM

Thread Tools



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