markdown 命令使用ffmpeg查找和转换

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 命令使用ffmpeg查找和转换相关的知识,希望对你有一定的参考价值。

# Command find and convert using ffmpeg

I would like to combine the two following commands to find mp4 files and convert them to mp3 and save them with same name. The two command line:

`
find ./ -name '*.mp4'
ffmpeg -i video.mp4 -vn -acodec libmp3lame -ac 2 -ab 160k -ar 48000 audio.mp3
`

## With find's -exec functionality:

`
find ./ -name '*.mp4' -exec bash -c 'ffmpeg -i $0 -vn -acodec libmp3lame -ac 2 \
-ab 160k -ar 48000 ${0/mp4/mp3}' {} \;
`

## This should make xyz.mp4 to xyz.mp3.

Thanks, how I can delete the mp4 ? – molwiko Dec 10 '13 at 14:27

`
find ./ -name '*.mp4' -exec rm -f {} \;
`

 but check first if everything worked before deleting something. – chaos Dec 10 '13 at 14:32

以上是关于markdown 命令使用ffmpeg查找和转换的主要内容,如果未能解决你的问题,请参考以下文章

markdown [linux:FFmpeg] FFmpeg - 多媒体编辑和转换工具。 #linux #ffmpeg

FFmpeg 常用转换命令

FFmpeg命令 ---- 封装和图片转换

使用 ffmpeg 将图像转换为视频

使用啥 ffmpeg 命令将无符号整数列表转换为音频文件?

ffmpeg 求把m3u8如优酷的转为 mp4的命令行