Quantcast Avisynth: Problem in Testing .AVS File - digitalFAQ.com Forums [Archives]
Go Back    digitalFAQ.com Forums [Archives] > Video Production Forums > Avisynth Scripting

Reply
 
LinkBack Thread Tools
  #1  
03-08-2004, 05:05 AM
WOWIEGURL WOWIEGURL is offline
Free Member
 
Join Date: Sep 2003
Posts: 384
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to WOWIEGURL
This is my new script


AviSource("D:\Incoming\DVDRip.Xvid.avi",false)
AddBorders (0,0,4,2)
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(352,240,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'm getting BlindPP:Need 16 width

and I'n still having problems with line 3

I reread the post on the scripts and added this AddBorders (0,0,4,2) and changed somethings


My source resolution is 544*304 duration is 1hr & 45 mins

HELP???
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-08-2004, 05:46 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 WOWIEGURL
is atc.dlll the same as autocrop?
No it is not.
ATC stands for "Another Temporal Compensator". This filter has nothing to do with Autocrop().

Quote:
because its working and after I remove the loadplugin lines I get "Blind PP : Need mod 10 height H:\Documents and Settings\Franky\Desktop\movie.avs,line 5"
It is not "mod10" bur "mod16" and everything is explained there :
http://www.kvcd.net/forum/viewtopic.php?t=7223

Quote:
what did I do wrong?
You didn't read the instructions

Quote:
The script looks like this now
Why do you have script V3 insteed of V4 ? Problem with the last one ?

Quote:
AviSource("D:\eMule\Incoming\movie.DVDRip.avi",aud io=false)
ConvertToYv12()
It is not normal to have this line if you are doing Divx upper than 4.x or Xvid. Upgrade your codec. If it is a Divx3.11, okay.

LanczosResize(480, 430, 1, 0, 542, 304)
AddBorders(8,8,8,[/quote]
These values are completyl wrong. You will obtain a video that will be (480+8+8 x 430+8+ that is (496 x 446). What kind of resolution is that ?
How did you determine the values to put in LanczosResize and Addborders ?

Quote:
Also why do I neeed to delete the load plugin lines. Cause all the other scripts I've seen have those lines included.
Because they weren't mandatory even in the other scripts AND you did an error in you plugin line (you wrote "MPEGDec3.d11" and not "MPEGDec3.dll")
Reply With Quote
  #3  
04-07-2004, 02:44 AM
WOWIEGURL WOWIEGURL is offline
Free Member
 
Join Date: Sep 2003
Posts: 384
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to WOWIEGURL
Quote:
No it is not.
ATC stands for "Another Temporal Compensator". This filter has nothing to do with Autocrop().
where do I find this? I went to the download links page you have listed but can't find it.
Reply With Quote
  #4  
04-07-2004, 07:06 AM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
[quote="WOWIEGURL"]
Quote:
where do I find this?
here:
http://www.avisynth.org/warpenterprises/

...another link with lots of "everything" :
http://www.kvcd.net/forum/viewtopic.php?t=2553
Reply With Quote
  #5  
04-07-2004, 08:01 AM
WOWIEGURL WOWIEGURL is offline
Free Member
 
Join Date: Sep 2003
Posts: 384
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to WOWIEGURL
Since another temporal smoother is built into mpegdec3 I don't need to download another temporal smoother do I? to make the avs file work properly.
Reply With Quote
  #6  
04-09-2004, 05:44 AM
WOWIEGURL WOWIEGURL is offline
Free Member
 
Join Date: Sep 2003
Posts: 384
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to WOWIEGURL
Okay I've got this in my script now

AviSource("D:\Incoming\movie.DVDRip.Xvid.avi",fals e)
AddBorders (0,0,34,19)
ConvertToYV12()
LanczosResize(352, 174, 0, 0, 544, 304)
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)
ATC(2,3,0,5,false)
Undot()
TemporalSoften(2,7,7,3,2)
DCTFilter(1,1,1,1,1,1,0.5,0)

I've added the AddBorders line as mentioned in the otpimal script post. My source resolution is 544*304, so I've done 544/16 = 34 304/16=19

I still have the problem with mod 16.

Please help!!!

Rendalunit says to replace the GripBorders line in the script. How do I do that? what do I replace it with?
Reply With Quote
  #7  
04-09-2004, 05:59 AM
jorel jorel is offline
Invalid Email / Banned / Spammer
 
Join Date: Aug 2002
Location: Brasil - MG - third stone from the sun
Posts: 5,570
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by WOWIEGURL
Okay I've got this in my script now
I still have the problem with mod 16.
i'm still thinking that you have wrong filters versions!
Reply With Quote
  #8  
04-09-2004, 06:16 AM
WOWIEGURL WOWIEGURL is offline
Free Member
 
Join Date: Sep 2003
Posts: 384
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to WOWIEGURL
the line with the problem is BlindPP(cpu=4) And I have all the dll's except for the another temporal compensator. which I still can't find.
Reply With Quote
  #9  
04-09-2004, 06:39 AM
Jellygoose Jellygoose is offline
Free Member
 
Join Date: Jun 2002
Location: Germany
Posts: 1,288
Thanks: 0
Thanked 0 Times in 0 Posts
Here's the link for ATC

http://www.avisynth.org/warpenterpri...l_20030118.zip
__________________
j3llyG0053
Reply With Quote
  #10  
04-09-2004, 06:41 AM
WOWIEGURL WOWIEGURL is offline
Free Member
 
Join Date: Sep 2003
Posts: 384
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to WOWIEGURL
still have the same problem as above. PLEASE HELP !! I'M NEW AT THIS AND THIS IS THE ONLY PART I'M STUCK ON SO FAR!!. I'm about to give up!!
Reply With Quote
  #11  
04-09-2004, 08:02 AM
bigggt bigggt is offline
Free Member
 
Join Date: Mar 2003
Location: IamCanadian
Posts: 848
Thanks: 0
Thanked 0 Times in 0 Posts
As far as the gripborder question

This is Phils's V4 script

Code:
AviSource("PATH\NAME.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(WIDTH, HEIGHT, 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_max=10,variance=0.3,seed=5623) 
GripBorders()
The gripborder line is replaced with your add borders line like this

Code:
AviSource("D:\Incoming\DVDRip.Xvid.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) 
LanczosResize(352, 174, 0, 0, 544, 304) 
Undot() 
TemporalSoften(2,7,7,3,2) 
DCTFilter(1,1,1,1,1,1,0.5,0) 
AddBorders (0,0,4,2)
Do you use moviestacker because it makes this part very simple

Is this what you mean?
Reply With Quote
  #12  
04-09-2004, 03:32 PM
WOWIEGURL WOWIEGURL is offline
Free Member
 
Join Date: Sep 2003
Posts: 384
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to WOWIEGURL
Quote:
Originally Posted by bigggt
As far as the gripborder question

This is Phils's V4 script

Code:
AviSource("PATH\NAME.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(WIDTH, HEIGHT, 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_max=10,variance=0.3,seed=5623) 
GripBorders()
The gripborder line is replaced with your add borders line like this

Code:
AviSource("D:\Incoming\DVDRip.Xvid.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) 
LanczosResize(352, 174, 0, 0, 544, 304) 
Undot() 
TemporalSoften(2,7,7,3,2) 
DCTFilter(1,1,1,1,1,1,0.5,0) 
AddBorders (0,0,4,2)
Do you use moviestacker because it makes this part very simple

Is this what you mean?
Thanks SOO MUCH BIGGGT!! I guess I had the last line in the wrong place which is it didn;t work. by the way does the with& hieght in addborders have to be rounded off to the nearest 0's?
Reply With Quote
  #13  
04-09-2004, 03:37 PM
bigggt bigggt is offline
Free Member
 
Join Date: Mar 2003
Location: IamCanadian
Posts: 848
Thanks: 0
Thanked 0 Times in 0 Posts
Your Welcome

Quote:
by the way does the with& hieght in addborders have to be rounded off to the nearest 0's?
To be honest i always just use what moviestacker says and never had a problem
Reply With Quote
  #14  
04-09-2004, 10:04 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
To be honest i always just use what moviestacker says and never had a problem
And you are right

Values found by wowiegurl are completly nuts.
Reply With Quote
  #15  
04-11-2004, 07:43 PM
WOWIEGURL WOWIEGURL is offline
Free Member
 
Join Date: Sep 2003
Posts: 384
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to WOWIEGURL
Quote:
Originally Posted by bigggt
Your Welcome

Quote:
by the way does the with& hieght in addborders have to be rounded off to the nearest 0's?
To be honest i always just use what moviestacker says and never had a problem
Where exactly in movie stacker did you find it? can you post a pic?

Thanks
Reply With Quote
  #16  
04-11-2004, 08:12 PM
bigggt bigggt is offline
Free Member
 
Join Date: Mar 2003
Location: IamCanadian
Posts: 848
Thanks: 0
Thanked 0 Times in 0 Posts
Don't know how to add pics but its easy to decrsibe

Open moviestacker

Find your source
Go to the last tab Avisynth script
Make sure gripfit is unchecked and you will see something like this in the box

Code:
Mpeg2Source("C:\FAMILYGUY_V2_D3\guy.d2v")
LegalClip()
BicubicResize(496, 446, 1/3, 1/3, 4, 0, 712, 480)
TemporalSmoother(1, 2)
MergeChroma(blur(1.58))
MergeLuma(blur(0.2))
BlockBuster(method="noise", detail_max=7, variance=0.8, seed=1)
AddBorders(16, 17, 16, 17)
LegalClip()
Reply With Quote
  #17  
04-12-2004, 01:27 AM
WOWIEGURL WOWIEGURL is offline
Free Member
 
Join Date: Sep 2003
Posts: 384
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via ICQ to WOWIEGURL
Okay.. In the Creating a script for Avisynth 2.5x with moviestacker guide. In the resize and resolution screen.Part 3.D - setting the resolution to be divisable by 16. The picture shows round to : 16 and 16 block optimized. In my screen it shows round to :32 & block optimised : 16. HOw do I change the 32 to 16?
Reply With Quote
  #18  
04-12-2004, 11:26 AM
bigggt bigggt is offline
Free Member
 
Join Date: Mar 2003
Location: IamCanadian
Posts: 848
Thanks: 0
Thanked 0 Times in 0 Posts
Use the slider bar right beside it,you need to have gripfit unchecked
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
Avisynth: Script problem, unable to open d2v file khusru Avisynth Scripting 0 02-13-2006 09:48 PM
Avisynth: Choppiness when testing avs? WOWIEGURL Avisynth Scripting 1 01-21-2005 07:16 AM
Avisynth: Something weird in mpg when testing .AVS file WOWIEGURL Avisynth Scripting 4 03-08-2004 04:08 AM
Problem trying to load an avi file into avisynth ftin Avisynth Scripting 2 06-16-2003 02:25 PM
Testing of SweetHead begins..... black prince Audio Conversion 8 11-01-2002 01:06 AM




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