管道到 ffmpeg 失败 - "pipe:: Not enough space"

Piping to ffmpeg fails - "pipe:: Not enough space"

我正在尝试编写一个脚本,该脚本可以将文件从网络服务器下载到内存,将其直接通过管道传输到 ffmpeg 的 ffprobe 模块,并且 return 文件的详细信息由 ffprobe 确定。这是我目前拥有的:

import requests
from io import BytesIO
from subprocess import Popen, PIPE

def get_file(url):
    r = requests.get(url)
    file = BytesIO(r.content).seek(0)
    return file

def get_info(file):
    p = Popen(["ffprobe", "-i", "-"], stdin=file, stdout=PIPE, stderr=PIPE)
    output = p.communicate()[1].decode("utf8")
    return output

这是使用 open() 加载的文件的输出之间的比较:

ffprobe version N-66931-gbbd8c85 Copyright (c) 2007-2014 the FFmpeg developers
  built on Oct 17 2014 01:05:12 with gcc 4.9.1 (GCC)
  configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libfreetype --enable-libgme --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-zlib
  libavutil      54. 10.100 / 54. 10.100
  libavcodec     56.  8.100 / 56.  8.100
  libavformat    56.  9.100 / 56.  9.100
  libavdevice    56.  1.100 / 56.  1.100
  libavfilter     5.  1.106 /  5.  1.106
  libswscale      3.  1.101 /  3.  1.101
  libswresample   1.  1.100 /  1.  1.100
  libpostproc    53.  3.100 / 53.  3.100
Input #0, mp3, from 'pipe:':
  Metadata:
    title           : Test File
  Duration: N/A, start: 0.000000, bitrate: 320 kb/s
    Stream #0:0: Audio: mp3, 44100 Hz, stereo, s16p, 320 kb/s
    Metadata:
      title           : Test File

...以及使用 get_file():

下载的文件
ffprobe version N-66931-gbbd8c85 Copyright (c) 2007-2014 the FFmpeg developers
  built on Oct 17 2014 01:05:12 with gcc 4.9.1 (GCC)
  configuration: --enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libfreetype --enable-libgme --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-libopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspeex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs --enable-libxvid --enable-zlib
  libavutil      54. 10.100 / 54. 10.100
  libavcodec     56.  8.100 / 56.  8.100
  libavformat    56.  9.100 / 56.  9.100
  libavdevice    56.  1.100 / 56.  1.100
  libavfilter     5.  1.106 /  5.  1.106
  libswscale      3.  1.101 /  3.  1.101
  libswresample   1.  1.100 /  1.  1.100
  libpostproc    53.  3.100 / 53.  3.100
pipe:: Not enough space

起初,这似乎是内存不足的问题,但我正在处理的文件很小 (<10MB),所以我认为这不是问题所在。不过,显然,我做错了什么……有人能给我任何建议,说明为什么在这种情况下管道会失败吗?

显然这不是一个可重现的错误,因为我刚刚回去,尝试了同样的代码,它神奇地起作用了。我认为 'Not enough space' 错误可能是由于当时发生的内存密集型事件导致我无法将文件传递给 ffmpeg。我不记得我试图加载的文件,但如果它很大,我可以看到如何遇到障碍。毫无疑问,流式传输数据比尝试一次将其全部加载到内存中更明智。

不管怎样,现在一切都太糟糕了!