zone wrote:
denver wrote:
I've since made a new syst
em disk for that one with 6.5.15. I'm getting very good results going from the camcorder->O2->dvd.
Can you tell us more about o2->DVD workflow.
Certainly. I haven't had time to work on this project lately, and I probably don't have the best answers, but I'll explain what I've done so far.
In simple terms, the work goes like this:
1. Capture the camcorder output (svideo) with the O2 using mediarecorder.
2. Do a bit of simple editing: trim the ends of the clip and add a title using moviemaker.
3. Convert the clip to MPEG2 with mencoder (FreeBSD).
4. Create the DVD files using DVDStyler (FreeBSD).
5. Burn the DVD with growisofs (FreeBSD).
I originally thought I was going to need to capture uncompressed because I was going to edit the result. But after doing some experimenting, I don't see a clear advantage. Besides, although I have been able to get the O2 to do uncompressed captures, it's a little unpredictable: sometimes it works fine, sometimes not. Capturing with compression is easier. So I could probably do the capture with dmrecord instead of mediarecorder.
After doing some research, I've been capturing to a QuickTime file, using JPEG-A compression, with YCrCb 422 packing. I usually bump the quality up from 75% to 95%.
I save (Export As) the edited result to an AVI file, using SGI JPEG compression, again with YUV 422 packing.
The mencoder command I use is:
# 4:3
SCALE=720:480
mencoder -oac lavc -ovc lavc -of mpeg -mpegopts format=dvd -vf scale=$SCALE,\
harddup -srate 48000 -af lavcresample=48000 -lavcopts vcodec=mpeg2video:\
vrc_buf_size=1835:vrc_maxrate=9800:vbitrate=5000:keyint=18:acodec=ac3:\
abitrate=192:aspect=4/3 -ofps 30000/1001 \
-o outfile infile
Once you have the MPEG2 file, there are a number of ways to get that onto a DVD. I've found DVDStyler to be simple and easy to use. It's supposed to also burn the DVD, but I always get an error at that point - I probably don't have the correct permissions on the dvd device. But it does tell you what command it's trying to use, so I just run that as root and that works fine.
So far I've been limiting all my clips to about 30 seconds. I don't want to spend an hour capturing something, then going through all the other work, only to discover that I made a poor option choice during the capture. I have a feeling that once I do start working with clips that are 30 minutes long instead of 30 seconds, there will be a whole new set of challenges.
Thanks,
Denver