pydub简介
pydub是基于ffmpeg,有关ffmpeg的介绍,可以看下百度百科,windows下安装完ffmpeg之后配置其bin
目录到PATH
pydub使用
|
|
通过以上方法可以从不同格式的音频和视频文件中获取AudioSegment
对象,进而对其进行一系列处理
Slice audio
|
|
Make the beginning louder and the end quieter
|
|
Concatenate audio (add one file to the end of another)
|
|
AudioSegments are immutable
|
|
将获取一个新的AudioSegment
对象
Save the results (again whatever ffmpeg supports)
|
|
例子
将目录下的所有mp4文件和flv文件转换为mp3
|
|