01-16-2003, 09:10 AM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
ive deleted Austin Powers now
The movie im talking about is 8 mile, could i get it onto 1 cd with good quality?
|
Someday, 12:01 PM
|
|
Site Staff / Ad Manager
|
|
Join Date: Dec 2002
Posts: 42
Thanks: ∞
Thanked 42 Times in 42 Posts
|
|
|
01-16-2003, 09:20 AM
|
Free Member
|
|
Join Date: Nov 2002
Location: Ontario, Canada
Posts: 1,135
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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 .
|
01-16-2003, 10:26 AM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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
|
01-16-2003, 10:46 AM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 275
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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???
|
01-16-2003, 10:51 AM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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
|
01-16-2003, 11:08 AM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 275
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
I already tried it without a Space but the error message is still appearing
|
01-16-2003, 12:01 PM
|
Free Member
|
|
Join Date: Nov 2002
Location: Ontario, Canada
Posts: 1,135
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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.
|
01-16-2003, 12:34 PM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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?
|
01-16-2003, 12:59 PM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 275
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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???
|
01-16-2003, 01:01 PM
|
Free Member
|
|
Join Date: Jul 2002
Posts: 1,224
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
|
01-16-2003, 01:20 PM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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?
|
01-16-2003, 01:34 PM
|
Free Member
|
|
Join Date: Nov 2002
Location: Ontario, Canada
Posts: 1,135
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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.
|
01-16-2003, 01:44 PM
|
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 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
|
01-16-2003, 02:13 PM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 275
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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`???
|
01-16-2003, 02:40 PM
|
Free Member
|
|
Join Date: Nov 2002
Location: Ontario, Canada
Posts: 1,135
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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.
|
01-16-2003, 05:56 PM
|
Free Member
|
|
Join Date: Apr 2002
Location: san jose, Ca
Posts: 1,148
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
hey great guide black prince!
ok while we're all sharing our divx -> mpeg problems, I have one that's driving me nuts
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
|
01-16-2003, 06:05 PM
|
Free Member
|
|
Join Date: Nov 2002
Location: Ontario, Canada
Posts: 1,135
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
Quote:
Originally Posted by rendalunit
I have one that's driving me nuts
|
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 .
|
01-16-2003, 07:20 PM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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
|
01-16-2003, 07:26 PM
|
Free Member
|
|
Join Date: Nov 2002
Location: Ontario, Canada
Posts: 1,135
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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.
|
01-16-2003, 07:36 PM
|
Free Member
|
|
Join Date: Jan 2003
Posts: 60
Thanks: 0
Thanked 0 Times in 0 Posts
|
|
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 07:19 PM — vBulletin © Jelsoft Enterprises Ltd
|