使用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
  1. 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提取音频的主要内容,如果未能解决你的问题,请参考以下文章

MPlayer 音频通道(左/右)切换

带音频播放的MPlayer播放器在ARM上的移植笔记

linux-2.26 移植mplayer 功能

用mplayer从视频中按周期提取帧

Linux MPlayer使用手册

怎么从视频里提取音乐