Quantcast Another VCD to KVCD Script Error - digitalFAQ.com Forums [Archives]
  #1  
04-25-2004, 02:29 PM
glent2k3 glent2k3 is offline
Free Member
 
Join Date: Oct 2003
Location: always here
Posts: 71
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to glent2k3
i want to convert some svcd's in to kdvd's using this script
LoadPlugin("C:\Program Files\MovieStacker\Filters\MPEG2Dec3.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\Undot.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\Convolution3DYV12.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\BlockBuster.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\GripFit_YV12.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\DctFilter.dll")

a=directshowsource("D:\Movies\moovie.mpg").killaud io()
b=directshowsource("D:\Movies\moovie.mpg").killaud io()
a++b
Undot()
Blockbuster(method="noise",detail_min=1,detail_max =3,variance=0.1,seed=1)
GripCrop(704, 576, overscan=2, source_anamorphic=false)
GripSize(resizer="BilinearResize")
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()




if I add blindpp i get and error saying "work in yv12 color space" line 11
with convoultion 3d in the scritp i get error
convoultion 3d only suppourts yv12 color format only

im using avisnyth 2.54 and have open the avs with bs player and vdub
I have also tried adding ConvertToYUY2, ConvertToYV12 with no scucess...the script works fiene without these two filters ....but do I need them
__________________
put your liteon dvdr in the bin and buy an NEC 2500A
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  
04-25-2004, 02:37 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
1 - Now you edited post, but in original one, you have chapter 3 after chapter 4. Is it ok?
2 - Where do you put row converttoyv12?
Reply With Quote
  #3  
04-25-2004, 03:20 PM
glent2k3 glent2k3 is offline
Free Member
 
Join Date: Oct 2003
Location: always here
Posts: 71
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to glent2k3
at the end of the script


quote "1 - Now you edited post, but in original one, you have chapter 3 after chapter 4. Is it ok?"
__________________
put your liteon dvdr in the bin and buy an NEC 2500A
Reply With Quote
  #4  
04-25-2004, 08:45 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 glent2k3
at the end of the script


quote "1 - Now you edited post, but in original one, you have chapter 3 after chapter 4. Is it ok?"
With post like this I must to be magician to understand

You must to put it in other place:
Quote:
LoadPlugin("C:\Program Files\MovieStacker\Filters\MPEG2Dec3.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\Undot.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\Convolution3DYV12.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\BlockBuster.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\GripFit_YV12.dll")
LoadPlugin("C:\Program Files\MovieStacker\Filters\DctFilter.dll")

a=directshowsource("D:\Movies\moovie.mpg").killaud io()
b=directshowsource("D:\Movies\moovie.mpg").killaud io()
a++b
converttoyv12()
Undot()
Blockbuster(method="noise",detail_min=1,detail_max =3,variance=0.1,seed=1)
GripCrop(704, 576, overscan=2, source_anamorphic=false)
GripSize(resizer="BilinearResize")
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()
You must to give video to this filters, in yv12 color space, then you can't put it in the end of script, you must to put it before apply filters.
Reply With Quote
  #5  
04-26-2004, 02:06 AM
glent2k3 glent2k3 is offline
Free Member
 
Join Date: Oct 2003
Location: always here
Posts: 71
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to glent2k3
lol thnx!
__________________
put your liteon dvdr in the bin and buy an NEC 2500A
Reply With Quote
  #6  
04-26-2004, 11:44 AM
Fluffbutt Fluffbutt is offline
Free Member
 
Join Date: Apr 2004
Posts: 189
Thanks: 0
Thanked 0 Times in 0 Posts
Another newbie Q - would you need to convert back to say RGB/RGB24/RGB32 or whatever at the end of the script? Or would that depend on the encoder you use (mencoder or tmpgenc here)?
__________________
|
Meeow!
Reply With Quote
  #7  
04-26-2004, 02:31 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 Fluffbutt
Another newbie Q - would you need to convert back to say RGB/RGB24/RGB32 or whatever at the end of the script? Or would that depend on the encoder you use (mencoder or tmpgenc here)?
Except related to encoder needs, you don't have to convertback the color space. Neither mencoder nor tmpgenc needs to convertback. Mencoder prefers yuv2, cce must to be yuv2.

In this case I do advise putting converttoyv12() because it need it as your sources are mpg, but for a general purpose it is better to configure your divx/xvid codecs.
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
TMPGEnc: Error using script... loser79 Video Encoding and Conversion 19 08-27-2004 06:51 AM
avisynth script error in ToK Max0d Video Encoding and Conversion 3 11-30-2003 04:53 PM
Error en un script de lo mas normal CaLaFaT Convertir y Codificar Video (Español) 7 07-12-2003 06:41 AM
KVCD: Error in my script - Unrecognized exception? irshliquor Video Encoding and Conversion 65 05-13-2003 01:16 AM
KVCD: AviSynth Script Error? Frunobulax Video Encoding and Conversion 4 04-04-2003 01:20 AM

Thread Tools



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