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
