Quantcast KVCD: Which Script do you Recommend? - digitalFAQ.com Forums [Archives]
Go Back    digitalFAQ.com Forums [Archives] > Video Production Forums > Video Encoding and Conversion

Reply
 
LinkBack Thread Tools
  #1  
02-19-2003, 11:22 AM
Bchteam Bchteam is offline
Free Member
 
Join Date: Jan 2003
Posts: 275
Thanks: 0
Thanked 0 Times in 0 Posts
First off I really know how often those questions were asked but I'm just so confused about all this script's and Filters.

Right now I use this script:

Code:
LoadPlugin("F:\Programme\AviSynth2\mpeg2dec.dll") 
LoadPlugin("F:\Programme\AviSynth2\fluxsmooth.dll") 
LoadPlugin("F:\Programme\AviSynth2\GripFit_preview.dll") 
LoadPlugin("F:\Programme\AviSynth2\blockbuster.dll") 
LoadPlugin("F:\Programme\AviSynth2\legalclip.dll") 
LoadPlugin("F:\Programme\AviSynth2\sampler.dll") 
LoadPlugin("F:\Programme\AviSynth2\convolution3d.dll") 
LoadPlugin("F:\Programme\AviSynth2\dustv5.dll") 
LoadPlugin("F:\Programme\AviSynth2\decomb.dll")
LoadPlugin("F:\Programme\AviSynth2\temporalcleanerold.dll")
LoadPlugin("C:\WINDOWS\system32\vobsub.dll")
 
mpeg2source("G:\Episode2\Blade2") 
LegalClip() 
GripCrop( width=528, height=576, overscan=2 )
GripSize() 
FaeryDust()
TemporalCleaner() 
Convolution3D(preset="movieLQ") 
Blockbuster(method="noise", variance=.3, seed=1)
VobSub("G:\Episode2\Blade2\VTS_03_0") 
GripBorders() 
LegalClip()
#Sampler(length=24) 
## MPEG size = ((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size ##
Is that OK???

If no,which script do you recommend???
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-19-2003, 12:30 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
That's perfect Bchteam
If you want more speed, try SpaceDust() instead of FaeryDust()

-kwag
Reply With Quote
  #3  
02-19-2003, 12:34 PM
Bchteam Bchteam is offline
Free Member
 
Join Date: Jan 2003
Posts: 275
Thanks: 0
Thanked 0 Times in 0 Posts
Some People wrote that some combinations of Filters aren't working well.

For example Convolution and Blockbuster.

Is that right???
Reply With Quote
  #4  
02-19-2003, 12:43 PM
Perfect Cell Perfect Cell is offline
Free Member
 
Join Date: Jan 2003
Posts: 46
Thanks: 0
Thanked 0 Times in 0 Posts
For me, convolution 3D + blockbuster + dust + gripsize works now every time, because I frameserve the script with virtualdub direct to TMPGenc.

In some other time, I was having some "illegal decimal points" error, but now the errors doesn´t appear anymore.
Reply With Quote
  #5  
02-19-2003, 03:46 PM
Bchteam Bchteam is offline
Free Member
 
Join Date: Jan 2003
Posts: 275
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks for your Help,Guys.

I think I found a good script,which keeps the balance between Filesize and Picture Quality.

Code:
LoadPlugin("F:\Programme\AviSynth2\mpeg2dec.dll") 
LoadPlugin("F:\Programme\AviSynth2\fluxsmooth.dll") 
LoadPlugin("F:\Programme\AviSynth2\GripFit_preview.dll") 
LoadPlugin("F:\Programme\AviSynth2\blockbuster.dll") 
LoadPlugin("F:\Programme\AviSynth2\legalclip.dll") 
LoadPlugin("F:\Programme\AviSynth2\sampler.dll") 
LoadPlugin("F:\Programme\AviSynth2\convolution3d.dll") 
LoadPlugin("F:\Programme\AviSynth2\dustv5.dll") 
LoadPlugin("F:\Programme\AviSynth2\decomb.dll")
LoadPlugin("F:\Programme\AviSynth2\temporalcleanerold.dll")
LoadPlugin("C:\WINDOWS\system32\vobsub.dll")
 
mpeg2source("G:\Episode2\Blade2\Blade2Project.d2v") 
LegalClip() 
GripCrop( width=528, height=576, overscan=2 )
GripSize() 
FaeryDust()
TemporalCleaner() 
Convolution3D(preset="movieHQ") 
VobSub("G:\Episode2\Blade2\VTS_03_0") 
GripBorders() 
LegalClip()
#Sampler(length=24) 
## MPEG size = ((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size ##

If I'm in a hurry I could use Spacedust as well but I think it's better to take the time for a better result.
Reply With Quote
  #6  
02-26-2003, 01:37 PM
Bchteam Bchteam is offline
Free Member
 
Join Date: Jan 2003
Posts: 275
Thanks: 0
Thanked 0 Times in 0 Posts
Hello,I have a question about which script I sould use.

Right now I have 2 scripts

Script One:

Code:
LoadPlugin("F:\Programme\AviSynth2\mpeg2dec.dll") 
LoadPlugin("F:\Programme\AviSynth2\fluxsmooth.dll") 
LoadPlugin("F:\Programme\AviSynth2\GripFit_preview.dll") 
LoadPlugin("F:\Programme\AviSynth2\blockbuster.dll") 
LoadPlugin("F:\Programme\AviSynth2\legalclip.dll") 
LoadPlugin("F:\Programme\AviSynth2\sampler.dll") 
LoadPlugin("F:\Programme\AviSynth2\convolution3d.dll") 
LoadPlugin("F:\Programme\AviSynth2\dustv5.dll") 
LoadPlugin("F:\Programme\AviSynth2\decomb.dll") 
LoadPlugin("F:\Programme\AviSynth2\temporalcleanerold.dll") 
LoadPlugin("C:\WINDOWS\system32\vobsub.dll") 

mpeg2source("G:\Episode2\Blade2\Blade2Project.d2v") 
LegalClip() 
GripCrop( width=528, height=576, overscan=2 ) 
GripSize() 
FaeryDust() 
TemporalCleaner() 
Convolution3D(preset="movieHQ") 
VobSub("G:\Episode2\Blade2\VTS_03_0") 
GripBorders() 
LegalClip() 
#Sampler(length=24) 
## MPEG size = ((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size ##
Script Two

Code:
LoadPlugin("F:\Programme\AviSynth2\mpeg2dec.dll") 
LoadPlugin("F:\Programme\AviSynth2\fluxsmooth.dll") 
LoadPlugin("F:\Programme\AviSynth2\GripFit_preview.dll") 
LoadPlugin("F:\Programme\AviSynth2\blockbuster.dll") 
LoadPlugin("F:\Programme\AviSynth2\legalclip.dll") 
LoadPlugin("F:\Programme\AviSynth2\sampler.dll") 
LoadPlugin("F:\Programme\AviSynth2\convolution3d.dll") 
LoadPlugin("F:\Programme\AviSynth2\dustv5.dll") 
LoadPlugin("F:\Programme\AviSynth2\decomb.dll") 
LoadPlugin("F:\Programme\AviSynth2\temporalcleanerold.dll")
LoadPlugin("C:\WINDOWS\system32\vobsub.dll") 

mpeg2source("E:\the others\theothers.d2v") 
LegalClip() 
GripCrop( width=528, height=576, overscan=2 ) 
GripSize() 
FaeryDust()
TemporalCleaner()
Convolution3D(preset="movieHQ")
Blockbuster(method="noise", variance=.4, seed=1) 
VobSub("E:\the others\VTS_02_0")
GripBorders()    
LegalClip()
#Sampler(length=24) 
## MPEG size = ((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size ##
The difference between those scripts is that in the first script,Blockbuster is not used.

Now my Question:

Should I use the first script and a higher cq value or the second script with a lower cq value but with Blockbuster???
Reply With Quote
  #7  
02-27-2003, 02:25 AM
Bchteam Bchteam is offline
Free Member
 
Join Date: Jan 2003
Posts: 275
Thanks: 0
Thanked 0 Times in 0 Posts
no one there to help me???
Reply With Quote
  #8  
02-27-2003, 02:30 AM
heyitsme heyitsme is offline
Free Member
 
Join Date: Jun 2002
Location: pullman, WA
Posts: 129
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to heyitsme
With the resolution you are using there is no need for the blockbuster filter. Block pretty much disappear at the res with a sufficient CQ. The only way i would suggest you use bb is if you had a very dark movie. Hope that answers your question.
__________________
Eat drink and be merry for tomorrow we die
Reply With Quote
  #9  
02-27-2003, 02:53 AM
Bchteam Bchteam is offline
Free Member
 
Join Date: Jan 2003
Posts: 275
Thanks: 0
Thanked 0 Times in 0 Posts
Correct me if I'm wrong but I heard that only the Sharpen method of Blockbuster is not effective at those high resolutions.The Noise Method should work at those High resolutions as well,but I'm not sure about that.
Reply With Quote
  #10  
02-27-2003, 03:02 AM
heyitsme heyitsme is offline
Free Member
 
Join Date: Jun 2002
Location: pullman, WA
Posts: 129
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to heyitsme
I never notice any blocks in the black areas anymore when i encode at kvcdx3. I notice the blocks at lower res and that is when i use BB. I dont know if this is the case for everybody but when i look on my monitor is see very few if any blocks on dark scenes with the kvcdx3. This is just my suggestion though.

Branden
__________________
Eat drink and be merry for tomorrow we die
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
recommend DVD player to play my VCD/KVCD? dug175 Players, DVRs, Media Centers 5 07-20-2003 04:40 PM
KVCD: What resolution do you recommend? Wolfi Video Encoding and Conversion 4 05-24-2003 04:14 PM
kvcd: Which CQ value is the lowest one you recommend Jack Video Encoding and Conversion 3 01-23-2003 04:48 AM
Fast action - What kvcd Template would you recommend?? Jellygoose Video Encoding and Conversion 2 12-12-2002 09:39 AM
KVCD: recommend to fit the whole movie to one 80min cd-r? dragonballyobaz Video Encoding and Conversion 3 08-25-2002 01:26 PM




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