digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Video Encoding and Conversion (http://www.digitalfaq.com/archives/encode/)
-   -   Guide to convert Divx to KVCD (http://www.digitalfaq.com/archives/encode/2143-guide-convert-divx.html)

MrCoopz 01-16-2003 09:10 AM

ive deleted Austin Powers now

The movie im talking about is 8 mile, could i get it onto 1 cd with good quality?

SansGrip 01-16-2003 09:20 AM

Quote:

Originally Posted by MrCoopz
The movie im talking about is 8 mile, could i get it onto 1 cd with good quality?

Probably -- it all depends on the quality of the source. I've not often had much luck with one-disc DivX/XViD movies, and always try to get the two-disc versions (or DVD) now, but you can certainly try it and see :).

kryne 01-16-2003 10:26 AM

i need some help, trying to encode a divx movie thats 640x272 and no matter what i try it wont let me keep it widescreen, if anyone could help it would be great

Bchteam 01-16-2003 10:46 AM

I created my First Script.So far so good.But when I load the Script into Tmpgenc I get a nice Error Message:

"...Script Error.there is no function named "GripFit"...

...(F:\Rips und Movies\script.avs,line9)..."

This my Script:

LoadPlugin("F:\Programme\AviSynth2\MPEG2DEC.dll")
LoadPlugin("F:\Programme\AviSynth2\LegalClip.dll")
LoadPlugin("F:\Programme\AviSynth2\FluxSmooth.dll" )
LoadPlugin("F:\Programme\AviSynth2\Sampler.dll")
LoadPlugin("F:\Programme\AviSynth2\RemoveBorders.d ll")
LoadPlugin("F:\Programme\AviSynth2\GripFit_preview .dll")
avisource("D:\Programme\Emule\Incoming\Movie.avi")
LegalClip()
GripFit( width=352, height=288, overscan=1)
FluxSmooth()
LegalClip()
#Sampler(length=24)

Can someone tell me what`s wrong???

kryne 01-16-2003 10:51 AM

GripFit( width=352, height=288, overscan=1)


ok i am new at all this but i noticed you have a space after gripfit( and i dont think there is sposed to be one, but as i said i am new to all this, so i could be wrong

Bchteam 01-16-2003 11:08 AM

I already tried it without a Space but the error message is still appearing

SansGrip 01-16-2003 12:01 PM

Quote:

Originally Posted by Bchteam
I already tried it without a Space but the error message is still appearing

You probably have the latest version (0.0c). I changed things around a little, so instead of what you're using, try this:

Code:

GripCrop(352, 288, overscan=1)
GripSize()

This does the same thing as the line you were using before.

MrCoopz 01-16-2003 12:34 PM

Quote:

KVCDPredictor is available and will do
these calculations for you, but you may need microsoft’s .NET and
avisynth 2.5 alpha. Check with SansGrip on this.
Sansgrip where can i get this?

Bchteam 01-16-2003 12:59 PM

THX SansGrip.Now GripFit is working

But there`s another Problem.

The Divx File has Subtitles but if GripFit is activated,the subtitles are gone.
If GripFit is deactivated the subtitles are visible.

What`s wrong now???

black prince 01-16-2003 01:01 PM

@MrCoopz,

KVCD_Predictor is here:

http://www.jungleweb.net/~sansgrip/K...dictor-0.2.zip

-black prince

MrCoopz 01-16-2003 01:20 PM

Y is it that when encoding in TmpGenc for about an Hour its says 5 hours leftthen it starts going up and up.

Do i need to set the priority in taskmanager to realtime or high or just leave it?

SansGrip 01-16-2003 01:34 PM

Quote:

Originally Posted by Bchteam
The Divx File has Subtitles but if GripFit is activated,the subtitles are gone.

It must be cropping too much from the bottom of the frame. I'm working right now on an improved cropping algorithm and will probably have a new version out today or tomorrow.

kwag 01-16-2003 01:44 PM

Quote:

Originally Posted by Bchteam

The Divx File has Subtitles but if GripFit is activated,the subtitles are gone.
If GripFit is deactivated the subtitles are visible.

That's probably because the DivX is putting the subtitles on the black area. If you encode from a .d2v (DVD), that won't happen. Here's the way my .avs is set for encoding with subtitles, and subtitles look fine:

Code:


Mpeg2Source("K:\THE_LAST_CASTLE\VIDEO_TS\castle.d2v")

LegalClip()
GripCrop( width=528, height=480, overscan=2 )
vobsub("K:\THE_LAST_CASTLE\VTS_01_0")
FaeryDust()
Convolution3D(preset="movieLQ")
GripSize()
GripBorders()
LegalClip()

-kwag

Bchteam 01-16-2003 02:13 PM

Yes Kwag,You`re right.

The Subtitles are in the Black Area.

Do I have to wait until SansGrip is done with his work or is there another possibility to make it work`???

SansGrip 01-16-2003 02:40 PM

Quote:

Originally Posted by Bchteam
The Subtitles are in the Black Area.

Before I make the next preview release I'll allow the specification of custom crop values so that situations like this can be handled gracefully.

rendalunit 01-16-2003 05:56 PM

hey great guide black prince!

ok while we're all sharing our divx -> mpeg problems, I have one that's driving me nuts :ohplease:

I got a divx 5.0.2 movie with vbr .mp3 audio in two files. I load the first into VDubMod and append the second one. Then with audio-full processing mode save .wav. Encode audio with HeadAC3he to .mp2 and encode video, mux with BBMpeg and everytime the audio starts ahead of the video by 12 seconds. When I check the time of the video and audio they're exactly the same. If I add a 12 second delay to the beginning of the audio than the audio time will be longer than the video. :?: :?:

what am I doing wrong?
Thanks,
ren

SansGrip 01-16-2003 06:05 PM

Quote:

Originally Posted by rendalunit
I have one that's driving me nuts :ohplease:

You could try:

Code:

AviSource("part1.avi") + AviSource("part2.avi")
EnsureVBRMP3Sync()

Load that into VDub and do a full processing WAV save. If that doesn't work, I'd say do a direct stream copy and use something like Goldwave to save it uncompressed. You never know :).

MrCoopz 01-16-2003 07:20 PM

Black Prince u are a god, thanks alot for doin this guide i cant wait for the MPEG 2 one :)

And all the other guys that helped thanks this must be the most friendly board ever!

And not forgeting the Great minds behind the KVCD templates. I have never honestly seen a VCD with this quality on 1 CD and i still had 60meg to spare!!!!!

Ok thats not a leaving speech :) i have a few more questions.

1. After i burned the VCD i played it in my player and it has borders :(, Now, nearly all of the DivX's i have are in widescreen so my question is how do i get rid of the borders but keep the Excellent quality?.

2. How do i make the sound come out of all my 5 speakers instead of just the centre one?

3. Finally the sound is quite low is there anyway to make it higher?

Thanks again guys :)

SansGrip 01-16-2003 07:26 PM

Quote:

Originally Posted by MrCoopz
1. After i burned the VCD i played it in my player and it has borders :(

Do you mean top and bottom, or left and right?

Quote:

2. How do i make the sound come out of all my 5 speakers instead of just the centre one?
If you use HeadAC3he and your source material is AC3, make sure you select the "Surround 2" downmix mode. When you play the disc, put your receiver into Pro Logic II mode (if you have it, regular Pro Logic if you don't).

Quote:

3. Finally the sound is quite low is there anyway to make it higher?
When you encode the audio in HeadAC3he check the "2-pass mode" box and it'll normalize the sound as it encodes.

MrCoopz 01-16-2003 07:36 PM

thanks for the quick response

it has borders at the top and bottom.

and i just looked at the audio info of the original divX and it says Channels 2 (stereo) so does this mean i cant do it?

Oh and the 2 pass box iis already checked


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