digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Avisynth Scripting (http://www.digitalfaq.com/archives/avisynth/)
-   -   Avisynth: Problem in testing .avs file (http://www.digitalfaq.com/archives/avisynth/8506-avisynth-problem-testing.html)

WOWIEGURL 03-08-2004 05:05 AM

Problem in testing .avs file
 
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??? :lol: 8O :x

Dialhot 03-08-2004 05:46 AM

Re: Problem in testing .avs file
 
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,8)[/quote]
These values are completyl wrong. You will obtain a video that will be (480+8+8 x 430+8+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")

WOWIEGURL 04-07-2004 02:44 AM

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.

jorel 04-07-2004 07:06 AM

[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

WOWIEGURL 04-07-2004 08:01 AM

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.

WOWIEGURL 04-09-2004 05:44 AM

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?

jorel 04-09-2004 05:59 AM

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!

WOWIEGURL 04-09-2004 06:16 AM

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.

Jellygoose 04-09-2004 06:39 AM

Here's the link for ATC :!: :!:

http://www.avisynth.org/warpenterpri...l_20030118.zip

WOWIEGURL 04-09-2004 06:41 AM

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!!

bigggt 04-09-2004 08:02 AM

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?

WOWIEGURL 04-09-2004 03:32 PM

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?

bigggt 04-09-2004 03:37 PM

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 :D

Dialhot 04-09-2004 10:04 PM

Quote:

Originally Posted by bigggt
To be honest i always just use what moviestacker says and never had a problem :D

And you are right :!:

Values found by wowiegurl are completly nuts.

WOWIEGURL 04-11-2004 07:43 PM

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 :D

Where exactly in movie stacker did you find it? can you post a pic?

Thanks

bigggt 04-11-2004 08:12 PM

Don't know how to add pics :oops: 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()


WOWIEGURL 04-12-2004 01:27 AM

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?

bigggt 04-12-2004 11:26 AM

Use the slider bar right beside it,you need to have gripfit unchecked


All times are GMT -5. The time now is 09:49 AM  —  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.