On Wed, 23 Feb 2005 11:38:04 -0600, The Myth <[EMAIL PROTECTED]> wrote: > I ran it again with --debug and here are the commands: > > system call: > mkdir -m 0755 /tmp/fifodir_6093/ > > forking: > /usr/bin/nice -n19 mythtranscode --showprogress -p autodetect -c 1009 -s > 2005-02-16-18-56-00 -f "/tmp/fifodir_6093/" 2>&1 > > forking: > /usr/bin/nice -n19 ffmpeg -f rawvideo -s 480x480 -r 29.97 -i > /tmp/fifodir_6093/vidout -f yuv4mpegpipe - 2> /dev/null | /usr/bin/nice > -n19 yuvdenoise -F -r 16 -b 10,10,-10,-10 2> /dev/null | /usr/bin/nice > -n19 ffmpeg -y -f s16le -ar 32000 -ac 2 -i /tmp/fifodir_6093/audout -f > yuv4mpegpipe -s 480x480 -r 29.97 -i - -deinterlace -croptop 10 > -cropbottom 10 -cropleft 10 -cropright 10 -b 1150 -vcodec mpeg1video > -ab 224 -ar 44100 -acodec mp2 -aspect 4:3 -s 352x240 -f vcd > "./Smallville - Krypto.mpg" 2>&1 >
Chris: This looks a lot like the same issue I was seeing. With my version of ffmpeg (0.4.9-pre1), vcd is not an available format. Instead of '-f vcd' I think you need to use '-target vcd'. I had submitted a patch to fix DVDs, but didn't look for the other targets. To see available FORMATS, you can call: ffmpeg -formats vcd and dvd are not listed. There does not seem to be a related command line option for the target listing. However, looking at the source of ffmpeg, you can look at the function 'opt_target'. It lists the following targets: pal ntsc- (not sure what the options on the end of that are) vcd svcd dvd
_______________________________________________ mythtv-users mailing list [email protected] http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users
