使用mplayer提取音频
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用mplayer提取音频相关的知识,希望对你有一定的参考价值。
Script will extract all flv's or other videos specified to mp3.You can change *.flv to prob. any other extension.
Tested on *.mp4 and *.flv
for f in *.flv; do newname=`echo $f | tr ' ' '_' `; mv "$f" $newname; f=$newname; mplayer $f -vo null -ao pcm:file=tmp.wav; lame -b 320 -q 0 tmp.wav $newname.mp3; rm tmp.wav; done
以上是关于使用mplayer提取音频的主要内容,如果未能解决你的问题,请参考以下文章