I'm using ffmpeg to extract the audio from a DVD. I was able to use the following command on almost all of the VOB files on the disk:
ffmpeg -i mount_point/video_ts/vts_05_3.vob -f mp3 file_3.mp3
It worked for all but one of the VOB files. For one of them I'm getting the following errors. Can anybody tell me what's wrong?
Code:$ ffmpeg -i mount_point/video_ts/vts_05_3.vob -f mp3 file_3.mp3 FFmpeg version SVN-r7813, Copyright (c) 2000-2006 Fabrice Bellard, et al. configuration: --prefix=/usr --incdir=/usr/include/ffmpeg --libdir=/usr/lib --shlibdir=/usr/lib --mandir=/usr/share/man --arch=x86_32 --extra-cflags=-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i386 -mtune=generic -fasynchronous-unwind-tables --enable-mp3lame --enable-libogg --enable-libtheora --enable-vorbis --enable-faad --enable-faac --enable-libgsm --enable-xvid --enable-x264 --enable-a52 --enable-a52bin --enable-dts --enable-pp --disable-static --enable-shared --enable-gpl --disable-debug --disable-opts --disable-strip libavutil version: 49.3.0 libavcodec version: 51.30.0 libavformat version: 51.8.0 built on Feb 4 2007 08:21:24, gcc: 4.1.1 20070105 (Red Hat 4.1.1-51) Input #0, mpeg, from 'mount_point/video_ts/vts_05_3.vob': Duration: 00:30:48.7, start: 3561.932300, bitrate: 4645 kb/s Stream #0.0[0x1e0]: Video: mpeg2video, yuv420p, 720x480, 9570 kb/s, 29.97 fps(r) Stream #0.1[0x81]: Audio: ac3, 48000 Hz, stereo, 128 kb/s Stream #0.2[0x82]: Audio: ac3, 48000 Hz, stereo, 128 kb/s Stream #0.3[0x80]: Audio: ac3, 48000 Hz, 5:1, 224 kb/s Stream #0.4[0x20]: Subtitle: dvdsub File 'file_3.mp3' already exists. Overwrite ? [y/N] y Output #0, mp3, to 'file_3.mp3': Stream #0.0: Audio: mp3, 48000 Hz, 5:1, 64 kb/s Stream mapping: Stream #0.1 -> #0.0 Error while opening codec for output stream #0.0 - maybe incorrect parameters such as bit_rate, rate, width or height


Reply With Quote
