Python批量转换FLAC文件

时间:2011-10-29 09:48:38

标签: python ogg os.walk flac

我想将所有FLAC文件转换为工作目录中的OGG:

这就是我所拥有的。

for root, dirs, files in os.walk(args):
        flacs = [f for f in files if f.endswith('.flac')]
        oggs = [o for o in files if o.endswith('.ogg')]

        for flacfiles in flacs:
            id3 = ('id3v2', '-C', flacfiles)
            cmd = ('oggenc', '-q7', flacfiles)
            try:
                subprocess.check_call(id3, cwd=root)
                subprocess.check_call(cmd, cwd=root)
            except subprocess.CalledProcessError:
                print "subprocess.CalledProcessError: Command %s returned non-zero exit status 1" % cwd

现在我想知道如何 - 在包含我的FLAC文件的目录中 - 检查是否有.flac .cue,如果是这样的话,那么do_something()

1 个答案:

答案 0 :(得分:0)

for flacfiles in flacs:
    if os.path.exists(os.path.splitext(flacfiles)[0] + '.cue')):
        # do something