在存储之前捕获python中的FFmpeg输出

时间:2012-06-13 12:05:18

标签: python memory ffmpeg

我正在尝试从ffmpeg捕获输出并将其存储在内存中,稍后决定是否要将其写入磁盘。

在将ffmpeg写入硬盘之前是否可以分析ffmpeg的输出?

由于我真的不知道如何处理这个问题,我还不能提供代码示例。

编辑: 是的,我正在尝试将捕获的avi / mp4的小块写入RAM并在写入光盘之前对其进行分析。

3 个答案:

答案 0 :(得分:2)

将ffmpeg的输出重定向为进程的输入,请使用以下命令:

ffmpeg -i inputfile [ ... options ... ] 2>&1 | your-process 

您的进程将数据转换为stdin。

示例:

ffmpeg -y -i inputfile -acodec copy -vcodec copy outputfile 2>&1 | cat

答案 1 :(得分:0)

如果你的意思是捕捉视频输出,我想不是,因为它需要很多ram,最好使用临时文件并跟踪它。

如果您的意思是从输出的文件中捕获信息,请尝试使用ffmpeg -i /some/file.avi而不使用任何其他参数,这将转储有关视频文件的大量信息。

示例:

dorkbot:~ lamer1$ ffmpeg -i ~/Downloads/Dead\ Gerhardsens\ -\ They\ dont\ know.mp4 
ffmpeg version 0.7.8, Copyright (c) 2000-2011 the FFmpeg developers
  built on Nov 24 2011 14:31:00 with gcc 4.2.1 (Apple Inc. build 5666) (dot 3)
  configuration: --prefix=/opt/local --enable-gpl --enable-postproc --enable-swscale --enable-avfilter --enable-libmp3lame --enable-libvorbis --enable-libtheora --enable-libdirac --enable-libschroedinger --enable-libopenjpeg --enable-libxvid --enable-libx264 --enable-libvpx --enable-libspeex --mandir=/opt/local/share/man --enable-shared --enable-pthreads --cc=/usr/bin/gcc-4.2 --arch=x86_64 --enable-yasm
  libavutil    50. 43. 0 / 50. 43. 0
  libavcodec   52.123. 0 / 52.123. 0
  libavformat  52.111. 0 / 52.111. 0
  libavdevice  52.  5. 0 / 52.  5. 0
  libavfilter   1. 80. 0 /  1. 80. 0
  libswscale    0. 14. 1 /  0. 14. 1
  libpostproc  51.  2. 0 / 51.  2. 0

Seems stream 1 codec frame rate differs from container frame rate: 50000.00 (50000/1) -> 25.00 (25/1)
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/Users/lamer1/Downloads/Dead Gerhardsens - They dont know.mp4':
  Metadata:
    major_brand     : mp42
    minor_version   : 0
    compatible_brands: isomavc1mp42
    creation_time   : 2008-07-01 00:53:26
  Duration: 00:01:37.76, start: 0.000000, bitrate: 303 kb/s
    Stream #0.0(und): Audio: aac, 44100 Hz, stereo, s16, 125 kb/s
    Metadata:
      creation_time   : 2008-07-01 00:53:26
    Stream #0.1(und): Video: h264 (Baseline), yuv420p, 384x288 [PAR 1:1 DAR 4:3], 175 kb/s, 25 fps, 25 tbr, 25k tbn, 50k tbc
    Metadata:
      creation_time   : 2008-07-01 00:53:26
At least one output file must be specified

它不是一个完美的解决方案,但您可以解析该输出。

答案 2 :(得分:0)

您可以使用Pyffmpeg库直接从python中调用ffmpeg。