ffmpeg - 如何使用 ffprobe 从 HLS/M3U8 文件中检测视频比特率

标签 ffmpeg video-streaming http-live-streaming m3u8 ffprobe

我们需要检测视频比特率 HLS使用 ffprobe 串流通过使用 m3u8 .ts 的文件.

如果我使用 m3u8 ,我可以得到持续时间,尺寸,使用的编解码器,音频比特率 ,但没有视频 比特率 可在 ffprobe 提供的响应中找到.

ffprobe -print_format json -show_format -show_streams -show_error http://gfrmedia-video-platform.s3.amazonaws.com/bumbia/2014/06/06/158217_20160126214307_bumbia-hls/hls1056k/158217_640x360-with-mp4-hls_bumbia-hls.m3u8

ffprobe version 2.8.3 Copyright (c) 2007-2015 the FFmpeg developers
  built with Apple LLVM version 7.0.0 (clang-700.1.76)
  configuration: --prefix=/usr/local/Cellar/ffmpeg/2.8.3 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-opencl --enable-libx264 --enable-libmp3lame --enable-libvo-aacenc --enable-libxvid --enable-vda
  libavutil      54. 31.100 / 54. 31.100
  libavcodec     56. 60.100 / 56. 60.100
  libavformat    56. 40.101 / 56. 40.101
  libavdevice    56.  4.100 / 56.  4.100
  libavfilter     5. 40.101 /  5. 40.101
  libavresample   2.  1.  0 /  2.  1.  0
  libswscale      3.  1.101 /  3.  1.101
  libswresample   1.  2.101 /  1.  2.101
  libpostproc    53.  3.100 / 53.  3.100
{
[http @ 0x7fcf09e19420] No trailing CRLF found in HTTP header.
Input #0, hls,applehttp, from 'http://gfrmedia-video-platform.s3.amazonaws.com/bumbia/2014/06/06/158217_20160126214307_bumbia-hls/hls1056k/158217_640x360-with-mp4-hls_bumbia-hls.m3u8':
  Duration: 00:00:11.00, start: 9.940500, bitrate: 0 kb/s
  Program 0
    Metadata:
      variant_bitrate : 0
    Stream #0:0: Video: h264 (Constrained Baseline) ([27][0][0][0] / 0x001B), yuv420p, 640x360 [SAR 1:1 DAR 16:9], 29.97 fps, 29.97 tbr, 90k tbn, 59.94 tbc
    Stream #0:1: Audio: aac (LC) ([15][0][0][0] / 0x000F), 44100 Hz, stereo, fltp, 79 kb/s
    "streams": [
        {
            "index": 0,
            "codec_name": "h264",
            "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10",
            "profile": "Constrained Baseline",
            "codec_type": "video",
            "codec_time_base": "1001/60000",
            "codec_tag_string": "[27][0][0][0]",
            "codec_tag": "0x001b",
            "width": 640,
            "height": 360,
            "coded_width": 640,
            "coded_height": 368,
            "has_b_frames": 0,
            "sample_aspect_ratio": "1:1",
            "display_aspect_ratio": "16:9",
            "pix_fmt": "yuv420p",
            "level": 30,
            "chroma_location": "left",
            "refs": 1,
            "is_avc": "0",
            "nal_length_size": "0",
            "r_frame_rate": "30000/1001",
            "avg_frame_rate": "30000/1001",
            "time_base": "1/90000",
            "start_pts": 900000,
            "start_time": "10.000000",
            "bits_per_raw_sample": "8",
            "disposition": {
                "default": 0,
                "dub": 0,
                "original": 0,
                "comment": 0,
                "lyrics": 0,
                "karaoke": 0,
                "forced": 0,
                "hearing_impaired": 0,
                "visual_impaired": 0,
                "clean_effects": 0,
                "attached_pic": 0
            }
        },
        {
            "index": 1,
            "codec_name": "aac",
            "codec_long_name": "AAC (Advanced Audio Coding)",
            "profile": "LC",
            "codec_type": "audio",
            "codec_time_base": "1/44100",
            "codec_tag_string": "[15][0][0][0]",
            "codec_tag": "0x000f",
            "sample_fmt": "fltp",
            "sample_rate": "44100",
            "channels": 2,
            "channel_layout": "stereo",
            "bits_per_sample": 0,
            "r_frame_rate": "0/0",
            "avg_frame_rate": "0/0",
            "time_base": "1/90000",
            "start_pts": 894645,
            "start_time": "9.940500",
            "bit_rate": "79931",
            "disposition": {
                "default": 0,
                "dub": 0,
                "original": 0,
                "comment": 0,
                "lyrics": 0,
                "karaoke": 0,
                "forced": 0,
                "hearing_impaired": 0,
                "visual_impaired": 0,
                "clean_effects": 0,
                "attached_pic": 0
            }
        }
    ],
    "format": {
        "filename": "http://gfrmedia-video-platform.s3.amazonaws.com/bumbia/2014/06/06/158217_20160126214307_bumbia-hls/hls1056k/158217_640x360-with-mp4-hls_bumbia-hls.m3u8",
        "nb_streams": 2,
        "nb_programs": 1,
        "format_name": "hls,applehttp",
        "format_long_name": "Apple HTTP Live Streaming",
        "start_time": "9.940500",
        "duration": "11.000000",
        "size": "281",
        "bit_rate": "204",
        "probe_score": 100
    }
}

在上面的这个示例中,我知道视频大约为 520Kbps,但需要找到一种方法以编程方式使用 ffprobe或任何其他方式。凭借我目前拥有的,我可以获得大部分所需的信息,但我缺少一个重要的值(value),那就是视频 。比特率 .

我可以尝试哪些其他选择?

谢谢!

最佳答案

检测平均带宽的最佳方法是结合 ffmpeg 和 pv 命令,如下所示:

ffmpeg  -re -i input.m3u8 -f flv - 2>/dev/null|pv -a >/dev/null

您可能需要安装 pv apt-get install pv希望对您有所帮助。

关于ffmpeg - 如何使用 ffprobe 从 HLS/M3U8 文件中检测视频比特率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35043524/

相关文章:

ubuntu - ffmpeg 将视频文件从 ubuntu 流式传输到 youtube

android - 使用 pydub+ffmpeg 编码的 M4a (mp4) 音频文件无法在 Android 上播放

android - 他们有什么方法可以在android中使用ffmpeg将视频分成多个 fragment 吗?

ios - 我们可以在 iOS 中使用 toxbox/OpenTok 暂停视频通话吗

video-streaming - 下载实时 Twitch 流

audio - 检查视频中嵌入的音频是否为 Ambisonic 的最佳方法是什么?

iphone - 使用 Wowza Media Server 在 ios 中寻找视频流

http-live-streaming - 使用 HTTP Live Streaming 时如何自动检测设备尺寸?

swift - 是否可以在 tvOS 上使用苹果的 HLS

ffmpeg - 来自 Azure Blob 存储的 HLS 事件流