Why not register?


Post new topic Reply to topic  [ 8 posts ] 

All times are UTC [ DST ]

Author Message
PostPosted: Fri Dec 17, 2004 9:53 pm  Post subject: dvd authoring #2
Reply with quote
User avatar
Offline

The Ancient One
Joined: Wed Jun 18, 2003 5:48 pm
Posts: 2912
Location: The House On The Edge Of The Park
soz 4 being a complete n00b on this (at least it keeps U busy :) )but i have some movies in avi format that my mate took on his digicam on our last snow boarding hols, how can i turn these into a dvd that can be played on a normal dvd player?

_________________
I Need More Parts!

<a href="https://forum.dead-donkey.com/viewtopic.php?t=7143" target="_blank">Giallo Collection</a>


Top
 Profile  
PostPosted: Fri Dec 17, 2004 10:16 pm  Post subject:
Reply with quote
User avatar
Offline

Demon Of The Abyss
Joined: Tue Jan 20, 2004 7:18 pm
Posts: 1426
Location: A padded cell
DVDLab got great reviews and looked really good but all the *ahem* home movies I tried it on ended up with the sound out of sync, yeah I know you can fix it but I couldn't be bothered. I heard it's just probs with VOB's from standalone DVD recorders though which is what I was trying to tart up. Not got a link, just search you-know-where :wink: Suprnova had a link but that's down too. :(


Top
 Profile  
PostPosted: Fri Dec 17, 2004 10:26 pm  Post subject:
Reply with quote
User avatar
Offline

Site Admin
Joined: Sat Nov 02, 2002 1:35 am
Posts: 19779
Location: En España
I think the first step, which george has skipped, is to get it encoded into MPEG2.

You've using a miniDV cam, so you need to get your DV into MPEG2, which is what I sometimes do with my captures.

If your not too bothered about quality, then your best choice is TMPGenc simply because its quick and pretty foolproof. The quality choice is CCE, which is what I use. You need to write a quick avisynth script, something like:

Code:
#  PLUGINS
LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\AviSynthPlugins\dgdecode.dll")
LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\AviSynthPlugins\KernelDeInt.dll")
#LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\AviSynthPlugins\FluxSmooth.dll")
LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\AviSynthPlugins\UnDot.dll")

#  SOURCE
AviSource("I:\Capture\indy.avs")

# COLOUR FORMAT
ConvertToYV12()

#  DEINTERLACING (1)
KernelDeInt(order=1,sharp=true)

# NOISE
Undot()

#  CROPPING - 720x576 to 704x570
Crop(6,2,704,570)

# BORDERS
Crop(0,0,704,570).AddBorders(4,0,4,0)


Its prety self explainitory what I did there, loaded in an avi, deinterlaced, ran a bob on it, cropped, and then new to you if you've only done mpeg4 is that I added on the boarders.

The reason I cropped and added borders here is that the edges were all VHS scan lined.

I then just load it into CCE, enter the bitrate encode I get from usign a bitrate calculator and away.

Its actually a good idea to do the DVDlab step at the same time. Make you menu and compile everything, get the filesize, then deduct that from your DVDr filesize. Then load up your bitrate calculator, enter the audio and the filesize your aiming for, and it will spit out a bitrate. I'd recommend averaging this when you get to CCE.

Then its a simple matter of importing your MPEG2, encoding your WAV to AC3 (or whichever format you choose) and muxing, and compiling. Its recommended to check... sometimes lab messes up and your sound gets out of sync.

This site is extremely useful:
http://www.dvdrhelp.com

Look at the guides, and at DV to DVD guides :)

_________________
Mouse nipple for the win! Trackpoint or death!


Top
 Profile  
PostPosted: Fri Dec 17, 2004 11:13 pm  Post subject:
Reply with quote
User avatar
Offline

The Ancient One
Joined: Wed Jun 18, 2003 5:48 pm
Posts: 2912
Location: The House On The Edge Of The Park
cheers, will give a go, is weird cos is quite teh opposite process :)

_________________
I Need More Parts!

<a href="https://forum.dead-donkey.com/viewtopic.php?t=7143" target="_blank">Giallo Collection</a>


Top
 Profile  
PostPosted: Fri Dec 17, 2004 11:23 pm  Post subject:
Reply with quote
User avatar
Offline

Site Admin
Joined: Sat Nov 02, 2002 1:35 am
Posts: 19779
Location: En España
btw, to get the cropping right, if you need to, just use:
Code:
#  PLUGINS
LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\AviSynthPlugins\dgdecode.dll")
LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\AviSynthPlugins\KernelDeInt.dll")
#LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\AviSynthPlugins\FluxSmooth.dll")
LoadPlugin("D:\Programs\Video\Encoding\GordianKnot\AviSynthPlugins\UnDot.dll")

#  SOURCE
AviSource("I:\Capture\indy.avs")

# COLOUR FORMAT
ConvertToYV12()


and load into the magic gknot, go through as if you were going to encode it, and then press edit when you get to the bit where you choose all deinterlacing, the cropping values should be there. I then just added boarders on to maintain the AR :)

_________________
Mouse nipple for the win! Trackpoint or death!


Top
 Profile  
PostPosted: Fri Dec 17, 2004 11:26 pm  Post subject:
Reply with quote
User avatar
Offline

The Ancient One
Joined: Wed Jun 18, 2003 5:48 pm
Posts: 2912
Location: The House On The Edge Of The Park
:beerchug:

_________________
I Need More Parts!

<a href="https://forum.dead-donkey.com/viewtopic.php?t=7143" target="_blank">Giallo Collection</a>


Top
 Profile  
PostPosted: Sat Dec 18, 2004 1:07 am  Post subject:
Reply with quote
User avatar
Offline

Demon Of The Abyss
Joined: Tue Jan 20, 2004 7:18 pm
Posts: 1426
Location: A padded cell
spudthedestroyer wrote:
I think the first step, which george has skipped, is to get it encoded into MPEG2.

Wrong, I used TMPGenc


Top
 Profile  
PostPosted: Sat Dec 18, 2004 1:16 am  Post subject:
Reply with quote
User avatar
Offline

Site Admin
Joined: Sat Nov 02, 2002 1:35 am
Posts: 19779
Location: En España
George Tatum wrote:
spudthedestroyer wrote:
I think the first step, which george has skipped, is to get it encoded into MPEG2.

Wrong, I used TMPGenc


no in your post above, your didn't mention re-encoding was what I meant. Which is the first thing you need to sort out before authoring :)

_________________
Mouse nipple for the win! Trackpoint or death!


Top
 Profile  
Display posts from previous:  Sort by  

All times are UTC [ DST ]

Post new topic Reply to topic  [ 8 posts ] 


Who is online

Users browsing this forum: No registered users and 1 guest


Moderator: Help Mods

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Frontpage / Forums / Scifi


What's blood for, if not for shedding?