Quantcast Error on Script - Blind Pp:Need Mod 16 Height? - digitalFAQ.com Forums [Archives]
  #1  
02-17-2004, 08:26 PM
khusru khusru is offline
Free Member
 
Join Date: Jan 2004
Location: Southgate, North London
Posts: 263
Thanks: 0
Thanked 0 Times in 0 Posts
my script is showing an error and wont load my avi file, not sure what this means so please help??

This is the error message:

Blind pp:need mod 16 height
(c:\black.avs, line 2)

and heres my scrpt

AviSource("c:\chris.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, 576, overscan=2, 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()

Also what does the second line of the script do ( blind pp)?
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  
02-17-2004, 08:51 PM
Prodater64 Prodater64 is offline
Free Member
 
Join Date: Mar 2003
Location: Palma de Mallorca - España
Posts: 2,925
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by khusru
my script is showing an error and wont load my avi file, not sure what this means so please help??

This is the error message:

Blind pp:need mod 16 height
(c:\black.avs, line 2)

and heres my scrpt

AviSource("c:\chris.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, 576, overscan=2, 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()

Also what does the second line of the script do ( blind pp)?
Hi: It means that your movie's height isn't multiplo of 16. You must to use addborders just like this (see the red line):

AviSource("c:\chris.avi",false)
Addborders(0,0,x,0)
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, 576, overscan=2, 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()

where x is the number that you must to sum at your movie height. For the width the correction would be Addborders(0,0,0,x)
Blindpp is a "blocks killer", but not sure, sorry.
I hope this help you.
I'll see you.
Prodater64


@Dialhot
Excuse me, i'm correcting the mistake.
Reply With Quote
  #3  
02-17-2004, 09:47 PM
khusru khusru is offline
Free Member
 
Join Date: Jan 2004
Location: Southgate, North London
Posts: 263
Thanks: 0
Thanked 0 Times in 0 Posts
im not sure wot u mean, do i add the line:
Addborders(0,x,0,0)

What numbers can i use in the brackets?
Reply With Quote
  #4  
02-17-2004, 09:59 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
You can read, do you ? Everything is well explained in the thread where you found the script

Taking the script is one thing. READING the instructions an other.

http://www.kvcd.net/forum/viewtopic.php?t=7223
Reply With Quote
  #5  
02-17-2004, 10:12 PM
khusru khusru is offline
Free Member
 
Join Date: Jan 2004
Location: Southgate, North London
Posts: 263
Thanks: 0
Thanked 0 Times in 0 Posts
just read another post with the same problem with mod 16, and dialhot u explained clearly how 2 sort this out, so thanks, if i have any problems il let u know, cheers
Reply With Quote
  #6  
02-18-2004, 04:49 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Be carreful that the hints changed recently. Before I suggested to use addborders(left,top,0,0), now it's addborders(0,0,right,bottom).

The things don't change, that's only that is better to use the parameters on these 2 sides than the previous ones.
Reply With Quote
  #7  
02-18-2004, 07:57 AM
vmesquita vmesquita is offline
Invalid Email / Banned / Spammer
 
Join Date: May 2003
Posts: 3,726
Thanks: 0
Thanked 0 Times in 0 Posts
Why?
Reply With Quote
  #8  
02-18-2004, 08:06 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
Look at there :

http://www.kvcd.net/forum/viewtopic.php?p=62533#62533
Reply With Quote
  #9  
02-18-2004, 10:39 AM
khusru khusru is offline
Free Member
 
Join Date: Jan 2004
Location: Southgate, North London
Posts: 263
Thanks: 0
Thanked 0 Times in 0 Posts
okay i havnt tried on my actual source yet, but dialhot can u tell me if this is alright, im just seeing if iv worked out the method

Example

If my source is 478*318
i need to reach the next values that are divisible by 16
so it becomes 480*320

480/16=30 320/16=20

so i just add this line just after avisource

Addborders(3,2,0,0)

Is this alright dialhot??
Reply With Quote
  #10  
02-18-2004, 10:54 AM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
you surely did an error as 480-478 = 2 and not 3.
But except that, you are right.

Use "Addborders(2,2,0,0)" or better "Addborders(0,0,2,2)".
Reply With Quote
  #11  
02-18-2004, 11:58 AM
khusru khusru is offline
Free Member
 
Join Date: Jan 2004
Location: Southgate, North London
Posts: 263
Thanks: 0
Thanked 0 Times in 0 Posts
thanks mate, finally got the hang of it

one last question, whats the difference between these two lines in terms of quality

quote "Use "Addborders(2,2,0,0)" or better "Addborders(0,0,2,2)".
Reply With Quote
  #12  
02-18-2004, 12:05 PM
Dialhot Dialhot is offline
Free Member
 
Join Date: May 2003
Posts: 10,463
Thanks: 0
Thanked 0 Times in 0 Posts
In theory (never had the time to test and won't have as I just lost a 160 GB HD that was almost full of waiting jobs to process ) blindpp should works better with the second line.

What is sure is that there is no chance than first one is better than second, and a little chance that second one is a little better than first one. So make your choice
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
BlindPP: Need mod16 height daemon Conversão e Codificação de Vídeo (Português) 19 10-25-2004 09:24 AM
Erro!!! Blind PP: Work in YV12 colorspace. Ajuda! Petso Conversão e Codificação de Vídeo (Português) 3 05-30-2004 11:32 PM
Script Error - Blind PP: Work in YV12 colorspace? beany101uk Avisynth Scripting 13 12-15-2003 01:53 PM
DVD2SVCD: BLIND PP Need Mod 16 height TheDJ Video Encoding and Conversion 31 12-11-2003 10:57 AM
BlindPP error - mod16 height? zes Video Encoding and Conversion 8 10-10-2003 10:07 AM

Thread Tools



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