nullptr 发表于 2023-12-19 23:23:59

ffmpeg 6.1 doc/examples/mux.c使用hevc编码出现问题

本帖最后由 nullptr 于 2023-12-19 23:29 编辑

最近在尝试将yuv420格式的图像数据使用h265编码并封装为视频,我发现ffmpeg的doc/examples/mux.c有类似的功能,给第566行avformat_alloc_output_context2函数的第三个参数format_name传入了"hevc",编译得到mux程序,使用./mux test.mkv生成了一个视频,但是该视频好像时间戳有问题,只能用potplayer播放。请教一下如何修改才能生成正常的视频,非常感谢。

下面是修改后的mux.c,只修改了566行的传入参数。

/*
* Copyright (c) 2003 Fabrice Bellard
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/

/**
* @file libavformat muxing API usage example
* @example mux.c
*
* Generate a synthetic audio and video signal and mux them to a media file in
* any supported libavformat format. The default codecs are used.
*/

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <math.h>

#include <libavutil/avassert.h>
#include <libavutil/channel_layout.h>
#include <libavutil/opt.h>
#include <libavutil/mathematics.h>
#include <libavutil/timestamp.h>
#include <libavcodec/avcodec.h>
#include <libavformat/avformat.h>
#include <libswscale/swscale.h>
#include <libswresample/swresample.h>

#define STREAM_DURATION   10.0
#define STREAM_FRAME_RATE 25 /* 25 images/s */
#define STREAM_PIX_FMT    AV_PIX_FMT_YUV420P /* default pix_fmt */

#define SCALE_FLAGS SWS_BICUBIC

// a wrapper around a single output AVStream
typedef struct OutputStream {
    AVStream *st;
    AVCodecContext *enc;

    /* pts of the next frame that will be generated */
    int64_t next_pts;
    int samples_count;

    AVFrame *frame;
    AVFrame *tmp_frame;

    AVPacket *tmp_pkt;

    float t, tincr, tincr2;

    struct SwsContext *sws_ctx;
    struct SwrContext *swr_ctx;
} OutputStream;

static void log_packet(const AVFormatContext *fmt_ctx, const AVPacket *pkt)
{
    AVRational *time_base = &fmt_ctx->streams->time_base;

    printf("pts:%s pts_time:%s dts:%s dts_time:%s duration:%s duration_time:%s stream_index:%d\n",
         av_ts2str(pkt->pts), av_ts2timestr(pkt->pts, time_base),
         av_ts2str(pkt->dts), av_ts2timestr(pkt->dts, time_base),
         av_ts2str(pkt->duration), av_ts2timestr(pkt->duration, time_base),
         pkt->stream_index);
}

static int write_frame(AVFormatContext *fmt_ctx, AVCodecContext *c,
                     AVStream *st, AVFrame *frame, AVPacket *pkt)
{
    int ret;

    // send the frame to the encoder
    ret = avcodec_send_frame(c, frame);
    if (ret < 0) {
      fprintf(stderr, "Error sending a frame to the encoder: %s\n",
                av_err2str(ret));
      exit(1);
    }

    while (ret >= 0) {
      ret = avcodec_receive_packet(c, pkt);
      if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF)
            break;
      else if (ret < 0) {
            fprintf(stderr, "Error encoding a frame: %s\n", av_err2str(ret));
            exit(1);
      }

      /* rescale output packet timestamp values from codec to stream timebase */
      av_packet_rescale_ts(pkt, c->time_base, st->time_base);
      pkt->stream_index = st->index;

      /* Write the compressed frame to the media file. */
      log_packet(fmt_ctx, pkt);
      ret = av_interleaved_write_frame(fmt_ctx, pkt);
      /* pkt is now blank (av_interleaved_write_frame() takes ownership of
         * its contents and resets pkt), so that no unreferencing is necessary.
         * This would be different if one used av_write_frame(). */
      if (ret < 0) {
            fprintf(stderr, "Error while writing output packet: %s\n", av_err2str(ret));
            exit(1);
      }
    }

    return ret == AVERROR_EOF ? 1 : 0;
}

/* Add an output stream. */
static void add_stream(OutputStream *ost, AVFormatContext *oc,
                     const AVCodec **codec,
                     enum AVCodecID codec_id)
{
    AVCodecContext *c;
    int i;

    /* find the encoder */
    *codec = avcodec_find_encoder(codec_id);
    if (!(*codec)) {
      fprintf(stderr, "Could not find encoder for '%s'\n",
                avcodec_get_name(codec_id));
      exit(1);
    }

    ost->tmp_pkt = av_packet_alloc();
    if (!ost->tmp_pkt) {
      fprintf(stderr, "Could not allocate AVPacket\n");
      exit(1);
    }

    ost->st = avformat_new_stream(oc, NULL);
    if (!ost->st) {
      fprintf(stderr, "Could not allocate stream\n");
      exit(1);
    }
    ost->st->id = oc->nb_streams-1;
    c = avcodec_alloc_context3(*codec);
    if (!c) {
      fprintf(stderr, "Could not alloc an encoding context\n");
      exit(1);
    }
    ost->enc = c;

    switch ((*codec)->type) {
    case AVMEDIA_TYPE_AUDIO:
      c->sample_fmt= (*codec)->sample_fmts ?
            (*codec)->sample_fmts : AV_SAMPLE_FMT_FLTP;
      c->bit_rate    = 64000;
      c->sample_rate = 44100;
      if ((*codec)->supported_samplerates) {
            c->sample_rate = (*codec)->supported_samplerates;
            for (i = 0; (*codec)->supported_samplerates; i++) {
                if ((*codec)->supported_samplerates == 44100)
                  c->sample_rate = 44100;
            }
      }
      av_channel_layout_copy(&c->ch_layout, &(AVChannelLayout)AV_CHANNEL_LAYOUT_STEREO);
      ost->st->time_base = (AVRational){ 1, c->sample_rate };
      break;

    case AVMEDIA_TYPE_VIDEO:
      c->codec_id = codec_id;

      c->bit_rate = 400000;
      /* Resolution must be a multiple of two. */
      c->width    = 352;
      c->height   = 288;
      /* timebase: This is the fundamental unit of time (in seconds) in terms
         * of which frame timestamps are represented. For fixed-fps content,
         * timebase should be 1/framerate and timestamp increments should be
         * identical to 1. */
      ost->st->time_base = (AVRational){ 1, STREAM_FRAME_RATE };
      c->time_base       = ost->st->time_base;

      c->gop_size      = 12; /* emit one intra frame every twelve frames at most */
      c->pix_fmt       = STREAM_PIX_FMT;
      if (c->codec_id == AV_CODEC_ID_MPEG2VIDEO) {
            /* just for testing, we also add B-frames */
            c->max_b_frames = 2;
      }
      if (c->codec_id == AV_CODEC_ID_MPEG1VIDEO) {
            /* Needed to avoid using macroblocks in which some coeffs overflow.
             * This does not happen with normal video, it just happens here as
             * the motion of the chroma plane does not match the luma plane. */
            c->mb_decision = 2;
      }
      break;

    default:
      break;
    }

    /* Some formats want stream headers to be separate. */
    if (oc->oformat->flags & AVFMT_GLOBALHEADER)
      c->flags |= AV_CODEC_FLAG_GLOBAL_HEADER;
}

/**************************************************************/
/* audio output */

static AVFrame *alloc_audio_frame(enum AVSampleFormat sample_fmt,
                                  const AVChannelLayout *channel_layout,
                                  int sample_rate, int nb_samples)
{
    AVFrame *frame = av_frame_alloc();
    if (!frame) {
      fprintf(stderr, "Error allocating an audio frame\n");
      exit(1);
    }

    frame->format = sample_fmt;
    av_channel_layout_copy(&frame->ch_layout, channel_layout);
    frame->sample_rate = sample_rate;
    frame->nb_samples = nb_samples;

    if (nb_samples) {
      if (av_frame_get_buffer(frame, 0) < 0) {
            fprintf(stderr, "Error allocating an audio buffer\n");
            exit(1);
      }
    }

    return frame;
}

static void open_audio(AVFormatContext *oc, const AVCodec *codec,
                     OutputStream *ost, AVDictionary *opt_arg)
{
    AVCodecContext *c;
    int nb_samples;
    int ret;
    AVDictionary *opt = NULL;

    c = ost->enc;

    /* open it */
    av_dict_copy(&opt, opt_arg, 0);
    ret = avcodec_open2(c, codec, &opt);
    av_dict_free(&opt);
    if (ret < 0) {
      fprintf(stderr, "Could not open audio codec: %s\n", av_err2str(ret));
      exit(1);
    }

    /* init signal generator */
    ost->t   = 0;
    ost->tincr = 2 * M_PI * 110.0 / c->sample_rate;
    /* increment frequency by 110 Hz per second */
    ost->tincr2 = 2 * M_PI * 110.0 / c->sample_rate / c->sample_rate;

    if (c->codec->capabilities & AV_CODEC_CAP_VARIABLE_FRAME_SIZE)
      nb_samples = 10000;
    else
      nb_samples = c->frame_size;

    ost->frame   = alloc_audio_frame(c->sample_fmt, &c->ch_layout,
                                       c->sample_rate, nb_samples);
    ost->tmp_frame = alloc_audio_frame(AV_SAMPLE_FMT_S16, &c->ch_layout,
                                       c->sample_rate, nb_samples);

    /* copy the stream parameters to the muxer */
    ret = avcodec_parameters_from_context(ost->st->codecpar, c);
    if (ret < 0) {
      fprintf(stderr, "Could not copy the stream parameters\n");
      exit(1);
    }

    /* create resampler context */
    ost->swr_ctx = swr_alloc();
    if (!ost->swr_ctx) {
      fprintf(stderr, "Could not allocate resampler context\n");
      exit(1);
    }

    /* set options */
    av_opt_set_chlayout(ost->swr_ctx, "in_chlayout",       &c->ch_layout,      0);
    av_opt_set_int       (ost->swr_ctx, "in_sample_rate",   c->sample_rate,    0);
    av_opt_set_sample_fmt(ost->swr_ctx, "in_sample_fmt",      AV_SAMPLE_FMT_S16, 0);
    av_opt_set_chlayout(ost->swr_ctx, "out_chlayout",      &c->ch_layout,      0);
    av_opt_set_int       (ost->swr_ctx, "out_sample_rate",    c->sample_rate,    0);
    av_opt_set_sample_fmt(ost->swr_ctx, "out_sample_fmt",   c->sample_fmt,   0);

    /* initialize the resampling context */
    if ((ret = swr_init(ost->swr_ctx)) < 0) {
      fprintf(stderr, "Failed to initialize the resampling context\n");
      exit(1);
    }
}

/* Prepare a 16 bit dummy audio frame of 'frame_size' samples and
* 'nb_channels' channels. */
static AVFrame *get_audio_frame(OutputStream *ost)
{
    AVFrame *frame = ost->tmp_frame;
    int j, i, v;
    int16_t *q = (int16_t*)frame->data;

    /* check if we want to generate more frames */
    if (av_compare_ts(ost->next_pts, ost->enc->time_base,
                      STREAM_DURATION, (AVRational){ 1, 1 }) > 0)
      return NULL;

    for (j = 0; j <frame->nb_samples; j++) {
      v = (int)(sin(ost->t) * 10000);
      for (i = 0; i < ost->enc->ch_layout.nb_channels; i++)
            *q++ = v;
      ost->t   += ost->tincr;
      ost->tincr += ost->tincr2;
    }

    frame->pts = ost->next_pts;
    ost->next_pts+= frame->nb_samples;

    return frame;
}

/*
* encode one audio frame and send it to the muxer
* return 1 when encoding is finished, 0 otherwise
*/
static int write_audio_frame(AVFormatContext *oc, OutputStream *ost)
{
    AVCodecContext *c;
    AVFrame *frame;
    int ret;
    int dst_nb_samples;

    c = ost->enc;

    frame = get_audio_frame(ost);

    if (frame) {
      /* convert samples from native format to destination codec format, using the resampler */
      /* compute destination number of samples */
      dst_nb_samples = av_rescale_rnd(swr_get_delay(ost->swr_ctx, c->sample_rate) + frame->nb_samples,
                                        c->sample_rate, c->sample_rate, AV_ROUND_UP);
      av_assert0(dst_nb_samples == frame->nb_samples);

      /* when we pass a frame to the encoder, it may keep a reference to it
         * internally;
         * make sure we do not overwrite it here
         */
      ret = av_frame_make_writable(ost->frame);
      if (ret < 0)
            exit(1);

      /* convert to destination format */
      ret = swr_convert(ost->swr_ctx,
                        ost->frame->data, dst_nb_samples,
                        (const uint8_t **)frame->data, frame->nb_samples);
      if (ret < 0) {
            fprintf(stderr, "Error while converting\n");
            exit(1);
      }
      frame = ost->frame;

      frame->pts = av_rescale_q(ost->samples_count, (AVRational){1, c->sample_rate}, c->time_base);
      ost->samples_count += dst_nb_samples;
    }

    return write_frame(oc, c, ost->st, frame, ost->tmp_pkt);
}

/**************************************************************/
/* video output */

static AVFrame *alloc_frame(enum AVPixelFormat pix_fmt, int width, int height)
{
    AVFrame *frame;
    int ret;

    frame = av_frame_alloc();
    if (!frame)
      return NULL;

    frame->format = pix_fmt;
    frame->width= width;
    frame->height = height;

    /* allocate the buffers for the frame data */
    ret = av_frame_get_buffer(frame, 0);
    if (ret < 0) {
      fprintf(stderr, "Could not allocate frame data.\n");
      exit(1);
    }

    return frame;
}

static void open_video(AVFormatContext *oc, const AVCodec *codec,
                     OutputStream *ost, AVDictionary *opt_arg)
{
    int ret;
    AVCodecContext *c = ost->enc;
    AVDictionary *opt = NULL;

    av_dict_copy(&opt, opt_arg, 0);

    /* open the codec */
    ret = avcodec_open2(c, codec, &opt);
    av_dict_free(&opt);
    if (ret < 0) {
      fprintf(stderr, "Could not open video codec: %s\n", av_err2str(ret));
      exit(1);
    }

    /* allocate and init a re-usable frame */
    ost->frame = alloc_frame(c->pix_fmt, c->width, c->height);
    if (!ost->frame) {
      fprintf(stderr, "Could not allocate video frame\n");
      exit(1);
    }

    /* If the output format is not YUV420P, then a temporary YUV420P
   * picture is needed too. It is then converted to the required
   * output format. */
    ost->tmp_frame = NULL;
    if (c->pix_fmt != AV_PIX_FMT_YUV420P) {
      ost->tmp_frame = alloc_frame(AV_PIX_FMT_YUV420P, c->width, c->height);
      if (!ost->tmp_frame) {
            fprintf(stderr, "Could not allocate temporary video frame\n");
            exit(1);
      }
    }

    /* copy the stream parameters to the muxer */
    ret = avcodec_parameters_from_context(ost->st->codecpar, c);
    if (ret < 0) {
      fprintf(stderr, "Could not copy the stream parameters\n");
      exit(1);
    }
}

/* Prepare a dummy image. */
static void fill_yuv_image(AVFrame *pict, int frame_index,
                           int width, int height)
{
    int x, y, i;

    i = frame_index;

    /* Y */
    for (y = 0; y < height; y++)
      for (x = 0; x < width; x++)
            pict->data + x] = x + y + i * 3;

    /* Cb and Cr */
    for (y = 0; y < height / 2; y++) {
      for (x = 0; x < width / 2; x++) {
            pict->data + x] = 128 + y + i * 2;
            pict->data + x] = 64 + x + i * 5;
      }
    }
}

static AVFrame *get_video_frame(OutputStream *ost)
{
    AVCodecContext *c = ost->enc;

    /* check if we want to generate more frames */
    if (av_compare_ts(ost->next_pts, c->time_base,
                      STREAM_DURATION, (AVRational){ 1, 1 }) > 0)
      return NULL;

    /* when we pass a frame to the encoder, it may keep a reference to it
   * internally; make sure we do not overwrite it here */
    if (av_frame_make_writable(ost->frame) < 0)
      exit(1);

    if (c->pix_fmt != AV_PIX_FMT_YUV420P) {
      /* as we only generate a YUV420P picture, we must convert it
         * to the codec pixel format if needed */
      if (!ost->sws_ctx) {
            ost->sws_ctx = sws_getContext(c->width, c->height,
                                          AV_PIX_FMT_YUV420P,
                                          c->width, c->height,
                                          c->pix_fmt,
                                          SCALE_FLAGS, NULL, NULL, NULL);
            if (!ost->sws_ctx) {
                fprintf(stderr,
                        "Could not initialize the conversion context\n");
                exit(1);
            }
      }
      fill_yuv_image(ost->tmp_frame, ost->next_pts, c->width, c->height);
      sws_scale(ost->sws_ctx, (const uint8_t * const *) ost->tmp_frame->data,
                  ost->tmp_frame->linesize, 0, c->height, ost->frame->data,
                  ost->frame->linesize);
    } else {
      fill_yuv_image(ost->frame, ost->next_pts, c->width, c->height);
    }

    ost->frame->pts = ost->next_pts++;

    return ost->frame;
}

/*
* encode one video frame and send it to the muxer
* return 1 when encoding is finished, 0 otherwise
*/
static int write_video_frame(AVFormatContext *oc, OutputStream *ost)
{
    return write_frame(oc, ost->enc, ost->st, get_video_frame(ost), ost->tmp_pkt);
}

static void close_stream(AVFormatContext *oc, OutputStream *ost)
{
    avcodec_free_context(&ost->enc);
    av_frame_free(&ost->frame);
    av_frame_free(&ost->tmp_frame);
    av_packet_free(&ost->tmp_pkt);
    sws_freeContext(ost->sws_ctx);
    swr_free(&ost->swr_ctx);
}

/**************************************************************/
/* media file output */

int main(int argc, char **argv)
{
    OutputStream video_st = { 0 }, audio_st = { 0 };
    const AVOutputFormat *fmt;
    const char *filename;
    AVFormatContext *oc;
    const AVCodec *audio_codec, *video_codec;
    int ret;
    int have_video = 0, have_audio = 0;
    int encode_video = 0, encode_audio = 0;
    AVDictionary *opt = NULL;
    int i;

    if (argc < 2) {
      printf("usage: %s output_file\n"
               "API example program to output a media file with libavformat.\n"
               "This program generates a synthetic audio and video stream, encodes and\n"
               "muxes them into a file named output_file.\n"
               "The output format is automatically guessed according to the file extension.\n"
               "Raw images can also be output by using '%%d' in the filename.\n"
               "\n", argv);
      return 1;
    }

    filename = argv;
    for (i = 2; i+1 < argc; i+=2) {
      if (!strcmp(argv, "-flags") || !strcmp(argv, "-fflags"))
            av_dict_set(&opt, argv+1, argv, 0);
    }

    /* allocate the output media context */
    avformat_alloc_output_context2(&oc, NULL, "hevc", filename);
    if (!oc) {
      printf("Could not deduce output format from file extension: using MPEG.\n");
      avformat_alloc_output_context2(&oc, NULL, "mpeg", filename);
    }
    if (!oc)
      return 1;

    fmt = oc->oformat;

    /* Add the audio and video streams using the default format codecs
   * and initialize the codecs. */
    if (fmt->video_codec != AV_CODEC_ID_NONE) {
      add_stream(&video_st, oc, &video_codec, fmt->video_codec);
      have_video = 1;
      encode_video = 1;
    }
    if (fmt->audio_codec != AV_CODEC_ID_NONE) {
      add_stream(&audio_st, oc, &audio_codec, fmt->audio_codec);
      have_audio = 1;
      encode_audio = 1;
    }

    /* Now that all the parameters are set, we can open the audio and
   * video codecs and allocate the necessary encode buffers. */
    if (have_video)
      open_video(oc, video_codec, &video_st, opt);

    if (have_audio)
      open_audio(oc, audio_codec, &audio_st, opt);

    av_dump_format(oc, 0, filename, 1);

    /* open the output file, if needed */
    if (!(fmt->flags & AVFMT_NOFILE)) {
      ret = avio_open(&oc->pb, filename, AVIO_FLAG_WRITE);
      if (ret < 0) {
            fprintf(stderr, "Could not open '%s': %s\n", filename,
                  av_err2str(ret));
            return 1;
      }
    }

    /* Write the stream header, if any. */
    ret = avformat_write_header(oc, &opt);
    if (ret < 0) {
      fprintf(stderr, "Error occurred when opening output file: %s\n",
                av_err2str(ret));
      return 1;
    }

    while (encode_video || encode_audio) {
      /* select the stream to encode */
      if (encode_video &&
            (!encode_audio || av_compare_ts(video_st.next_pts, video_st.enc->time_base,
                                          audio_st.next_pts, audio_st.enc->time_base) <= 0)) {
            encode_video = !write_video_frame(oc, &video_st);
      } else {
            encode_audio = !write_audio_frame(oc, &audio_st);
      }
    }

    av_write_trailer(oc);

    /* Close each codec. */
    if (have_video)
      close_stream(oc, &video_st);
    if (have_audio)
      close_stream(oc, &audio_st);

    if (!(fmt->flags & AVFMT_NOFILE))
      /* Close the output file. */
      avio_closep(&oc->pb);

    /* free the stream */
    avformat_free_context(oc);

    return 0;
}


下面是使用mux程序生成test.mkv时产生的日志信息,为什么packet的dts从-2开始:
x265 : HEVC encoder version 3.5+1-f0c1022b6
x265 : build info 8bit+10bit+12bit
x265 : using cpu capabilities: MMX2 SSE2Fast LZCNT SSSE3 SSE4.2 AVX FMA3 BMI2 AVX2
x265 : Main profile, Level-2 (Main tier)
x265 : Thread pool created using 32 threads
x265 : Slices                              : 1
x265 : frame threads / pool features       : 1 / wpp(5 rows)
x265 : Source height < 720p; disabling lookahead-slices
x265 : Coding QT: max CU size, min CU size : 64 / 8
x265 : Residual QT: max TU size, max depth : 32 / 1 inter / 1 intra
x265 : ME / range / subpel / merge         : hex / 57 / 2 / 3
x265 : Keyframe min / max / scenecut / bias: 1 / 12 / 40 / 5.00
x265 : Lookahead / bframes / badapt      : 20 / 4 / 2
x265 : b-pyramid / weightp / weightb       : 1 / 1 / 0
x265 : References / ref-limitcu / depth: 3 / off / on
x265 : AQ: mode / str / qg-size / cu-tree: 2 / 1.0 / 32 / 1
x265 : Rate Control / qCompress            : ABR-400 kbps / 0.60
x265 : tools: rd=3 psy-rd=2.00 early-skip rskip mode=1 signhide tmvp
x265 : tools: b-intra strong-intra-smoothing deblock sao
Output #0, hevc, to 'test.mp4':
Stream #0:0: Video: hevc, yuv420p, 352x288, q=2-31, 400 kb/s, 25 tbn
    Side data:
      cpb: bitrate max/min/avg: 0/0/400000 buffer size: 0 vbv_delay: N/A
pts:0 pts_time:0 dts:-2 dts_time:-0.08 duration:0 duration_time:0 stream_index:0
pts:5 pts_time:0.2 dts:-1 dts_time:-0.04 duration:0 duration_time:0 stream_index:0
pts:3 pts_time:0.12 dts:0 dts_time:0 duration:0 duration_time:0 stream_index:0
pts:1 pts_time:0.04 dts:1 dts_time:0.04 duration:0 duration_time:0 stream_index:0
pts:2 pts_time:0.08 dts:2 dts_time:0.08 duration:0 duration_time:0 stream_index:0
pts:4 pts_time:0.16 dts:3 dts_time:0.12 duration:0 duration_time:0 stream_index:0
pts:10 pts_time:0.4 dts:4 dts_time:0.16 duration:0 duration_time:0 stream_index:0
pts:8 pts_time:0.32 dts:5 dts_time:0.2 duration:0 duration_time:0 stream_index:0
pts:6 pts_time:0.24 dts:6 dts_time:0.24 duration:0 duration_time:0 stream_index:0
pts:7 pts_time:0.28 dts:7 dts_time:0.28 duration:0 duration_time:0 stream_index:0
pts:9 pts_time:0.36 dts:8 dts_time:0.32 duration:0 duration_time:0 stream_index:0
pts:12 pts_time:0.48 dts:9 dts_time:0.36 duration:0 duration_time:0 stream_index:0
pts:11 pts_time:0.44 dts:10 dts_time:0.4 duration:0 duration_time:0 stream_index:0
pts:15 pts_time:0.6 dts:11 dts_time:0.44 duration:0 duration_time:0 stream_index:0
pts:14 pts_time:0.56 dts:12 dts_time:0.48 duration:0 duration_time:0 stream_index:0
pts:13 pts_time:0.52 dts:13 dts_time:0.52 duration:0 duration_time:0 stream_index:0
pts:19 pts_time:0.76 dts:14 dts_time:0.56 duration:0 duration_time:0 stream_index:0
pts:17 pts_time:0.68 dts:15 dts_time:0.6 duration:0 duration_time:0 stream_index:0
pts:16 pts_time:0.64 dts:16 dts_time:0.64 duration:0 duration_time:0 stream_index:0
pts:18 pts_time:0.72 dts:17 dts_time:0.68 duration:0 duration_time:0 stream_index:0
pts:24 pts_time:0.96 dts:18 dts_time:0.72 duration:0 duration_time:0 stream_index:0
pts:22 pts_time:0.88 dts:19 dts_time:0.76 duration:0 duration_time:0 stream_index:0
pts:20 pts_time:0.8 dts:20 dts_time:0.8 duration:0 duration_time:0 stream_index:0
pts:21 pts_time:0.84 dts:21 dts_time:0.84 duration:0 duration_time:0 stream_index:0
pts:23 pts_time:0.92 dts:22 dts_time:0.88 duration:0 duration_time:0 stream_index:0
pts:29 pts_time:1.16 dts:23 dts_time:0.92 duration:0 duration_time:0 stream_index:0
pts:27 pts_time:1.08 dts:24 dts_time:0.96 duration:0 duration_time:0 stream_index:0
pts:25 pts_time:1 dts:25 dts_time:1 duration:0 duration_time:0 stream_index:0
pts:26 pts_time:1.04 dts:26 dts_time:1.04 duration:0 duration_time:0 stream_index:0
pts:28 pts_time:1.12 dts:27 dts_time:1.08 duration:0 duration_time:0 stream_index:0
pts:34 pts_time:1.36 dts:28 dts_time:1.12 duration:0 duration_time:0 stream_index:0
pts:32 pts_time:1.28 dts:29 dts_time:1.16 duration:0 duration_time:0 stream_index:0
pts:30 pts_time:1.2 dts:30 dts_time:1.2 duration:0 duration_time:0 stream_index:0
pts:31 pts_time:1.24 dts:31 dts_time:1.24 duration:0 duration_time:0 stream_index:0
pts:33 pts_time:1.32 dts:32 dts_time:1.28 duration:0 duration_time:0 stream_index:0
pts:36 pts_time:1.44 dts:33 dts_time:1.32 duration:0 duration_time:0 stream_index:0
pts:35 pts_time:1.4 dts:34 dts_time:1.36 duration:0 duration_time:0 stream_index:0
pts:41 pts_time:1.64 dts:35 dts_time:1.4 duration:0 duration_time:0 stream_index:0
pts:39 pts_time:1.56 dts:36 dts_time:1.44 duration:0 duration_time:0 stream_index:0
pts:37 pts_time:1.48 dts:37 dts_time:1.48 duration:0 duration_time:0 stream_index:0
pts:38 pts_time:1.52 dts:38 dts_time:1.52 duration:0 duration_time:0 stream_index:0
pts:40 pts_time:1.6 dts:39 dts_time:1.56 duration:0 duration_time:0 stream_index:0
pts:46 pts_time:1.84 dts:40 dts_time:1.6 duration:0 duration_time:0 stream_index:0
pts:44 pts_time:1.76 dts:41 dts_time:1.64 duration:0 duration_time:0 stream_index:0
pts:42 pts_time:1.68 dts:42 dts_time:1.68 duration:0 duration_time:0 stream_index:0
pts:43 pts_time:1.72 dts:43 dts_time:1.72 duration:0 duration_time:0 stream_index:0
pts:45 pts_time:1.8 dts:44 dts_time:1.76 duration:0 duration_time:0 stream_index:0
pts:48 pts_time:1.92 dts:45 dts_time:1.8 duration:0 duration_time:0 stream_index:0
pts:47 pts_time:1.88 dts:46 dts_time:1.84 duration:0 duration_time:0 stream_index:0
pts:53 pts_time:2.12 dts:47 dts_time:1.88 duration:0 duration_time:0 stream_index:0
pts:51 pts_time:2.04 dts:48 dts_time:1.92 duration:0 duration_time:0 stream_index:0
pts:49 pts_time:1.96 dts:49 dts_time:1.96 duration:0 duration_time:0 stream_index:0
pts:50 pts_time:2 dts:50 dts_time:2 duration:0 duration_time:0 stream_index:0
pts:52 pts_time:2.08 dts:51 dts_time:2.04 duration:0 duration_time:0 stream_index:0
pts:58 pts_time:2.32 dts:52 dts_time:2.08 duration:0 duration_time:0 stream_index:0
pts:56 pts_time:2.24 dts:53 dts_time:2.12 duration:0 duration_time:0 stream_index:0
pts:54 pts_time:2.16 dts:54 dts_time:2.16 duration:0 duration_time:0 stream_index:0
pts:55 pts_time:2.2 dts:55 dts_time:2.2 duration:0 duration_time:0 stream_index:0
pts:57 pts_time:2.28 dts:56 dts_time:2.24 duration:0 duration_time:0 stream_index:0
pts:60 pts_time:2.4 dts:57 dts_time:2.28 duration:0 duration_time:0 stream_index:0
pts:59 pts_time:2.36 dts:58 dts_time:2.32 duration:0 duration_time:0 stream_index:0
pts:63 pts_time:2.52 dts:59 dts_time:2.36 duration:0 duration_time:0 stream_index:0
pts:62 pts_time:2.48 dts:60 dts_time:2.4 duration:0 duration_time:0 stream_index:0
pts:61 pts_time:2.44 dts:61 dts_time:2.44 duration:0 duration_time:0 stream_index:0
pts:67 pts_time:2.68 dts:62 dts_time:2.48 duration:0 duration_time:0 stream_index:0
pts:65 pts_time:2.6 dts:63 dts_time:2.52 duration:0 duration_time:0 stream_index:0
pts:64 pts_time:2.56 dts:64 dts_time:2.56 duration:0 duration_time:0 stream_index:0
pts:66 pts_time:2.64 dts:65 dts_time:2.6 duration:0 duration_time:0 stream_index:0
pts:72 pts_time:2.88 dts:66 dts_time:2.64 duration:0 duration_time:0 stream_index:0
pts:70 pts_time:2.8 dts:67 dts_time:2.68 duration:0 duration_time:0 stream_index:0
pts:68 pts_time:2.72 dts:68 dts_time:2.72 duration:0 duration_time:0 stream_index:0
pts:69 pts_time:2.76 dts:69 dts_time:2.76 duration:0 duration_time:0 stream_index:0
pts:71 pts_time:2.84 dts:70 dts_time:2.8 duration:0 duration_time:0 stream_index:0
pts:77 pts_time:3.08 dts:71 dts_time:2.84 duration:0 duration_time:0 stream_index:0
pts:75 pts_time:3 dts:72 dts_time:2.88 duration:0 duration_time:0 stream_index:0
pts:73 pts_time:2.92 dts:73 dts_time:2.92 duration:0 duration_time:0 stream_index:0
pts:74 pts_time:2.96 dts:74 dts_time:2.96 duration:0 duration_time:0 stream_index:0
pts:76 pts_time:3.04 dts:75 dts_time:3 duration:0 duration_time:0 stream_index:0
pts:82 pts_time:3.28 dts:76 dts_time:3.04 duration:0 duration_time:0 stream_index:0
pts:80 pts_time:3.2 dts:77 dts_time:3.08 duration:0 duration_time:0 stream_index:0
pts:78 pts_time:3.12 dts:78 dts_time:3.12 duration:0 duration_time:0 stream_index:0
pts:79 pts_time:3.16 dts:79 dts_time:3.16 duration:0 duration_time:0 stream_index:0
pts:81 pts_time:3.24 dts:80 dts_time:3.2 duration:0 duration_time:0 stream_index:0
pts:84 pts_time:3.36 dts:81 dts_time:3.24 duration:0 duration_time:0 stream_index:0
pts:83 pts_time:3.32 dts:82 dts_time:3.28 duration:0 duration_time:0 stream_index:0
pts:89 pts_time:3.56 dts:83 dts_time:3.32 duration:0 duration_time:0 stream_index:0
pts:87 pts_time:3.48 dts:84 dts_time:3.36 duration:0 duration_time:0 stream_index:0
pts:85 pts_time:3.4 dts:85 dts_time:3.4 duration:0 duration_time:0 stream_index:0
pts:86 pts_time:3.44 dts:86 dts_time:3.44 duration:0 duration_time:0 stream_index:0
pts:88 pts_time:3.52 dts:87 dts_time:3.48 duration:0 duration_time:0 stream_index:0
pts:91 pts_time:3.64 dts:88 dts_time:3.52 duration:0 duration_time:0 stream_index:0
pts:90 pts_time:3.6 dts:89 dts_time:3.56 duration:0 duration_time:0 stream_index:0
pts:96 pts_time:3.84 dts:90 dts_time:3.6 duration:0 duration_time:0 stream_index:0
pts:94 pts_time:3.76 dts:91 dts_time:3.64 duration:0 duration_time:0 stream_index:0
pts:92 pts_time:3.68 dts:92 dts_time:3.68 duration:0 duration_time:0 stream_index:0
pts:93 pts_time:3.72 dts:93 dts_time:3.72 duration:0 duration_time:0 stream_index:0
pts:95 pts_time:3.8 dts:94 dts_time:3.76 duration:0 duration_time:0 stream_index:0
pts:101 pts_time:4.04 dts:95 dts_time:3.8 duration:0 duration_time:0 stream_index:0
pts:99 pts_time:3.96 dts:96 dts_time:3.84 duration:0 duration_time:0 stream_index:0
pts:97 pts_time:3.88 dts:97 dts_time:3.88 duration:0 duration_time:0 stream_index:0
pts:98 pts_time:3.92 dts:98 dts_time:3.92 duration:0 duration_time:0 stream_index:0
pts:100 pts_time:4 dts:99 dts_time:3.96 duration:0 duration_time:0 stream_index:0
pts:106 pts_time:4.24 dts:100 dts_time:4 duration:0 duration_time:0 stream_index:0
pts:104 pts_time:4.16 dts:101 dts_time:4.04 duration:0 duration_time:0 stream_index:0
pts:102 pts_time:4.08 dts:102 dts_time:4.08 duration:0 duration_time:0 stream_index:0
pts:103 pts_time:4.12 dts:103 dts_time:4.12 duration:0 duration_time:0 stream_index:0
pts:105 pts_time:4.2 dts:104 dts_time:4.16 duration:0 duration_time:0 stream_index:0
pts:108 pts_time:4.32 dts:105 dts_time:4.2 duration:0 duration_time:0 stream_index:0
pts:107 pts_time:4.28 dts:106 dts_time:4.24 duration:0 duration_time:0 stream_index:0
pts:111 pts_time:4.44 dts:107 dts_time:4.28 duration:0 duration_time:0 stream_index:0
pts:110 pts_time:4.4 dts:108 dts_time:4.32 duration:0 duration_time:0 stream_index:0
pts:109 pts_time:4.36 dts:109 dts_time:4.36 duration:0 duration_time:0 stream_index:0
pts:115 pts_time:4.6 dts:110 dts_time:4.4 duration:0 duration_time:0 stream_index:0
pts:113 pts_time:4.52 dts:111 dts_time:4.44 duration:0 duration_time:0 stream_index:0
pts:112 pts_time:4.48 dts:112 dts_time:4.48 duration:0 duration_time:0 stream_index:0
pts:114 pts_time:4.56 dts:113 dts_time:4.52 duration:0 duration_time:0 stream_index:0
pts:120 pts_time:4.8 dts:114 dts_time:4.56 duration:0 duration_time:0 stream_index:0
pts:118 pts_time:4.72 dts:115 dts_time:4.6 duration:0 duration_time:0 stream_index:0
pts:116 pts_time:4.64 dts:116 dts_time:4.64 duration:0 duration_time:0 stream_index:0
pts:117 pts_time:4.68 dts:117 dts_time:4.68 duration:0 duration_time:0 stream_index:0
pts:119 pts_time:4.76 dts:118 dts_time:4.72 duration:0 duration_time:0 stream_index:0
pts:125 pts_time:5 dts:119 dts_time:4.76 duration:0 duration_time:0 stream_index:0
pts:123 pts_time:4.92 dts:120 dts_time:4.8 duration:0 duration_time:0 stream_index:0
pts:121 pts_time:4.84 dts:121 dts_time:4.84 duration:0 duration_time:0 stream_index:0
pts:122 pts_time:4.88 dts:122 dts_time:4.88 duration:0 duration_time:0 stream_index:0
pts:124 pts_time:4.96 dts:123 dts_time:4.92 duration:0 duration_time:0 stream_index:0
pts:130 pts_time:5.2 dts:124 dts_time:4.96 duration:0 duration_time:0 stream_index:0
pts:128 pts_time:5.12 dts:125 dts_time:5 duration:0 duration_time:0 stream_index:0
pts:126 pts_time:5.04 dts:126 dts_time:5.04 duration:0 duration_time:0 stream_index:0
pts:127 pts_time:5.08 dts:127 dts_time:5.08 duration:0 duration_time:0 stream_index:0
pts:129 pts_time:5.16 dts:128 dts_time:5.12 duration:0 duration_time:0 stream_index:0
pts:132 pts_time:5.28 dts:129 dts_time:5.16 duration:0 duration_time:0 stream_index:0
pts:131 pts_time:5.24 dts:130 dts_time:5.2 duration:0 duration_time:0 stream_index:0
pts:137 pts_time:5.48 dts:131 dts_time:5.24 duration:0 duration_time:0 stream_index:0
pts:135 pts_time:5.4 dts:132 dts_time:5.28 duration:0 duration_time:0 stream_index:0
pts:133 pts_time:5.32 dts:133 dts_time:5.32 duration:0 duration_time:0 stream_index:0
pts:134 pts_time:5.36 dts:134 dts_time:5.36 duration:0 duration_time:0 stream_index:0
pts:136 pts_time:5.44 dts:135 dts_time:5.4 duration:0 duration_time:0 stream_index:0
pts:142 pts_time:5.68 dts:136 dts_time:5.44 duration:0 duration_time:0 stream_index:0
pts:140 pts_time:5.6 dts:137 dts_time:5.48 duration:0 duration_time:0 stream_index:0
pts:138 pts_time:5.52 dts:138 dts_time:5.52 duration:0 duration_time:0 stream_index:0
pts:139 pts_time:5.56 dts:139 dts_time:5.56 duration:0 duration_time:0 stream_index:0
pts:141 pts_time:5.64 dts:140 dts_time:5.6 duration:0 duration_time:0 stream_index:0
pts:144 pts_time:5.76 dts:141 dts_time:5.64 duration:0 duration_time:0 stream_index:0
pts:143 pts_time:5.72 dts:142 dts_time:5.68 duration:0 duration_time:0 stream_index:0
pts:149 pts_time:5.96 dts:143 dts_time:5.72 duration:0 duration_time:0 stream_index:0
pts:147 pts_time:5.88 dts:144 dts_time:5.76 duration:0 duration_time:0 stream_index:0
pts:145 pts_time:5.8 dts:145 dts_time:5.8 duration:0 duration_time:0 stream_index:0
pts:146 pts_time:5.84 dts:146 dts_time:5.84 duration:0 duration_time:0 stream_index:0
pts:148 pts_time:5.92 dts:147 dts_time:5.88 duration:0 duration_time:0 stream_index:0
pts:154 pts_time:6.16 dts:148 dts_time:5.92 duration:0 duration_time:0 stream_index:0
pts:152 pts_time:6.08 dts:149 dts_time:5.96 duration:0 duration_time:0 stream_index:0
pts:150 pts_time:6 dts:150 dts_time:6 duration:0 duration_time:0 stream_index:0
pts:151 pts_time:6.04 dts:151 dts_time:6.04 duration:0 duration_time:0 stream_index:0
pts:153 pts_time:6.12 dts:152 dts_time:6.08 duration:0 duration_time:0 stream_index:0
pts:156 pts_time:6.24 dts:153 dts_time:6.12 duration:0 duration_time:0 stream_index:0
pts:155 pts_time:6.2 dts:154 dts_time:6.16 duration:0 duration_time:0 stream_index:0
pts:159 pts_time:6.36 dts:155 dts_time:6.2 duration:0 duration_time:0 stream_index:0
pts:158 pts_time:6.32 dts:156 dts_time:6.24 duration:0 duration_time:0 stream_index:0
pts:157 pts_time:6.28 dts:157 dts_time:6.28 duration:0 duration_time:0 stream_index:0
pts:163 pts_time:6.52 dts:158 dts_time:6.32 duration:0 duration_time:0 stream_index:0
pts:161 pts_time:6.44 dts:159 dts_time:6.36 duration:0 duration_time:0 stream_index:0
pts:160 pts_time:6.4 dts:160 dts_time:6.4 duration:0 duration_time:0 stream_index:0
pts:162 pts_time:6.48 dts:161 dts_time:6.44 duration:0 duration_time:0 stream_index:0
pts:168 pts_time:6.72 dts:162 dts_time:6.48 duration:0 duration_time:0 stream_index:0
pts:166 pts_time:6.64 dts:163 dts_time:6.52 duration:0 duration_time:0 stream_index:0
pts:164 pts_time:6.56 dts:164 dts_time:6.56 duration:0 duration_time:0 stream_index:0
pts:165 pts_time:6.6 dts:165 dts_time:6.6 duration:0 duration_time:0 stream_index:0
pts:167 pts_time:6.68 dts:166 dts_time:6.64 duration:0 duration_time:0 stream_index:0
pts:173 pts_time:6.92 dts:167 dts_time:6.68 duration:0 duration_time:0 stream_index:0
pts:171 pts_time:6.84 dts:168 dts_time:6.72 duration:0 duration_time:0 stream_index:0
pts:169 pts_time:6.76 dts:169 dts_time:6.76 duration:0 duration_time:0 stream_index:0
pts:170 pts_time:6.8 dts:170 dts_time:6.8 duration:0 duration_time:0 stream_index:0
pts:172 pts_time:6.88 dts:171 dts_time:6.84 duration:0 duration_time:0 stream_index:0
pts:178 pts_time:7.12 dts:172 dts_time:6.88 duration:0 duration_time:0 stream_index:0
pts:176 pts_time:7.04 dts:173 dts_time:6.92 duration:0 duration_time:0 stream_index:0
pts:174 pts_time:6.96 dts:174 dts_time:6.96 duration:0 duration_time:0 stream_index:0
pts:175 pts_time:7 dts:175 dts_time:7 duration:0 duration_time:0 stream_index:0
pts:177 pts_time:7.08 dts:176 dts_time:7.04 duration:0 duration_time:0 stream_index:0
pts:180 pts_time:7.2 dts:177 dts_time:7.08 duration:0 duration_time:0 stream_index:0
pts:179 pts_time:7.16 dts:178 dts_time:7.12 duration:0 duration_time:0 stream_index:0
pts:185 pts_time:7.4 dts:179 dts_time:7.16 duration:0 duration_time:0 stream_index:0
pts:183 pts_time:7.32 dts:180 dts_time:7.2 duration:0 duration_time:0 stream_index:0
pts:181 pts_time:7.24 dts:181 dts_time:7.24 duration:0 duration_time:0 stream_index:0
pts:182 pts_time:7.28 dts:182 dts_time:7.28 duration:0 duration_time:0 stream_index:0
pts:184 pts_time:7.36 dts:183 dts_time:7.32 duration:0 duration_time:0 stream_index:0
pts:187 pts_time:7.48 dts:184 dts_time:7.36 duration:0 duration_time:0 stream_index:0
pts:186 pts_time:7.44 dts:185 dts_time:7.4 duration:0 duration_time:0 stream_index:0
pts:192 pts_time:7.68 dts:186 dts_time:7.44 duration:0 duration_time:0 stream_index:0
pts:190 pts_time:7.6 dts:187 dts_time:7.48 duration:0 duration_time:0 stream_index:0
pts:188 pts_time:7.52 dts:188 dts_time:7.52 duration:0 duration_time:0 stream_index:0
pts:189 pts_time:7.56 dts:189 dts_time:7.56 duration:0 duration_time:0 stream_index:0
pts:191 pts_time:7.64 dts:190 dts_time:7.6 duration:0 duration_time:0 stream_index:0
pts:197 pts_time:7.88 dts:191 dts_time:7.64 duration:0 duration_time:0 stream_index:0
pts:195 pts_time:7.8 dts:192 dts_time:7.68 duration:0 duration_time:0 stream_index:0
pts:193 pts_time:7.72 dts:193 dts_time:7.72 duration:0 duration_time:0 stream_index:0
pts:194 pts_time:7.76 dts:194 dts_time:7.76 duration:0 duration_time:0 stream_index:0
pts:196 pts_time:7.84 dts:195 dts_time:7.8 duration:0 duration_time:0 stream_index:0
pts:202 pts_time:8.08 dts:196 dts_time:7.84 duration:0 duration_time:0 stream_index:0
pts:200 pts_time:8 dts:197 dts_time:7.88 duration:0 duration_time:0 stream_index:0
pts:198 pts_time:7.92 dts:198 dts_time:7.92 duration:0 duration_time:0 stream_index:0
pts:199 pts_time:7.96 dts:199 dts_time:7.96 duration:0 duration_time:0 stream_index:0
pts:201 pts_time:8.04 dts:200 dts_time:8 duration:0 duration_time:0 stream_index:0
pts:204 pts_time:8.16 dts:201 dts_time:8.04 duration:0 duration_time:0 stream_index:0
pts:203 pts_time:8.12 dts:202 dts_time:8.08 duration:0 duration_time:0 stream_index:0
pts:207 pts_time:8.28 dts:203 dts_time:8.12 duration:0 duration_time:0 stream_index:0
pts:206 pts_time:8.24 dts:204 dts_time:8.16 duration:0 duration_time:0 stream_index:0
pts:205 pts_time:8.2 dts:205 dts_time:8.2 duration:0 duration_time:0 stream_index:0
pts:211 pts_time:8.44 dts:206 dts_time:8.24 duration:0 duration_time:0 stream_index:0
pts:209 pts_time:8.36 dts:207 dts_time:8.28 duration:0 duration_time:0 stream_index:0
pts:208 pts_time:8.32 dts:208 dts_time:8.32 duration:0 duration_time:0 stream_index:0
pts:210 pts_time:8.4 dts:209 dts_time:8.36 duration:0 duration_time:0 stream_index:0
pts:216 pts_time:8.64 dts:210 dts_time:8.4 duration:0 duration_time:0 stream_index:0
pts:214 pts_time:8.56 dts:211 dts_time:8.44 duration:0 duration_time:0 stream_index:0
pts:212 pts_time:8.48 dts:212 dts_time:8.48 duration:0 duration_time:0 stream_index:0
pts:213 pts_time:8.52 dts:213 dts_time:8.52 duration:0 duration_time:0 stream_index:0
pts:215 pts_time:8.6 dts:214 dts_time:8.56 duration:0 duration_time:0 stream_index:0
pts:221 pts_time:8.84 dts:215 dts_time:8.6 duration:0 duration_time:0 stream_index:0
pts:219 pts_time:8.76 dts:216 dts_time:8.64 duration:0 duration_time:0 stream_index:0
pts:217 pts_time:8.68 dts:217 dts_time:8.68 duration:0 duration_time:0 stream_index:0
pts:218 pts_time:8.72 dts:218 dts_time:8.72 duration:0 duration_time:0 stream_index:0
pts:220 pts_time:8.8 dts:219 dts_time:8.76 duration:0 duration_time:0 stream_index:0
pts:226 pts_time:9.04 dts:220 dts_time:8.8 duration:0 duration_time:0 stream_index:0
pts:224 pts_time:8.96 dts:221 dts_time:8.84 duration:0 duration_time:0 stream_index:0
pts:222 pts_time:8.88 dts:222 dts_time:8.88 duration:0 duration_time:0 stream_index:0
pts:223 pts_time:8.92 dts:223 dts_time:8.92 duration:0 duration_time:0 stream_index:0
pts:225 pts_time:9 dts:224 dts_time:8.96 duration:0 duration_time:0 stream_index:0
pts:228 pts_time:9.12 dts:225 dts_time:9 duration:0 duration_time:0 stream_index:0
pts:227 pts_time:9.08 dts:226 dts_time:9.04 duration:0 duration_time:0 stream_index:0
pts:233 pts_time:9.32 dts:227 dts_time:9.08 duration:0 duration_time:0 stream_index:0
pts:231 pts_time:9.24 dts:228 dts_time:9.12 duration:0 duration_time:0 stream_index:0
pts:229 pts_time:9.16 dts:229 dts_time:9.16 duration:0 duration_time:0 stream_index:0
pts:230 pts_time:9.2 dts:230 dts_time:9.2 duration:0 duration_time:0 stream_index:0
pts:232 pts_time:9.28 dts:231 dts_time:9.24 duration:0 duration_time:0 stream_index:0
pts:235 pts_time:9.4 dts:232 dts_time:9.28 duration:0 duration_time:0 stream_index:0
pts:234 pts_time:9.36 dts:233 dts_time:9.32 duration:0 duration_time:0 stream_index:0
pts:240 pts_time:9.6 dts:234 dts_time:9.36 duration:0 duration_time:0 stream_index:0
pts:238 pts_time:9.52 dts:235 dts_time:9.4 duration:0 duration_time:0 stream_index:0
pts:236 pts_time:9.44 dts:236 dts_time:9.44 duration:0 duration_time:0 stream_index:0
pts:237 pts_time:9.48 dts:237 dts_time:9.48 duration:0 duration_time:0 stream_index:0
pts:239 pts_time:9.56 dts:238 dts_time:9.52 duration:0 duration_time:0 stream_index:0
pts:245 pts_time:9.8 dts:239 dts_time:9.56 duration:0 duration_time:0 stream_index:0
pts:243 pts_time:9.72 dts:240 dts_time:9.6 duration:0 duration_time:0 stream_index:0
pts:241 pts_time:9.64 dts:241 dts_time:9.64 duration:0 duration_time:0 stream_index:0
pts:242 pts_time:9.68 dts:242 dts_time:9.68 duration:0 duration_time:0 stream_index:0
pts:244 pts_time:9.76 dts:243 dts_time:9.72 duration:0 duration_time:0 stream_index:0
pts:250 pts_time:10 dts:244 dts_time:9.76 duration:0 duration_time:0 stream_index:0
pts:248 pts_time:9.92 dts:245 dts_time:9.8 duration:0 duration_time:0 stream_index:0
pts:246 pts_time:9.84 dts:246 dts_time:9.84 duration:0 duration_time:0 stream_index:0
pts:247 pts_time:9.88 dts:247 dts_time:9.88 duration:0 duration_time:0 stream_index:0
pts:249 pts_time:9.96 dts:248 dts_time:9.92 duration:0 duration_time:0 stream_index:0
x265 : frame I:   21, Avg QP:9.79kb/s: 987.26
x265 : frame P:   42, Avg QP:10.55kb/s: 275.23
x265 : frame B:    188, Avg QP:17.10kb/s: 82.62   
x265 : Weighted P-Frames: Y:0.0% UV:0.0%
x265 : consecutive B-frames: 1.6% 23.8% 7.9% 7.9% 58.7%

encoded 251 frames in 1.52s (165.47 fps), 190.54 kb/s, Avg QP:15.40
用ffprobe检测test.mkv的结果如下:
ffprobe version n6.1-6-g884a660cae Copyright (c) 2007-2023 the FFmpeg developers
built with gcc 11 (Ubuntu 11.4.0-1ubuntu1~22.04)
configuration: --target-os=linux --prefix=./install_amd64 --arch=x86_64 --enable-libx265 --enable-debug=3 --enable-gpl --disable-stripping --disable-optimizations
libavutil      58. 29.100 / 58. 29.100
libavcodec   60. 31.102 / 60. 31.102
libavformat    60. 16.100 / 60. 16.100
libavdevice    60.3.100 / 60.3.100
libavfilter   9. 12.100 /9. 12.100
libswscale      7.5.100 /7.5.100
libswresample   4. 12.100 /4. 12.100
libpostproc    57.3.100 / 57.3.100
Input #0, hevc, from 'test.mp4':
Duration: N/A, bitrate: N/A
Stream #0:0: Video: hevc (Main), yuv420p(tv), 352x288, 25 fps, 25 tbr, 1200k tbn

生成的test.mkv视频见附件。


页: [1]
查看完整版本: ffmpeg 6.1 doc/examples/mux.c使用hevc编码出现问题