Files
2021-10-21 14:57:58 +08:00

4 lines
228 B
Markdown
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 6.11.4 ffmpeg 提取音频
知道视频中的音频编码时ffmpeg -i in.mp4 -c:v none -c:a copy out.mp3
不知道编码需要转换时ffmpeg -i in.mp4 -c:v none -c:a ac3 -b:a 128k -r:a44100 -ac 2 out.ac3