I am trying to create a script that will give the highest quality svcd from my tv capture card and would like to know what I can do to increase the video quality with this script (short of bitrate since that will change due to length of show).
Plus maybe a way to get rid of the need for a stream.yuv file since it is big and I have been unable to pipe straight from mplayer-mpeg2enc. Plus lav2yuv can't open the huffyuv file and finally I don't like the avidemux svcd output even tough it lets me use all the cli arguments ############################################################################## cd /mm3 ## Change to partition for video capture mencoder -tv on:driver=v4l:width=480:height=480:input=1:norm=ntsc:amode=1:adevice=/dev/dsp:fps=29.97 -oac copy -o recording.raw.avi -ovc lavc -lavcopts vcodec=huffyuv:keyint=300:vstrict=-1 -endpos 01:05:00 ## Capture from tv card avidemux recording.raw.avi ## Cut out commercials and stream copy to recording.avi mplayer recording.avi -ao pcm -aofile stream.wav -vc null -vo null ## Extract audio mplayer recording.avi -vo yuv4mpeg -nosound -vop lavcdeint ## Extract video and de-interlace to format for conversion to svcd mpeg2enc -M 2 -o video.m2v -f 4 -q 2 -I 1 -V 200 -n n -F 4 -r 32 -4 1 -2 1 -b 2400 stream.yuv --correct-svcd-hds --aspect 2 ## Convert video to svcd cat stream.wav | mp2enc -v 2 -b 96 -o sound.mp2 ## Convert audio for use in svcd mplex -f 4 sound.mp2 video.m2v -o svcd.mpg ## Combine audio and video into svcd vcdimager -t svcd svcd.mpg ## Get svcd ready for burning ------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ Mjpeg-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/mjpeg-users