Python捕获子进程输出

时间:2016-04-01 20:05:51

标签: python audio ffmpeg subprocess popen

我正在研究一个从音频流中学习的tensorflow项目。我正在使用子进程模块(带有Popen)和FFMPEG来读取mp3中的音频数据。我使用Popen()成功打开了音频文件,我可以通过stdout打印输出。但是,我似乎无法抓住它。

我已经尝试了read()communicate()

我正在关注教程here

read()只返回任何内容而communicate()会抛出错误:AttributeError: 'file' object has no attribute 'communicate'

这是我的代码:

for image_index, image in enumerate(image_files):
  count += 1
  image_file = os.path.join(folder, image)
  try:
    output_files = "output/output" + str(count) + ".png"
    if image_file != 'train/rock/.DS_Store':
        command = [FFMPEG_BIN,
            '-i', image_file,
            '-f', 's16le',
            '-acodec', 'pcm_s16le',
            '-ar', '44100',
            '-ac', '2',
            output_files]
        pipe = sp.Popen(command, stdout=sp.PIPE)
        print (pipe)
        raw_audio = pipe.stdout.communicate(88200*4)

我已经尝试了所有内容herehere

1 个答案:

答案 0 :(得分:6)

Popen 对象没有与 stdout 进行通信:

pipe.communicate(str(88200*4))

还要通过stdout捕获stderr:

 pipe = sp.Popen(command, stdout=sp.PIPE, stderr=sp.STDOUT, stdin=sp.PIPE)
 raw_audio, _  = pipe.communicate(str(88200*4).encode())
 print(raw_audio)