digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Encoding and Conversion (http://www.digitalfaq.com/archives/encode/)
-   -   KVCD: cq value is supposed to be 149? (http://www.digitalfaq.com/archives/encode/2381-kvcd-cq-value.html)

Vitia 01-27-2003 10:27 PM

KVCD: cq value is supposed to be 149?
 
im tryn to get panic room on one cd...kwag im using what u said on how u got k 19 on 1 disc usin x3 templates. Well i followed the prediction thing and acordn to ur formula thing my new cq value is spose to be 149 :? I dunno what went wrong cuz I did iit twice and the same thing happened.

kwag 01-27-2003 10:44 PM

What script are you using :?: Could you post your .avs script :?:

-kwag

Vitia 01-27-2003 11:14 PM

LoadPlugin("D:\Downloads\vcd\FitCD\MPEG2DEC.dll")
LoadPlugin("D:\Downloads\vcd\FitCD\sampler.dll")

Mpeg2Source("D:\PANIC_ROOM_SUPERBIT\VIDEO_TS\panic room.d2v")
BilinearResize(672,350,14,0,692,480)
AddBorders(16,65,16,65)

Sampler(length=24)
## MPEG size = ((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size ##

kwag 01-27-2003 11:18 PM

What is the file size of your sample and what is the wanted size supposed to be with the formula :?:

Vitia 01-27-2003 11:24 PM

file size of sample is 4.62
wanted is 14.82

kwag 01-27-2003 11:34 PM

Quote:

Originally Posted by Vitia
file size of sample is 4.62
wanted is 14.82

Using what CQ value?

Vitia 01-27-2003 11:35 PM

60

Vitia 01-27-2003 11:42 PM

more details for u the movie is ntsc 29.97, 161089 frames, and im tryn to get it on one cd using x3 mpeg 1 or 2...dunno which one is better...or if i should use the plus template...but i want good quality

kwag 01-27-2003 11:44 PM

Did you set "Force FILM" on DVD2AVI when you created your .d2v :idea:

Vitia 01-27-2003 11:46 PM

no i didnt the guide on kvcd didnt say to

Vitia 01-27-2003 11:52 PM

also to let u know i change the source from 4:3 to 16:9

kwag 01-27-2003 11:52 PM

Quote:

Originally Posted by Vitia
no i didnt the guide on kvcd didnt say to

Ok, that's one problem. Run DVD2AVI again and set "Force FILM"
I suggest you also use a script like this:

Code:

LoadPlugin("C:\encoding\mpeg2dec.dll")
LoadPlugin("C:\encoding\GripFit_preview.dll")
LoadPlugin("C:\encoding\blockbuster.dll")
LoadPlugin("C:\encoding\legalclip.dll")
LoadPlugin("C:\encoding\sampler.dll")
LoadPlugin("C:\encoding\dustv5.dll")
LoadPlugin("C:\encoding\temporalcleanerold.dll")

Mpeg2Source("K:\ATTACK_OF_THE_CLONES_F1\VIDEO_TS\clones.d2v")
LegalClip()
GripCrop( width=528, height=480, overscan=2 )
GripSize()
SpaceDust()
TemporalCleaner()
Blockbuster(method="noise", variance=.3, seed=1)
GripBorders()
LegalClip()
Sampler(length=24)
## MPEG size =((Total frames/MovieTimeInMinutes)/24) * MPEG sample file size ##

Don't pay too much attention to the details right now 8)
This script is already set for KVCDx3 ( 528x480 ) resolution. So load your KVCDx3 template and use this script to process your .d2v. Just change the Mpeg2Source("K:\ATTACK_OF_THE_CLONES_F1\VIDEO_TS\c lones.d2v") line to point to YOUR .d2v file. The links for the filters is available here: http://www.kvcd.net/forum/viewtopic.php?t=2553

-kwag

Vitia 01-27-2003 11:54 PM

ok ill do that and use that script u posted n let u know what happens...thnx for the help

Vitia 01-27-2003 11:56 PM

one thing...should i jus copy that script into fitcd?

kwag 01-28-2003 12:00 AM

Quote:

Originally Posted by Vitia
one thing...should i jus copy that script into fitcd?

No!, copy the script above to "notepad". You can use FitCD to open your new .d2v and then copy+paste the mpeg2source line over the one in notepad. Save the script in notepad, and process that. :)

-kwag

Vitia 01-28-2003 12:02 AM

thnx kwag

kwag 01-28-2003 12:22 AM

Quote:

Originally Posted by Vitia
thnx kwag

:wink:
Let me know your results, and read as much as you can, specially on the "SansGrip's" and "File prediction" areas on the forum.

-kwag

Vitia 01-28-2003 03:19 AM

i cant find temporalcleanerold.dll...ill try witout it

Vitia 01-28-2003 03:40 AM

well i tried without the temporalclean thing...n the file sample size came out to 5.77mb i used ur new cq formula n this time it came out wit a new cq value of 154. so i dunno what to do

Just want to add...should i use the new tmpg enc...or stick with my tmpg enc plus 2.58?

Oh ya n sorry i messed up when i told u it was 29.97 that 9 should of been a 3..its 23.97

Jellygoose 01-28-2003 08:16 AM

Can somebody post a link to the TemporalCleaner filter for AviSynth ? I can't find it anywhere either!

kwag 01-28-2003 09:24 AM

Quote:

Originally Posted by Vitia
well i tried without the temporalclean thing...n the file sample size came out to 5.77mb i used ur new cq formula n this time it came out wit a new cq value of 154. so i dunno what to do

What file size do you get on your sample if you set CQ to 100 :?:

Perfect Cell 01-28-2003 10:12 AM

You can get the temporal cleaner in this thread:

http://forum.doom9.org/showthread.php?s=&threadid=37620

Or you can use this direct link:

http://forum.doom9.org/attachment.ph...&postid=240506

Hope this helps! :P

Vitia 01-28-2003 04:17 PM

when i put cq at 100 the sample file size is 13.8mb

jorel 01-29-2003 02:17 AM

Kwag,

what is
temporalcleanerold.dll
in your script?? :?

the "old" is new for me.
i have the last temporalcleaner (seems of november)...

:?:

kwag 01-29-2003 08:41 AM

Quote:

Originally Posted by Vitia
when i put cq at 100 the sample file size is 13.8mb

So is 12.8MB above your "wanted" file size from the formula, or is it still below? If it's below, it means that you can just encode with CQ=100 and then you can encode with a higher bit rate on the audio so that the sum of audio+video totals ~800MB.

-kwag

kwag 01-29-2003 08:42 AM

Quote:

Originally Posted by jorel
Kwag,

what is
temporalcleanerold.dll
in your script?? :?

temporalcleanerold.dll is for AviSynth versions 2.0x
temporalclean.dll is for AviSynth 2.5

-kwag

jorel 01-29-2003 10:28 PM

Quote:

Originally Posted by kwag
Quote:

Originally Posted by jorel
Kwag,

what is
temporalcleanerold.dll
in your script?? :?

temporalcleanerold.dll is for AviSynth versions 2.0x
temporalclean.dll is for AviSynth 2.5

-kwag

thanks. :wink:


All times are GMT -5. The time now is 05:47 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.