使用VLC批量将M4V转换为MP3的shell脚本?

使用VLC批量将M4V转换为MP3的shell脚本?

我想使用 VLC 将 M4V 视频文件目录批量转换为 MP3 音频文件。 (我不介意使用 ffmpeg 或者。)

成立一个 bash 脚本让我开始,但我不知道要在脚本中插入哪些 VLC 参数。

我想使用可变比特率或 64kb/s。采样率可以是 44100(或更低)。我不输出视频,所以我不确定 VLC 是否需要这些参数。

谁能帮我修复这个脚本以满足我的需要?

#!/bin/sh                                                                                                                                                     

vcodec="mp4v"
acodec="mp4a"
bitrate="1024"
arate="128"
mux="mp4"

vlc="/usr/bin/vlc"                                                                                                                                           

if [ ! -e "$vlc" ]; then
    echo "Command '$vlc' does not exist"
    exit 1
fi

for file in "$@"; do
    echo "=> Transcoding '$file'... "

    dst=`dirname "$file"`
    new=`basename "$file" | sed 's@\.[a-z][a-z][a-z]$@@'`.$mux

    $vlc -I dummy -q "$file" \
       --sout "#transcode{vcodec=mp4v,vb=1024,acodec=mp4a,ab=128}:standard{mux=mp4,dst=\"$dst/$new\",access=file}" \
       vlc://quit
    ls -lh "$file" "$dst/$new"
    echo
done

答案1

使用方法如下ffmpeg

$ ./ffmpeg -i testing.m4v -b:a 192K -vn testing.mp3

或可变比特率:

$ ./ffmpeg -i testing.m4v -q:a 0 -map a testing.mp3

ffmpeg 版本

$ ./ffmpeg -version
ffmpeg version N-56896-ga927276
built on Oct  5 2013 05:42:36 with gcc 4.6 (Debian 4.6.3-1)
configuration: --prefix=/root/ffmpeg-static/64bit --extra-cflags='-I/root/ffmpeg-static/64bit/include -static' --extra-ldflags='-L/root/ffmpeg-static/64bit/lib -static' --extra-libs='-lxml2 -lexpat -lfreetype' --enable-static --disable-shared --disable-ffserver --disable-doc --enable-bzlib --enable-zlib --enable-postproc --enable-runtime-cpudetect --enable-libx264 --enable-gpl --enable-libtheora --enable-libvorbis --enable-libmp3lame --enable-gray --enable-libass --enable-libfreetype --enable-libopenjpeg --enable-libspeex --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-version3 --enable-libvpx
libavutil      52. 46.100 / 52. 46.100
libavcodec     55. 34.100 / 55. 34.100
libavformat    55. 19.100 / 55. 19.100
libavdevice    55.  3.100 / 55.  3.100
libavfilter     3. 88.101 /  3. 88.101
libswscale      2.  5.100 /  2.  5.100
libswresample   0. 17.103 /  0. 17.103
libpostproc    52.  3.100 / 52.  3.100

参考

答案2

这是我最终使用的。感谢 slm 对 ffmpeg 的帮助。我将该代码放入循环中。

#!/bin/sh                                                                                                                                                     
arate="64K"
ext="mp3"                                                                                                                                              
app="/usr/bin/ffmpeg"                                                                                                                                           
if [ ! -e "$app" ]; then
    echo "Command '$app' does not exist"
    exit 1
fi

for file in "$@"; do
    echo "=> Transcoding '$file' ..."
    dst=`dirname "$file"`
    new=`basename "$file" | sed 's@\.[a-z][a-z][a-z]$@@'`.$ext
    $app -i "$file" -b:a $arate -vn "$dst/$new"
    ls -lh "$file" "$dst/$new"
    echo
done

有用。但是,我的文件命名有一个错误。我还没修好。输出文件名为 blahblah.m4v.mp3,而不是 blahblah.mp3。

答案3

效果很好,谢谢

有用。但是,我的文件命名有一个错误。我还没修好。输出文件名为 blahblah.m4v.mp3,而不是 blahblah.mp3。

#!/bin/sh                                                                                                                                                     
arate="64K"
ext="mp3"                                                                                                                                              
app="/usr/bin/ffmpeg"                                                                                                                                           
if [ ! -e "$app" ]; then
    echo "Command '$app' does not exist"
    exit 1
fi

for file in "$@"; do
    echo "=> Transcoding '$file' ..."
    dst=`dirname "$file"`
    new=`basename "$file" | sed 's@\.[a-z][a-z0-9][a-z0-9]$@@'`.$ext
    $app -i "$file" -b:a $arate -vn "$dst/$new"
    ls -lh "$file" "$dst/$new"
    echo
done

我确信会有更好的方法,但在正则表达式中允许 0-9 也意味着 .m4v 和 .mp4 等可以工作。

相关内容