码迷,mamicode.com
首页 > 其他好文 > 详细

[Audio processing] FFMPEG转音频格式和采样率

时间:2016-03-05 16:21:05      阅读:401      评论:0      收藏:0      [点我收藏+]

标签:

利用FFMPEG转音频格式和采样率

import os
import string
import subprocess as sp

#Full path of ffmpeg
FFMPEG_BIN = "/Users/karl/Documents/python/audio/tool/ffmpeg"
#Full path of sourceDir
sourceDir = "/Users/karl/Documents/python/audio/"
#Full path of targetDir
targetDir = "/Users/karl/Documents/python/newdir/"
#Sample frequency
sf = 11025
#Extension setting
ext = mp3

def convert(sourceDir, targetDir, sf, ext):
    if not sourceDir.endswith(/):
        sourceDir += /
    if not targetDir.endswith(/):
        targetDir += /
    if not os.path.exists(targetDir):
        os.mkdir(targetDir)
    files = os.listdir(sourceDir)
    for f in files:
        if f.endswith(wav):
            command = [ FFMPEG_BIN,
                   -i, sourceDir + f,
                   -ar, str(sf), targetDir + os.path.splitext(f)[0] + . + ext]
            print command
            pipe = sp.Popen(command, stdout = sp.PIPE, bufsize = 10**8)


convert(sourceDir, targetDir, sf, ext)

 

[Audio processing] FFMPEG转音频格式和采样率

标签:

原文地址:http://www.cnblogs.com/littletail/p/5244860.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!