Quantcast Grayed Out Area - digitalFAQ.com Forums [Archives]
Go Back    digitalFAQ.com Forums [Archives] > Video Production Forums > Avisynth Scripting

Reply
 
LinkBack Thread Tools
  #1  
12-24-2002, 02:37 AM
Bud Bud is offline
Free Member
 
Join Date: Apr 2002
Location: Hawaii
Posts: 241
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Bud
Kwag,

I took a look at the KVCD Predictor, the one I have is .01b, when I open , the get movie length from soucre is grayed out, all others appear to be ok. So based on your recent PM to me I can't select the d2v file, I can get the Audio size ok. Is there another version out there? Secpmd question is how do I know how much of the movie to use in order to get teh sample size? Many thanks for your help....

Bud
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  
12-24-2002, 11:06 AM
SansGrip SansGrip is offline
Free Member
 
Join Date: Nov 2002
Location: Ontario, Canada
Posts: 1,135
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by Bud
Is there another version out there?
Yep, look in the KVCD Predictor thread for version 0.2.
Reply With Quote
  #3  
12-24-2002, 03:28 PM
Bud Bud is offline
Free Member
 
Join Date: Apr 2002
Location: Hawaii
Posts: 241
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Bud
SansGrip,

Thanks...have the latest. Bare with me on this as I am the new guy when it comes to using the KVCD Predictor. Here is the avs script I came up with:

LoadPlugin("C:\encoding\MPEG2DEC.dll")
LoadPlugin("C:\encoding\FluxSmooth.dll")
LoadPlugin("C:\encoding\Sampler.dll")
LoadPlugin("C:\encoding\Blockbuster.dll")
LoadPlugin("C:\encoding\LegalClip.dll")
mpeg2source("D:\K9_PI_NTSC_FINAL\VIDEO_TS\K9.d2v")
FluxSmooth()
Blockbuster( method="noise", detail_min=1, detail_max=10, variance=1 )
Blockbuster( method="sharpen", detail_min=20, detail_max=90, strength=2)
LegalClip()
BicubicResize(448,350,1/3,1/3,14,0,692,480)
#TemporalSmoother(2,2)
AddBorders(16,65,16,65)
#Trim(0,139804).FadeOut(150)
#ConvertToRGB24 # For TMPGEnc or VFAPI
#ResampleAudio(44100) # CCE 2.5 'crashfix' for Athlons
#== If you want this 'fix' permanently, edit the INI-file:
#== Under [AVSscript] set CCEcrashfix=1

Now the question is will TEMPGnc stop when it reaches the required sample size? If so what am I missing because when I do run this through TEMPG it will attempt to process the full movie. so I don't have the size I need to do the sample. The 2nd question is after I get the predicted size I then go the settings in TEMPG and change the CQ-VBR to the recommended setttings right? Again many thanks for all your assistance.

Bud
Reply With Quote
  #4  
12-24-2002, 03:32 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
Quote:
Originally Posted by Bud

Now the question is will TEMPGnc stop when it reaches the required sample size?
You must add "Sampler()" to your last line in the script.
Quote:
The 2nd question is after I get the predicted size I then go the settings in TEMPG and change the CQ-VBR to the recommended setttings right? Again many thanks for all your assistance.

Bud
Yes

-kwag
Reply With Quote
  #5  
12-24-2002, 04:10 PM
Bud Bud is offline
Free Member
 
Join Date: Apr 2002
Location: Hawaii
Posts: 241
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Bud
Working on it....the predicted sample size was 10.32MB, should this be place in the script to tell TEMPG where to stop the sample and if so where in the script would I place this? I have tried some things but TEMPG will keep trying to run the complete process going pass the sample make. Thanks again

Bud
Reply With Quote
  #6  
12-24-2002, 04:16 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
Quote:
Originally Posted by Bud
Working on it....the predicted sample size was 10.32MB, should this be place in the script to tell TEMPG where to stop the sample and if so where in the script would I place this? I have tried some things but TEMPG will keep trying to run the complete process going pass the sample make. Thanks again

Bud
Now you go to step 2 on Predictor and it will ask you to select the sample file. Then it automatically calculates another value for CQ_VBR.

-kwag
Reply With Quote
  #7  
12-24-2002, 04:26 PM
Bud Bud is offline
Free Member
 
Join Date: Apr 2002
Location: Hawaii
Posts: 241
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to Bud
Kwag,

Still trying to work out the first part, where in the script do I tell TEMPG to stop when it reaches the magic mark of what the predictor tells me it should be? i.e 13.32 MB or will TMPGE just stop processing the sample run. I have monitored TEMPG and it will tell me the total processing time will be 5+ hours, I would think for a 13 MB sample it would stop when it gets the size I need after about 2-3 mins or so. So I think the part I seem to be missing is where in the avs script do I tell TMPGE to stop processing. Getting closer to the where I want to be.

Bud
Reply With Quote
  #8  
12-24-2002, 04:35 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
Quote:
Originally Posted by Bud
Kwag,

Still trying to work out the first part, where in the script do I tell TEMPG to stop when it reaches the magic mark of what the predictor tells me it should be? i.e 13.32 MB or will TMPGE just stop processing the sample run.
You don't have to tell it to stop. It stops automatically after it makes the sample. The line "Sampler()" does that for you.
Quote:
I have monitored TEMPG and it will tell me the total processing time will be 5+ hours, I would think for a 13 MB sample it would stop when it gets the size I need after about 2-3 mins or so. So I think the part I seem to be missing is where in the avs script do I tell TMPGE to stop processing. Getting closer to the where I want to be.

Bud
You script should look like this:


LoadPlugin("C:\encoding\MPEG2DEC.dll")
LoadPlugin("C:\encoding\FluxSmooth.dll")
LoadPlugin("C:\encoding\Sampler.dll")
LoadPlugin("C:\encoding\Blockbuster.dll")
LoadPlugin("C:\encoding\LegalClip.dll")
mpeg2source("D:\K9_PI_NTSC_FINAL\VIDEO_TS\K9.d2v")
FluxSmooth()
Blockbuster( method="noise", detail_min=1, detail_max=10, variance=1 )
Blockbuster( method="sharpen", detail_min=20, detail_max=90, strength=2)
LegalClip()
BicubicResize(448,350,1/3,1/3,14,0,692,480)
AddBorders(16,65,16,65)
Sampler()

-kwag
Reply With Quote
Reply




Similar Threads
Thread Thread Starter Forum Replies Last Post
KDVD: Does anyone know tools for previewing safe area? sparskter Authoring VCD, DVD, Blu-ray 23 08-06-2005 01:36 PM
Nooba na área! Bugrao Conversão e Codificação de Vídeo (Português) 2 06-02-2004 10:28 AM
KVCD: Dark Area on Movies? bigggt Video Encoding and Conversion 8 03-02-2004 09:37 PM
Avisynth: How to put subtitles in black area with right aspect ratio? TCB Avisynth Scripting 11 10-01-2003 12:40 AM
How to position and resize subtitles In black area? kwag Video Encoding and Conversion 0 09-30-2003 06:38 AM




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