ffprobe如何确定持续时间



我使用ffprobe来分析存储在远程服务器上的媒体文件。这似乎工作得很好,但对于某些文件,持续时间丢失或不正确(通常比应有的时间长)。其他时候,它会准确地返回此信息,并且它似乎与媒体类型(编解码器等)无关。

下面是一个有效的命令示例:

ffprobe -v quiet -print_format json -show_streams -show_format http://host.com/file.aiff

{
"streams": [
    {
        "index": 0,
        "codec_name": "pcm_s16be",
        "codec_long_name": "PCM signed 16-bit big-endian",
        "codec_type": "audio",
        "codec_time_base": "1/44100",
        "codec_tag_string": "[0][0][0][0]",
        "codec_tag": "0x0000",
        "sample_fmt": "s16",
        "sample_rate": "44100",
        "channels": 2,
        "bits_per_sample": 16,
        "r_frame_rate": "0/0",
        "avg_frame_rate": "0/0",
        "time_base": "1/44100",
        "start_pts": 0,
        "start_time": "0.000000",
        "duration_ts": 8494248,
        "duration": "192.613333",
        "bit_rate": "1411200",
        "nb_frames": "8494248",
        "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://host.com/file.aiff",
    "nb_streams": 1,
    "nb_programs": 0,
    "format_name": "aiff",
    "format_long_name": "Audio IFF",
    "start_time": "0.000000",
    "duration": "192.613333",
    "probe_score": 100
}
}

下面是一个不这样做的例子:

ffprobe -v quiet -print_format json -show_streams -show_format "http://host.com/file.wav"

生成以下结果:

{
"streams": [
    {
        "index": 0,
        "codec_name": "pcm_s16le",
        "codec_long_name": "PCM signed 16-bit little-endian",
        "codec_type": "audio",
        "codec_time_base": "1/44100",
        "codec_tag_string": "[1][0][0][0]",
        "codec_tag": "0x0001",
        "sample_fmt": "s16",
        "sample_rate": "44100",
        "channels": 2,
        "bits_per_sample": 16,
        "r_frame_rate": "0/0",
        "avg_frame_rate": "0/0",
        "time_base": "1/44100",
        "bit_rate": "1411200",
        "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://host.com/file.wav",
    "nb_streams": 1,
    "nb_programs": 0,
    "format_name": "wav",
    "format_long_name": "WAV / WAVE (Waveform Audio)",
    "bit_rate": "1411200",
    "probe_score": 99
}
}

这两个例子是不同的格式,但我见过它在格式相同的情况下工作和不工作,我只是没有现成的例子。

我想知道的是,如果我可以改变我使用ffprobe的参数,以允许持续时间一致和准确地确定,或者我可以找到关于ffprobe如何工作的任何信息,所以我弄清楚我如何更改输入文件等,使它们正确工作。

或者,如果有其他更可靠的工具(它需要是一个开源的Linux工具),欢迎提出任何建议或建议。

一个简单的解决方案是使用-show_packets选项

ffprobe -i input.mp4 -show_packets > a.txt

现在打开a.t txt并转到最后一个数据包并查看dts_time值,这将是文件的准确持续时间。如果没有定义dts_time,检查pts_time的值

元数据可能不正确。最正确的方法是解码整个文件:

$ ffmpeg -i input.webm -f null -
...
frame=206723 fps=1390 q=-0.0 Lsize=N/A time=00:57:28.87 bitrate=N/A speed=23.2x

来源:https://trac.ffmpeg.org/wiki/FFprobeTips Getdurationbydecoding

相关内容

  • 没有找到相关文章

最新更新