AVFormatContext封装层

本文围绕FFmpeg的音视频封装层展开,介绍了封装格式概念、FFmpeg支持的封装格式及h264/aac裸流封装格式。讲解了FFmpeg主要API,如avformat_open_input等。还阐述了解封装和转封装原理,并给出示例代码,转封装具有处理速度快、视音频质量无损的特点。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


前言

AVFormatContext 是一个贯穿始终的数据结构,很多函数都用到它作为参数,是输入输出相关信息的一个容器,本文讲解 AVFormatContext 的封装层,主要包括两大数据结构:AVInputFormat,AVOutputFormat。

封装格式简介

封装格式(container format)可以看作是编码流(音频流、视频流等)数据的一层外壳,将编码后的数据存储于此封装格式的文件之内。
封装又称容器,容器的称法更为形象,所谓容器,就是存放内容的器具,例如饮料是内容,那么装饮料的瓶子就是容器。
不同封装格式适用于不同的场合,支持的编码格式不一样,几个常用的封装格式如下:

文件扩展名推出机构流媒体支持的视频编码支持的音频编码目前使用领域
AVI(.avi)Microsoft公司不支持几乎所有格式几乎所有格式BT下载影视
Flash Video(.flv)Adobe公司支持Sorenson/VP6/H.264MP3/ADPCM/Linear PCM/AAC等互联网视频网站
MP4(.mp4)MPEG组织支持MPEG-2/MPEG-4/H.264/H.263等AAC/MPEG-1 Layers I,II,III/AC-3等互联网视频网站
MPEGTS(.ts)MPEG组织支持MPEG-1/MPEG-2/MPEG-4/H.264/MPEG-1 Layers I,II,III/AACIPTV,数字电视
Matroska(.mkv)CoreCodec公司支持几乎所有的格式几乎所有格式互联网视频网站
Real Video(.rmvb)Real Networks公司支持RealVideo 8,9,10AAC/Cook Codec/RealAudio LosslessBT下载影视

FFMPEG中的封装格式

FFmpeg 关于封装格式的处理涉及打开输入文件、打开输出文件、从输入文件读取编码帧、往输出文件写入编码帧这几个步骤,这些都不涉及编码解码层面。
在 FFmpeg 中,mux 指复用,是 multiplex 的缩写,表示将多路流(视频、音频、字幕等)混入一路输出中(普通文件、流等)。demux 指解复用,是 mux 的反操作,表示从一路输入中分离出多路流(视频、音频、字幕等)。
mux 处理的是输入格式,demux 处理的输出格式。输入/输出媒体格式涉及文件格式和封装格式两个概念【封装格式】 。

查看FFMPEG支持的封装格式

使用 ffmpeg -formats 命令可以查看 FFmpeg 支持的封装格式。 FFmpeg 支持的封装非常多, 下面仅列出最常用的几种:

h264/aac 裸流封装格式

h264 本来是编码格式,当作封装格式时表示的是 H.264 裸流格式,所谓裸流就是不含封装信息的流,也就是没穿衣服的流。aac 等封装格式类似。
FFmpeg 工程源码中 h264 编码格式以及 h264 封装格式的定义:FFmpeg 工程包含 h264 解码器,而不包含 h264 编码器(一般使用第三方 libx264 编码器用作 h264 编码),所以只有解码器定义:

AVCodec ff_h264_decoder = {
.name = "h264",
.long_name = NULL_IF_CONFIG_SMALL("H.264 / AVC / MPEG-4 AVC /
MPEG-4 part 10"),
.type = AVMEDIA_TYPE_VIDEO,
.id = AV_CODEC_ID_H264,
......
};

h264封装格式如下:

AVOutputFormat ff_h264_muxer = {
	.name = "h264",
	.long_name = NULL_IF_CONFIG_SMALL("raw H.264 video"),
	.extensions = "h264,264",
	.audio_codec = AV_CODEC_ID_NONE,
	.video_codec = AV_CODEC_ID_H264,
	.write_header = force_one_stream,
	.write_packet = ff_raw_write_packet,
	.check_bitstream = h264_check_bitstream,
	.flags = AVFMT_NOTIMESTAMPS,
};

API介绍

FFmpeg 中将编码帧及未编码帧均称作 frame,本文为方便,将编码帧称作 packet未编码帧称作 frame
未压缩的,未编码的:原始图片(yuvrgb)或声音(**pcm **流)。
压缩的, 编码的:H264/265,aac/ac3/mp3
最主要的 API 有如下几个:

avformat_open_input():这个函数会打开输入媒体文件,读取文件头,将文件格式信息存储在第一个参数 AVFormatContext 中。
avformat_find_stream_info():这个函数会读取一段视频文件数据并尝试解码,将取到的流信息填入 AVFormatContext.streams 中。AVFormatContext.streams 是一个指针数组,数组大小是 AVFormatContext.nb_streams。
av_read_frame():本函数用于解复用过程。本函数将存储在输入文件中的数据分割为多个 packet, 每次调用将得到一个 packet。 packet 可能是视频帧、音频帧或其他数据,解码器只会解码视频帧或音频帧,非音视频数据并不会被扔掉、从而能向解码器提供尽可能多的信息。
对于视频来说,一个 packet 只包含一个视频帧;
对于音频来说,若是帧长固定的格式则一个 packet 可包含整数个音频帧,若是帧长可变的格式则一个 packet 只包含一个音频帧。
读取到的 packet 每次使用完之后应调用 *av_packet_unref(AVPacket pkt) 清空 packet。否则会造成内存泄露
av_write_frame():本函数用于复用过程,将 packet 写入输出媒体。
packet 交织是指:不同流的 packet 在输出媒体文件中应严格按照 packet 中 dts 递增的顺序交错存放。
本函数直接将 packet 写入复用器(muxer),不会缓存或记录任何 packet。本函数不负责不同流的 packet 交织问题。,由调用者负责。
如果调用者不愿处理 packet 交织问题,应调用 **av_interleaved_write_frame() **替代本函数。
av_interleaved_write_frame():本函数用于复用过程, 将 packet 写入输出媒体。
本函数将按需在内部缓存 packet,从而确保输出媒体中不同流的 packet 能按照 dts 增长的顺序正确交织。
**avio_open() **:创建并初始化一个 AVIOContext,用于访问输出媒体文件。
avformat_write_header():向输出文件写入文件头信息。
av_write_trailer():向输出文件写入文件尾信息。

解封装

原理讲解

本例子实现的是将音视频分离,例如将封装格式为 FLV、MKV、MP4、AVI 等封装格式的文件,将音频、视频读取出来并打印。实现的过程,可以大致用如下图表示:

示例代码1

兼容旧版本使用遍历的方式查找给定媒体文件中音频流或视频流,未使用新版本的 FFmpeg 新增加的函数 av_find_best_stream()

#include <stdio.h>
extern "C" {
    #include <libavformat/avformat.h>
}

/**
* @brief 将一个AVRational类型的分数转换为double类型的浮点数
* @param r:r为一个AVRational类型的结构体变量,成员num表示分子,成员den表示分母,r的值即为(double)r.num / (double)r.den。用这种方法表示可以最大程度地避免精度的损失
* @return 如果变量r的分母den为0,则返回0(为了避免除数为0导致程序死掉);其余情况返回(double)r.num / (double)r.den
*/
static double r2d(AVRational r)
{
    return r.den == 0 ? 0 : (double)r.num / (double)r.den;
}

int main(int argc, char *argv[])
{
    //需要读取的本地媒体文件相对路径为 ./debug/test.mp4
    const char *path = "./debug/test.mp4";
    ///av_register_all(); //初始化所有组件,只有调用了该函数,才能使用复用器和编解码器。否则,调用函数avformat_open_input会失败,无法获取媒体文件的信息
    avformat_network_init(); //打开网络流。这里如果只需要读取本地媒体文件,不需要用到网络功能,可以不用加上这一句
    AVDictionary *opts = NULL;

    //AVFormatContext是描述一个媒体文件或媒体流的构成和基本信息的结构体
    AVFormatContext *ic = NULL;

    //媒体打开函数,调用该函数可以获得路径为path的媒体文件的信息,并把这些信息保存到指针ic指向的空间中(调用该函数后会分配一个空间,让指针ic指向该空间)
    int re = avformat_open_input(&ic, path, NULL, &opts);
    if (re != 0) {
        char buf[1024] = { 0 };
        av_strerror(re, buf, sizeof(buf) - 1);
        printf("open %s failed!:%s", path, buf);
    } else {
        qDebug("打开媒体文件 %s 成功!\n", path);

        //调用该函数可以进一步读取一部分视音频数据并且获得一些相关的信息。
        //调用avformat_open_input之后,我们无法获取到正确和所有的媒体参数,所以还得要调用avformat_find_stream_info进一步的去获取。
        avformat_find_stream_info(ic, NULL);

        //调用avformat_open_input读取到的媒体文件的路径/名字
        qDebug("媒体文件名称:%s\n", ic->url);

        //视音频流的个数,如果一个媒体文件既有音频,又有视频,则nb_streams的值为2。如果媒体文件只有音频,则值为1
        qDebug("视音频流的个数:%d\n", ic->nb_streams);

        //媒体文件的平均码率,单位为bps
        qDebug("媒体文件的平均码率:%lldbps\n", ic->bit_rate);

        qDebug("duration:%d\n", ic->duration);
        int tns, thh, tmm, tss;
        tns = (ic->duration) / AV_TIME_BASE;
        thh = tns / 3600;
        tmm = (tns % 3600) / 60;
        tss = (tns % 60);
        qDebug("媒体文件总时长:%d时%d分%d秒\n", thh, tmm, tss); //通过上述运算,可以得到媒体文件的总时长

        qDebug("\n");
        //通过遍历的方式读取媒体文件视频和音频的信息,
        //新版本的FFmpeg新增加了函数av_find_best_stream,也可以取得同样的效果,但这里为了兼容旧版本还是用这种遍历的方式
        for (int i = 0; i < ic->nb_streams; i++) {
            AVStream *as = ic->streams[i];
            if (AVMEDIA_TYPE_AUDIO == as->codecpar->codec_type) {
                qDebug("音频信息:\n");
                qDebug("index:%d\n", as->index);  //如果一个媒体文件既有音频,又有视频,则音频index的值一般为1。但该值不一定准确,所以还是得通过as->codecpar->codec_type判断是视频还是音频
                qDebug("音频采样率:%dHz\n", as->codecpar->sample_rate); //音频编解码器的采样率,单位为Hz
                //音频采样格式
                if (AV_SAMPLE_FMT_FLTP == as->codecpar->format) {
                    qDebug("音频采样格式:AV_SAMPLE_FMT_FLTP\n");
                } else if (AV_SAMPLE_FMT_S16P == as->codecpar->format) {
                    qDebug("音频采样格式:AV_SAMPLE_FMT_S16P\n");
                }
                qDebug("音频信道数目:%d\n", as->codecpar->ch_layout.nb_channels); //音频信道数目
                //音频压缩编码格式
                if (AV_CODEC_ID_AAC == as->codecpar->codec_id) {
                    qDebug("音频压缩编码格式:AAC\n");
                } else if (AV_CODEC_ID_MP3 == as->codecpar->codec_id) {
                    qDebug("音频压缩编码格式:MP3\n");
                }
                int DurationAudio = (as->duration) * r2d(as->time_base); //音频总时长,单位为秒。注意如果把单位放大为毫秒或者微妙,音频总时长跟视频总时长不一定相等的
                qDebug("音频总时长:%d时%d分%d秒\n", DurationAudio / 3600, (DurationAudio % 3600) / 60, (DurationAudio % 60)); //将音频总时长转换为时分秒的格式打印到控制台上
                qDebug("\n");
            } else if (AVMEDIA_TYPE_VIDEO == as->codecpar->codec_type) {
                qDebug("视频信息:\n");
                qDebug("index:%d\n", as->index);   //如果一个媒体文件既有音频,又有视频,则视频index的值一般为0。但该值不一定准确,所以还是得通过as->codecpar->codec_type判断是视频还是音频
                qDebug("视频帧率:%lffps\n", r2d(as->avg_frame_rate)); //视频帧率,单位为fps,表示每秒出现多少帧
                if (AV_CODEC_ID_MPEG4 == as->codecpar->codec_id) {
                    qDebug("视频压缩编码格式:MPEG4\n");
                }
                qDebug("帧宽度:%d 帧高度:%d\n", as->codecpar->width, as->codecpar->height); //视频帧宽度和帧高度
                int DurationVideo = (as->duration) * r2d(as->time_base); //视频总时长,单位为秒。注意如果把单位放大为毫秒或者微妙,音频总时长跟视频总时长不一定相等的
                qDebug("视频总时长:%d时%d分%d秒\n", DurationVideo / 3600, (DurationVideo % 3600) / 60, (DurationVideo % 60)); //将视频总时长转换为时分秒的格式打印到控制台上
                qDebug("\n");
            }
        }
        //av_dump_format(ic, 0, path, 0);
    }
    if (ic) {
        avformat_close_input(&ic); //关闭一个AVFormatContext,和函数avformat_open_input()成对使用
    }
    avformat_network_deinit();

    return 0;
}

运行结果:

打开媒体文件 ./debug/test.mp4 成功!
媒体文件名称:./debug/test.mp4
视音频流的个数:2
媒体文件的平均码率:2064441bps
duration:179968489
媒体文件总时长:0时2分59秒

视频信息:
index:0
视频帧率:24.932142fps
帧宽度:1280 帧高度:720
视频总时长:0时2分59秒

音频信息:
index:1
音频采样率:8000Hz
音频采样格式:AV_SAMPLE_FMT_FLTP
音频信道数目:2
音频压缩编码格式:AAC
音频总时长:0时2分58秒

示例代码2

使用新版本的 FFmpeg 新增加的函数 av_find_best_stream() 查找给定媒体文件中最佳的流(音频流或视频流)

#include <stdio.h>
extern "C"
{
    #include <libavformat/avformat.h>
}
int main(int argc, char **argv)
{
// 1. 打开文件
    const char *ifilename = "./debug/test.mp4";
    printf("in_filename = %s\n", ifilename);
    avformat_network_init();

    // AVFormatContext是描述一个媒体文件或媒体流的构成和基本信息的结构体
    AVFormatContext *ifmt_ctx = NULL;           // 输入文件的demux
    // 打开文件,主要是探测协议类型,如果是网络文件则创建网络链接
    int ret = avformat_open_input(&ifmt_ctx, ifilename, NULL, NULL);
    if (ret < 0) {
        char buf[1024] = {0};
        av_strerror(ret, buf, sizeof (buf) - 1);
        printf("open %s failed: %s\n", ifilename, buf);
        return -1;
    }

// 2. 读取码流信息
    ret = avformat_find_stream_info(ifmt_ctx, NULL);
    if (ret < 0)  //如果打开媒体文件失败,打印失败原因
    {
        char buf[1024] = { 0 };
        av_strerror(ret, buf, sizeof(buf) - 1);
        printf("avformat_find_stream_info %s failed:%s\n", ifilename, buf);
        avformat_close_input(&ifmt_ctx);
        return -1;
    }


// 3.打印总体信息
    printf_s("\n==== av_dump_format in_filename:%s ===\n", ifilename);
    av_dump_format(ifmt_ctx, 0, ifilename, 0);
    printf_s("\n==== av_dump_format finish =======\n\n");
    printf("media name:%s\n", ifmt_ctx->url);
    printf("stream number:%d\n", ifmt_ctx->nb_streams); //  nb_streams媒体流数量
    printf("media average ratio:%lldkbps\n",(int64_t)(ifmt_ctx->bit_rate/1024)); //  媒体文件的码率,单位为bps/1000=Kbps
    // duration: 媒体文件时长,单位微妙
    int total_seconds = (ifmt_ctx->duration) / AV_TIME_BASE;  // 1000us = 1ms, 1000ms = 1秒
    printf("audio duration: %02d:%02d:%02d\n",
           total_seconds / 3600, (total_seconds % 3600) / 60, (total_seconds % 60));
    printf("\n");

// 4.读取码流信息
    // 音频
    int audioindex = av_find_best_stream(ifmt_ctx, AVMEDIA_TYPE_AUDIO, -1, -1, NULL, 0);
    if (audioindex < 0) {
        printf("av_find_best_stream %s eror.", av_get_media_type_string(AVMEDIA_TYPE_AUDIO));
        return -1;
    }
    AVStream *audio_stream = ifmt_ctx->streams[audioindex];
    printf("----- Audio info:\n");
    printf("index: %d\n", audio_stream->index); // 序列号
    printf("samplarate: %d Hz\n", audio_stream->codecpar->sample_rate); // 采样率
    printf("sampleformat: %d\n", audio_stream->codecpar->format); // 采样格式 AV_SAMPLE_FMT_FLTP:8
    printf("audio codec: %d\n", audio_stream->codecpar->codec_id); // 编码格式 AV_CODEC_ID_MP3:86017 AV_CODEC_ID_AAC:86018
    if (audio_stream->duration != AV_NOPTS_VALUE) {
        int audio_duration = audio_stream->duration * av_q2d(audio_stream->time_base);
        printf("audio duration: %02d:%02d:%02d\n",
               audio_duration / 3600, (audio_duration % 3600) / 60, (audio_duration % 60));
    }

    // 视频
    int videoindex = av_find_best_stream(ifmt_ctx, AVMEDIA_TYPE_VIDEO, -1, -1, NULL, 0);
    if (videoindex < 0) {
        printf("av_find_best_stream %s eror.", av_get_media_type_string(AVMEDIA_TYPE_VIDEO));
        return -1;
    }
    AVStream *video_stream = ifmt_ctx->streams[videoindex];
    printf("----- Video info:\n");
    printf("index: %d\n", video_stream->index); // 序列号
    printf("fps: %lf\n", av_q2d(video_stream->avg_frame_rate)); // 帧率
    printf("width: %d, height:%d \n", video_stream->codecpar->width, video_stream->codecpar->height);
    printf("video codec: %d\n", video_stream->codecpar->codec_id); // 编码格式 AV_CODEC_ID_H264: 27
    if (video_stream->duration != AV_NOPTS_VALUE) {
        int video_duration = video_stream->duration * av_q2d(video_stream->time_base);
        printf("audio duration: %02d:%02d:%02d\n",
               video_duration / 3600, (video_duration % 3600) / 60, (video_duration % 60));
    }

// 5.提取码流
    AVPacket *pkt = av_packet_alloc();
    int pkt_count = 0;
    int print_max_count = 100;
    printf("\n-----av_read_frame start\n");
    while (1)
    {
        ret = av_read_frame(ifmt_ctx, pkt);
        if (ret < 0) {
            printf("av_read_frame end\n");
            break;
        }

        if(pkt_count++ < print_max_count)
        {
            if (pkt->stream_index == audioindex)
            {
                printf("audio pts: %lld\n", pkt->pts);
                printf("audio dts: %lld\n", pkt->dts);
                printf("audio size: %d\n", pkt->size);
                printf("audio pos: %lld\n", pkt->pos);
                printf("audio duration: %lf\n\n",
                       pkt->duration * av_q2d(ifmt_ctx->streams[audioindex]->time_base));
            }
            else if (pkt->stream_index == videoindex)
            {
                printf("video pts: %lld\n", pkt->pts);
                printf("video dts: %lld\n", pkt->dts);
                printf("video size: %d\n", pkt->size);
                printf("video pos: %lld\n", pkt->pos);
                printf("video duration: %lf\n\n",
                       pkt->duration * av_q2d(ifmt_ctx->streams[videoindex]->time_base));
            }
            else
            {
                printf("unknown stream_index: %d\n", pkt->stream_index);
            }
        }
        av_packet_unref(pkt);
    }

// 6.结束
    if(pkt)
        av_packet_free(&pkt);
    if(ifmt_ctx)
        avformat_close_input(&ifmt_ctx);


    avformat_network_deinit();

    return 0;
}

错误问题解决:
libavutil\timestamp.h:30: error: #error missing -D__STDC_FORMAT_MACROS / #define __STDC_FORMAT_MACROS #error missing -D__STDC_FORMAT_MACROS / #define __STDC_FORMAT_MACROS*/

#ifndef AVUTIL_COMMON_H
#define AVUTIL_COMMON_H

/*
 * 新增解决编译错误:
 * libavutil\timestamp.h:30: error: #error missing -D__STDC_FORMAT_MACROS / #define __STDC_FORMAT_MACROS
 #error missing -D__STDC_FORMAT_MACROS / #define __STDC_FORMAT_MACROS
*/
#ifndef INT64_C
#define INT64_C(c) (c ## LL)
#define UINT64_C(c) (c ## ULL)
#endif

#if defined __cplusplus
#define __STDC_CONSTANT_MACROS //common.h中的错误
#define __STDC_FORMAT_MACROS   //timestamp.h中的错误
#endif
/********************新增结束*******************/

#if defined(__cplusplus) && !defined(__STDC_CONSTANT_MACROS) && !defined(UINT64_C)
#error missing -D__STDC_CONSTANT_MACROS / #define __STDC_CONSTANT_MACROS
#endif

运行结果:

in_filename = ./debug/test.mp4

==== av_dump_format in_filename:./debug/test.mp4 ===

==== av_dump_format finish =======

media name:./debug/test.mp4
stream number:2
media average ratio:2016kbps
audio duration: 00:02:59

----- Audio info:
index: 1
samplarate: 8000 Hz
sampleformat: 8
audio codec: 86018
audio duration: 00:02:58
----- Video info:
index: 0
fps: 24.932142
width: 1280, height:720 
video codec: 27
audio duration: 00:02:59

-----av_read_frame start
audio pts: 0
audio dts: 0
audio size: 260
audio pos: 168
audio duration: 0.128000

audio pts: 1024
audio dts: 1024
audio size: 490
audio pos: 428
audio duration: 0.128000

audio pts: 2048
audio dts: 2048
audio size: 543
audio pos: 918
audio duration: 0.128000

audio pts: 3072
audio dts: 3072
audio size: 591
audio pos: 1461
audio duration: 0.128000

audio pts: 4096
audio dts: 4096
audio size: 648
audio pos: 2052
audio duration: 0.128000

audio pts: 5120
audio dts: 5120
audio size: 723
audio pos: 2700
audio duration: 0.128000

audio pts: 6144
audio dts: 6144
audio size: 717
audio pos: 3423
audio duration: 0.128000

audio pts: 7168
audio dts: 7168
audio size: 742
audio pos: 4140
audio duration: 0.128000

video pts: 0
video dts: 0
video size: 92818
video pos: 4882
video duration: 0.040000

video pts: 0
video dts: 0
video size: 7545
video pos: 97700
video duration: 0.002000

video pts: 180
video dts: 180
video size: 7737
video pos: 105245
video duration: 0.040000

video pts: 180
video dts: 180
video size: 6824
video pos: 112982
video duration: 0.040000

video pts: 180
video dts: 180
video size: 6582
video pos: 119806
video duration: 0.040000

video pts: 180
video dts: 180
video size: 6720
video pos: 126388
video duration: 0.001000

video pts: 270
video dts: 270
video size: 6452
video pos: 133108
video duration: 0.040000

video pts: 270
video dts: 270
video size: 7099
video pos: 139560
video duration: 0.040000

video pts: 270
video dts: 270
video size: 12322
video pos: 146659
video duration: 0.001000

video pts: 360
video dts: 360
video size: 9055
video pos: 158981
video duration: 0.040000

video pts: 360
video dts: 360
video size: 8951
video pos: 168036
video duration: 0.040000

video pts: 360
video dts: 360
video size: 10721
video pos: 176987
video duration: 0.025000

video pts: 2610
video dts: 2610
video size: 14761
video pos: 187708
video duration: 0.040000

video pts: 6210
video dts: 6210
video size: 16481
video pos: 202469
video duration: 0.041000

video pts: 9900
video dts: 9900
video size: 8934
video pos: 218950
video duration: 0.040000

video pts: 13500
video dts: 13500
video size: 5549
video pos: 227884
video duration: 0.040000

video pts: 17100
video dts: 17100
video size: 5623
video pos: 233433
video duration: 0.041000

video pts: 20790
video dts: 20790
video size: 7643
video pos: 239056
video duration: 0.039000

video pts: 24300
video dts: 24300
video size: 6296
video pos: 246699
video duration: 0.040000

video pts: 27900
video dts: 27900
video size: 5516
video pos: 252995
video duration: 0.040000

video pts: 31500
video dts: 31500
video size: 8985
video pos: 258511
video duration: 0.040000

video pts: 35100
video dts: 35100
video size: 7360
video pos: 267496
video duration: 0.040000

video pts: 38700
video dts: 38700
video size: 7662
video pos: 274856
video duration: 0.040000

video pts: 42300
video dts: 42300
video size: 6025
video pos: 282518
video duration: 0.040000

video pts: 45900
video dts: 45900
video size: 6389
video pos: 288543
video duration: 0.040000

video pts: 49500
video dts: 49500
video size: 9402
video pos: 294932
video duration: 0.040000

video pts: 53100
video dts: 53100
video size: 7823
video pos: 304334
video duration: 0.040000

video pts: 56700
video dts: 56700
video size: 7612
video pos: 312157
video duration: 0.040000

video pts: 60300
video dts: 60300
video size: 8544
video pos: 319769
video duration: 0.040000

video pts: 63900
video dts: 63900
video size: 8053
video pos: 328313
video duration: 0.040000

video pts: 67500
video dts: 67500
video size: 99937
video pos: 336366
video duration: 0.042989

video pts: 71369
video dts: 71369
video size: 7315
video pos: 436303
video duration: 0.037000

video pts: 74699
video dts: 74699
video size: 7953
video pos: 443618
video duration: 0.040000

video pts: 78299
video dts: 78299
video size: 8785
video pos: 451571
video duration: 0.040000

video pts: 81899
video dts: 81899
video size: 7112
video pos: 460356
video duration: 0.040000

video pts: 85499
video dts: 85499
video size: 9368
video pos: 467468
video duration: 0.040000

video pts: 89099
video dts: 89099
video size: 8248
video pos: 476836
video duration: 0.040000

audio pts: 8192
audio dts: 8192
audio size: 765
audio pos: 485084
audio duration: 0.128000

audio pts: 9216
audio dts: 9216
audio size: 760
audio pos: 485849
audio duration: 0.128000

audio pts: 10240
audio dts: 10240
audio size: 787
audio pos: 486609
audio duration: 0.128000

audio pts: 11264
audio dts: 11264
audio size: 797
audio pos: 487396
audio duration: 0.128000

audio pts: 12288
audio dts: 12288
audio size: 813
audio pos: 488193
audio duration: 0.128000

audio pts: 13312
audio dts: 13312
audio size: 825
audio pos: 489006
audio duration: 0.128000

audio pts: 14336
audio dts: 14336
audio size: 846
audio pos: 489831
audio duration: 0.128000

audio pts: 15360
audio dts: 15360
audio size: 864
audio pos: 490677
audio duration: 0.128000

video pts: 92699
video dts: 92699
video size: 6953
video pos: 491541
video duration: 0.040000

video pts: 96299
video dts: 96299
video size: 6239
video pos: 498494
video duration: 0.040000

video pts: 99899
video dts: 99899
video size: 5956
video pos: 504733
video duration: 0.040000

video pts: 103499
video dts: 103499
video size: 6171
video pos: 510689
video duration: 0.040000

video pts: 107099
video dts: 107099
video size: 6568
video pos: 516860
video duration: 0.040000

video pts: 110699
video dts: 110699
video size: 6310
video pos: 523428
video duration: 0.040000

video pts: 114299
video dts: 114299
video size: 8132
video pos: 529738
video duration: 0.040000

video pts: 117899
video dts: 117899
video size: 5953
video pos: 537870
video duration: 0.040000

video pts: 121499
video dts: 121499
video size: 7764
video pos: 543823
video duration: 0.040000

video pts: 125099
video dts: 125099
video size: 6878
video pos: 551587
video duration: 0.040000

video pts: 128699
video dts: 128699
video size: 7836
video pos: 558465
video duration: 0.039000

video pts: 132209
video dts: 132209
video size: 6346
video pos: 566301
video duration: 0.041000

video pts: 135899
video dts: 135899
video size: 8567
video pos: 572647
video duration: 0.039000

video pts: 139409
video dts: 139409
video size: 7552
video pos: 581214
video duration: 0.041000

video pts: 143099
video dts: 143099
video size: 7937
video pos: 588766
video duration: 0.039000

video pts: 146609
video dts: 146609
video size: 7949
video pos: 596703
video duration: 0.040000

video pts: 150209
video dts: 150209
video size: 6777
video pos: 604652
video duration: 0.041000

video pts: 153899
video dts: 153899
video size: 8593
video pos: 611429
video duration: 0.040000

video pts: 157499
video dts: 157499
video size: 8301
video pos: 620022
video duration: 0.040000

video pts: 161099
video dts: 161099
video size: 7706
video pos: 628323
video duration: 0.040000

video pts: 164699
video dts: 164699
video size: 7631
video pos: 636029
video duration: 0.040000

video pts: 168299
video dts: 168299
video size: 7299
video pos: 643660
video duration: 0.040000

video pts: 171899
video dts: 171899
video size: 6941
video pos: 650959
video duration: 0.040000

video pts: 175499
video dts: 175499
video size: 108314
video pos: 657900
video duration: 0.043989

video pts: 179458
video dts: 179458
video size: 7869
video pos: 766214
video duration: 0.035989

video pts: 182697
video dts: 182697
video size: 8268
video pos: 774083
video duration: 0.039000

audio pts: 16384
audio dts: 16384
audio size: 888
audio pos: 782351
audio duration: 0.128000

audio pts: 17408
audio dts: 17408
audio size: 838
audio pos: 783239
audio duration: 0.128000

audio pts: 18432
audio dts: 18432
audio size: 833
audio pos: 784077
audio duration: 0.128000

audio pts: 19456
audio dts: 19456
audio size: 864
audio pos: 784910
audio duration: 0.128000

audio pts: 20480
audio dts: 20480
audio size: 892
audio pos: 785774
audio duration: 0.128000

audio pts: 21504
audio dts: 21504
audio size: 891
audio pos: 786666
audio duration: 0.128000

audio pts: 22528
audio dts: 22528
audio size: 897
audio pos: 787557
audio duration: 0.128000

audio pts: 23552
audio dts: 23552
audio size: 900
audio pos: 788454
audio duration: 0.128000

video pts: 186207
video dts: 186207
video size: 8443
video pos: 789354
video duration: 0.041000

video pts: 189897
video dts: 189897
video size: 8578
video pos: 797797
video duration: 0.039000

video pts: 193407
video dts: 193407
video size: 7158
video pos: 806375
video duration: 0.041000

video pts: 197097
video dts: 197097
video size: 6744
video pos: 813533
video duration: 0.039000

video pts: 200607
video dts: 200607
video size: 8004
video pos: 820277
video duration: 0.041000

video pts: 204297
video dts: 204297
video size: 7738
video pos: 828281
video duration: 0.039000

video pts: 207807
video dts: 207807
video size: 7049
video pos: 836019
video duration: 0.041000

video pts: 211497
video dts: 211497
video size: 7025
video pos: 843068
video duration: 0.039000

video pts: 215007
video dts: 215007
video size: 8154
video pos: 850093
video duration: 0.041000

video pts: 218697
video dts: 218697
video size: 7130
video pos: 858247
video duration: 0.040000

video pts: 222297
video dts: 222297
video size: 7627
video pos: 865377
video duration: 0.040000

video pts: 225897
video dts: 225897
video size: 7717
video pos: 873004
video duration: 0.040000

video pts: 229497
video dts: 229497
video size: 7317
video pos: 880721
video duration: 0.040000

av_read_frame end

转封装

原理讲解

从一种视频容器转成另一种视频容器。
所谓的封装格式转换,就是在 AVI,FLV,MKV,MP4这些格式之间转换(对应 .avi,.flv,.mkv,.mp4 文件)。需要注意的是,本程序并不进行视音频的编码和解码工作。而是直接将视音频压缩码流从一种封装格式文件中获取出来然后打包成另外一种封装格式的文件。

传统转码程序流程:

上图例举了一个举例:FLV(视频:H.264,音频:AAC)转码为 AVI(视频:MPEG2,音频 MP3)的例子。可见视频转码的过程通俗地讲相当于把视频和音频重新“录” 了一遍。
本程序的工作原理如下图所示:

由图可见,本程序并不进行视频和音频的编解码工作,因此本程序和普通的转码软件相比,有以下两个特点:
处理速度极快:视音频编解码算法十分复杂,占据了转码的绝大部分时间。因为不需要进行视音频的编码和解码,所以节约了大量的时间。
视音频质量无损:因为不需要进行视音频的编码和解码, 所以不会有视音频的压缩损伤。
程序流程图如下:

示例代码

以下源码实现下面命令同样的功能

ffmepg -i test.mp4 -c copy -f test.flv
extern "C" {
//#include "libavutil/common.h"
#include "libavutil/mem.h"
#include "libavutil/avutil.h"
#include "libavutil/timestamp.h"
#include "libavformat/avformat.h"
}

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

    printf("%s: pts:%s pts_time:%s dts:%s dts_time:%s duration:%s duration_time:%s stream_index:%d\n",
           tag,
           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);

}

int main(int argc, char **argv)
{
    AVOutputFormat *ofmt = NULL;
    AVFormatContext *ifmt_ctx = NULL, *ofmt_ctx = NULL;
    AVPacket pkt;
    const char *in_filename, *out_filename;
    int ret, i;
    int stream_index = 0;
    int *stream_mapping = NULL;
    int stream_mapping_size = 0;

    in_filename  = "./debug/test.mp4";
    out_filename = "./debug/test.flv";

    if ((ret = avformat_open_input(&ifmt_ctx, in_filename, 0, 0)) < 0) {
        fprintf(stderr, "Could not open input file '%s'", in_filename);
        goto end;
    }

    if ((ret = avformat_find_stream_info(ifmt_ctx, 0)) < 0) {
        fprintf(stderr, "Failed to retrieve input stream information");
        goto end;
    }

    printf("\n\n-------av_dump_format:ifmt_ctx----------------\n");
    av_dump_format(ifmt_ctx, 0, in_filename, 0);

    avformat_alloc_output_context2(&ofmt_ctx, NULL, NULL, out_filename);
    if (!ofmt_ctx) {
        fprintf(stderr, "Could not create output context\n");
        ret = AVERROR_UNKNOWN;
        goto end;
    }

    stream_mapping_size = ifmt_ctx->nb_streams;
    stream_mapping = (int*)av_malloc_array(stream_mapping_size, sizeof(*stream_mapping));
    if (!stream_mapping) {
        ret = AVERROR(ENOMEM);
        goto end;
    }

    ofmt = (AVOutputFormat *)&(ofmt_ctx->oformat);

    for (i = 0; i < ifmt_ctx->nb_streams; i++) {
        AVStream *out_stream;
        AVStream *in_stream = ifmt_ctx->streams[i];
        AVCodecParameters *in_codecpar = in_stream->codecpar;

        if (in_codecpar->codec_type != AVMEDIA_TYPE_AUDIO &&
            in_codecpar->codec_type != AVMEDIA_TYPE_VIDEO &&
            in_codecpar->codec_type != AVMEDIA_TYPE_SUBTITLE) {
            stream_mapping[i] = -1;
            continue;
        }

        stream_mapping[i] = stream_index++;

        out_stream = avformat_new_stream(ofmt_ctx, NULL);
        if (!out_stream) {
            fprintf(stderr, "Failed allocating output stream\n");
            ret = AVERROR_UNKNOWN;
            goto end;
        }

        ret = avcodec_parameters_copy(out_stream->codecpar, in_codecpar);
        if (ret < 0) {
            fprintf(stderr, "Failed to copy codec parameters\n");
            goto end;
        }
        out_stream->codecpar->codec_tag = 0;
    }
    printf("\n\n-------av_dump_format:ofmt_ctx----------------\n");
    av_dump_format(ofmt_ctx, 0, out_filename, 1);

    if (!(ofmt->flags & AVFMT_NOFILE)) {
        ret = avio_open(&ofmt_ctx->pb, out_filename, AVIO_FLAG_WRITE);
        if (ret < 0) {
            fprintf(stderr, "Could not open output file '%s'", out_filename);
            goto end;
        }
    }

    ret = avformat_write_header(ofmt_ctx, NULL);
    if (ret < 0) {
        fprintf(stderr, "Error occurred when opening output file\n");
        goto end;
    }

    while (1) {
        AVStream *in_stream, *out_stream;

        /// 读取音视频压缩包
        ret = av_read_frame(ifmt_ctx, &pkt);
        if (ret < 0)
            break;

        in_stream  = ifmt_ctx->streams[pkt.stream_index];
        if (pkt.stream_index >= stream_mapping_size ||
            stream_mapping[pkt.stream_index] < 0) {
            av_packet_unref(&pkt);
            continue;
        }

        pkt.stream_index = stream_mapping[pkt.stream_index];
        out_stream = ofmt_ctx->streams[pkt.stream_index];
        log_packet(ifmt_ctx, &pkt, "in");

        /* copy packet */
        pkt.pts = av_rescale_q_rnd(pkt.pts, in_stream->time_base, out_stream->time_base, AV_ROUND_NEAR_INF);
        pkt.dts = av_rescale_q_rnd(pkt.dts, in_stream->time_base, out_stream->time_base, AV_ROUND_NEAR_INF);
        pkt.duration = av_rescale_q(pkt.duration, in_stream->time_base, out_stream->time_base);
        pkt.pos = -1;
        log_packet(ofmt_ctx, &pkt, "out");

        /// 交织写音视频包
        ret = av_interleaved_write_frame(ofmt_ctx, &pkt);
        if (ret < 0) {
            fprintf(stderr, "Error muxing packet\n");
            break;
        }
        av_packet_unref(&pkt);//包需要解引用
    }

    av_write_trailer(ofmt_ctx);
end:

    avformat_close_input(&ifmt_ctx);

    /* close output */
    if (ofmt_ctx && !(ofmt->flags & AVFMT_NOFILE))
        avio_closep(&ofmt_ctx->pb);
    avformat_free_context(ofmt_ctx);

    av_freep(&stream_mapping);

    if (ret < 0 && ret != AVERROR_EOF) {
        fprintf(stderr, "Error occurred: %s\n", av_err2str(ret));
        return 1;
    }

    return 0;
}

编译错误:
timestamp.h:54: error: taking address of temporary array
** #define av_ts2str(ts) av_ts_make_string((char[AV_TS_MAX_STRING_SIZE]){0}, ts)**

char av_ts_buff[AV_TS_MAX_STRING_SIZE] = { 0 };
#define av_ts2timestr(ts, tb) av_ts_make_time_string(av_ts_buff, ts, tb)

char av_ts_string[AV_TS_MAX_STRING_SIZE] = { 0 };
#define av_ts2str(ts) av_ts_make_string(av_ts_string, ts)

char av_err_string[AV_ERROR_MAX_STRING_SIZE] = {0};
#define av_err2str(errnum) \
    av_make_error_string((char[AV_ERROR_MAX_STRING_SIZE]){0}, AV_ERROR_MAX_STRING_SIZE, errnum)

运行结果:

-------av_dump_format:ifmt_ctx----------------


-------av_dump_format:ofmt_ctx----------------
in: pts:0 pts_time:0 dts:0 dts_time:0 duration:0 duration_time:0 stream_index:1
out: pts:0 pts_time:0 dts:0 dts_time:0 duration:0 duration_time:0 stream_index:1
in: pts:1024 pts_time:0.128 dts:1024 dts_time:0.128 duration:1024 duration_time:0.128 stream_index:1
out: pts:128 pts_time:0.128 dts:128 dts_time:0.128 duration:128 duration_time:0.128 stream_index:1
in: pts:2048 pts_time:0.256 dts:2048 dts_time:0.256 duration:2048 duration_time:0.256 stream_index:1
out: pts:256 pts_time:0.256 dts:256 dts_time:0.256 duration:256 duration_time:0.256 stream_index:1
in: pts:3072 pts_time:0.384 dts:3072 dts_time:0.384 duration:3072 duration_time:0.384 stream_index:1
out: pts:384 pts_time:0.384 dts:384 dts_time:0.384 duration:384 duration_time:0.384 stream_index:1
in: pts:4096 pts_time:0.512 dts:4096 dts_time:0.512 duration:4096 duration_time:0.512 stream_index:1
out: pts:512 pts_time:0.512 dts:512 dts_time:0.512 duration:512 duration_time:0.512 stream_index:1
in: pts:5120 pts_time:0.64 dts:5120 dts_time:0.64 duration:5120 duration_time:0.64 stream_index:1
out: pts:640 pts_time:0.64 dts:640 dts_time:0.64 duration:640 duration_time:0.64 stream_index:1
in: pts:6144 pts_time:0.768 dts:6144 dts_time:0.768 duration:6144 duration_time:0.768 stream_index:1
out: pts:768 pts_time:0.768 dts:768 dts_time:0.768 duration:768 duration_time:0.768 stream_index:1
in: pts:7168 pts_time:0.896 dts:7168 dts_time:0.896 duration:7168 duration_time:0.896 stream_index:1
out: pts:896 pts_time:0.896 dts:896 dts_time:0.896 duration:896 duration_time:0.896 stream_index:1
in: pts:0 pts_time:0 dts:0 dts_time:0 duration:0 duration_time:0 stream_index:0
out: pts:0 pts_time:0 dts:0 dts_time:0 duration:0 duration_time:0 stream_index:0
in: pts:0 pts_time:0 dts:0 dts_time:0 duration:0 duration_time:0 stream_index:0
out: pts:0 pts_time:0 dts:0 dts_time:0 duration:0 duration_time:0 stream_index:0
in: pts:180 pts_time:0.002 dts:180 dts_time:0.002 duration:180 duration_time:0.002 stream_index:0
out: pts:2 pts_time:0.002 dts:2 dts_time:0.002 duration:2 duration_time:0.002 stream_index:0
in: pts:180 pts_time:0.002 dts:180 dts_time:0.002 duration:180 duration_time:0.002 stream_index:0
out: pts:2 pts_time:0.002 dts:2 dts_time:0.002 duration:2 duration_time:0.002 stream_index:0
in: pts:180 pts_time:0.002 dts:180 dts_time:0.002 duration:180 duration_time:0.002 stream_index:0
out: pts:2 pts_time:0.002 dts:2 dts_time:0.002 duration:2 duration_time:0.002 stream_index:0
in: pts:180 pts_time:0.002 dts:180 dts_time:0.002 duration:180 duration_time:0.002 stream_index:0
out: pts:2 pts_time:0.002 dts:2 dts_time:0.002 duration:2 duration_time:0.002 stream_index:0
in: pts:270 pts_time:0.003 dts:270 dts_time:0.003 duration:270 duration_time:0.003 stream_index:0
out: pts:3 pts_time:0.003 dts:3 dts_time:0.003 duration:3 duration_time:0.003 stream_index:0
in: pts:270 pts_time:0.003 dts:270 dts_time:0.003 duration:270 duration_time:0.003 stream_index:0
out: pts:3 pts_time:0.003 dts:3 dts_time:0.003 duration:3 duration_time:0.003 stream_index:0
in: pts:270 pts_time:0.003 dts:270 dts_time:0.003 duration:270 duration_time:0.003 stream_index:0
out: pts:3 pts_time:0.003 dts:3 dts_time:0.003 duration:3 duration_time:0.003 stream_index:0
in: pts:360 pts_time:0.004 dts:360 dts_time:0.004 duration:360 duration_time:0.004 stream_index:0
out: pts:4 pts_time:0.004 dts:4 dts_time:0.004 duration:4 duration_time:0.004 stream_index:0
in: pts:360 pts_time:0.004 dts:360 dts_time:0.004 duration:360 duration_time:0.004 stream_index:0
out: pts:4 pts_time:0.004 dts:4 dts_time:0.004 duration:4 duration_time:0.004 stream_index:0
in: pts:360 pts_time:0.004 dts:360 dts_time:0.004 duration:360 duration_time:0.004 stream_index:0
out: pts:4 pts_time:0.004 dts:4 dts_time:0.004 duration:4 duration_time:0.004 stream_index:0
in: pts:2610 pts_time:0.029 dts:2610 dts_time:0.029 duration:2610 duration_time:0.029 stream_index:0
out: pts:29 pts_time:0.029 dts:29 dts_time:0.029 duration:29 duration_time:0.029 stream_index:0
in: pts:6210 p
ts_time:0.069 dts:6210 dts_time:0.069 duration:6210 duration_time:0.069 stream_index:0
out: pts:69 pts_time:0.069 dts:69 dts_time:0.069 duration:69 duration_time:0.069 stream_index:0
in: pts:9900 pts_time:0.11 dts:9900 dts_time:0.11 duration:9900 duration_time:0.11 stream_index:0
out: pts:110 pts_time:0.11 dts:110 dts_time:0.11 duration:110 duration_time:0.11 stream_index:0
in: pts:13500 pts_time:0.15 dts:13500 dts_time:0.15 duration:13500 duration_time:0.15 stream_index:0
out: pts:150 pts_time:0.15 dts:150 dts_time:0.15 duration:150 duration_time:0.15 stream_index:0
in: pts:17100 pts_time:0.19 dts:17100 dts_time:0.19 duration:17100 duration_time:0.19 stream_index:0
out: pts:190 pts_time:0.19 dts:190 dts_time:0.19 duration:190 duration_time:0.19 stream_index:0
in: pts:20790 pts_time:0.231 dts:20790 dts_time:0.231 duration:20790 duration_time:0.231 stream_index:0
out: pts:231 pts_time:0.231 dts:231 dts_time:0.231 duration:231 duration_time:0.231 stream_index:0
in: pts:24300 pts_time:0.27 dts:24300 dts_time:0.27 duration:24300 duration_time:0.27 stream_index:0
out: pts:270 pts_time:0.27 dts:270 dts_time:0.27 duration:270 duration_time:0.27 stream_index:0
in: pts:27900 pts_time:0.31 dts:27900 dts_time:0.31 duration:27900 duration_time:0.31 stream_index:0
out: pts:310 pts_time:0.31 dts:310 dts_time:0.31 duration:310 duration_time:0.31 stream_index:0
in: pts:31500 pts_time:0.35 dts:31500 dts_time:0.35 duration:31500 duration_time:0.35 stream_index:0
out: pts:350 pts_time:0.35 dts:350 dts_time:0.35 duration:350 duration_time:0.35 stream_index:0
in: pts:35100 pts_time:0.39 dts:35100 dts_time:0.39 duration:35100 duration_time:0.39 stream_index:0
out: pts:390 pts_time:0.39 dts:390 dts_time:0.39 duration:390 duration_time:0.39 stream_index:0
in: pts:38700 pts_time:0.43 dts:38700 dts_time:0.43 duration:38700 duration_time:0.43 stream_index:0
out: pts:430 pts_time:0.43 dts:430 dts_time:0.43 duration:430 duration_time:0.43 stream_index:0
in: pts:42300 pts_time:0.47 dts:42300 dts_time:0.47 duration:42300 duration_time:0.47 stream_index:0
out: pts:470 pts_time:0.47 dts:470 dts_time:0.47 duration:470 duration_time:0.47 stream_index:0
in: pts:45900 pts_time:0.51 dts:45900 dts_time:0.51 duration:45900 duration_time:0.51 stream_index:0
out: pts:510 pts_time:0.51 dts:510 dts_time:0.51 duration:510 duration_time:0.51 stream_index:0
in: pts:49500 pts_time:0.55 dts:49500 dts_time:0.55 duration:49500 duration_time:0.55 stream_index:0
out: pts:550 pts_time:0.55 dts:550 dts_time:0.55 duration:550 duration_time:0.55 stream_index:0
in: pts:53100 pts_time:0.59 dts:53100 dts_time:0.59 duration:53100 duration_time:0.59 stream_index:0
out: pts:590 pts_time:0.59 dts:590 dts_time:0.59 duration:590 duration_time:0.59 stream_index:0
in: pts:56700 pts_time:0.63 dts:56700 dts_time:0.63 duration:56700 duration_time:0.63 stream_index:0
out: pts:630 pts_time:0.63 dts:630 dts_time:0.63 duration:630 duration_time:0.63 stream_index:0
in: pts:60300 pts_time:0.67 dts:60300 dts_time:0.67 duration:60300 duration_time:0.67 stream_index:0
out: pts:670 pts_time:0.67 dts:670 dts_time:0.67 duration:670 duration_time:0.67 stream_index:0
in: pts:63900 pts_time:0.71 dts:63900 dts_time:0.71 duration:63900 duration_time:0.71 stream_index:0
out: pts:710 pts_time:0.71 dts:710 dts_time:0.71 duration:710 duration_time:0.71 stream_index:0
in: pts:67500 pts_time:0.75 dts:67500 dts_time:0.75 duration:67500 duration_time:0.75 stream_index:0
out: pts:750 pts_time:0.75 dts:750 dts_time:0.75 duration:750 duration_time:0.75 stream_index:0
in: pts:71369 pts_time:0.792989 dts:71369 dts_time:0.792989 duration:71369 duration_time:0.792989 stream_index:0
out: pts:793 pts_time:0.793 dts:793 dts_time:0.793 duration:793 duration_time:0.793 stream_index:0
in: pts:74699 pts_time:0.829989 dts:74699 dts_time:0.829989 duration:74699 duration_time:0.829989 stream_index:0
out: pts:830 pts_time:0.83 dts:830 dts_time:0.83 duration:830 duration_time:0.83 stream_index:0
in: pts:78299 pts_time:0.869989 dts:78299 dts_time:0.869989 duration:78299 duration_time:0.869989 stream_index:0
out: pts:870 pts_time:0.87 dts:870 dts_time:0.87 duration:870 duration_time:0.87 stream_index:0
in: pts:81899 pts_time:0.909989 dts:81899 dts_time:0.909989 duration:81899 duration_time:0.909989 stream_index:0
out: pts:910 pts_time:0.91 dts:910 dts_time:0.91 duration:910 duration_time:0.91 stream_index:0
in: pts:85499 pts_time:0.949989 dts:85499 dts_time:0.949989 duration:85499 duration_time:0.949989 stream_index:0
out: pts:950 pts_time:0.95 dts:950 dts_time:0.95 duration:950 duration_time:0.95 stream_index:0
in: pts:89099 pts_time:0.989989 dts:89099 dts_time:0.989989 duration:89099 duration_time:0.989989 stream_index:0
out: pts:990 pts_time:0.99 dts:990 dts_time:0.99 duration:990 duration_time:0.99 stream_index:0
in: pts:8192 pts_time:1.024 dts:8192 dts_time:1.024 duration:8192 duration_time:1.024 stream_index:1
out: pts:1024 pts_time:1.024 dts:1024 dts_time:1.024 duration:1024 duration_time:1.024 stream_index:1
in: pts:9216 pts_time:1.152 dts:9216 dts_time:1.152 duration:9216 duration_time:1.152 stream_index:1
out: pts:1152 pts_time:1.152 dts:1152 dts_time:1.152 duration:1152 duration_time:1.152 stream_index:1
in: pts:10240 pts_time:1.28 dts:10240 dts_time:1.28 duration:10240 duration_time:1.28 stream_index:1
out: pts:1280 pts_time:1.28 dts:1280 dts_time:1.28 duration:1280 duration_time:1.28 stream_index:1
in: pts:11264 pts_time:1.408 dts:11264 dts_time:1.408 duration:11264 duration_time:1.408 stream_index:1
out: pts:1408 pts_time:1.408 dts:1408 dts_time:1.408 duration:1408 duration_time:1.408 stream_index:1
in: pts:12288 pts_time:1.536 dts:12288 dts_time:1.536 duration:12288 duration_time:1.536 stream_index:1
out: pts:1536 pts_time:1.536 dts:1536 dts_time:1.536 duration:1536 duration_time:1.536 stream_index:1
in: pts:13312 pts_time:1.664 dts:13312 dts_time:1.664 duration:13312 duration_time:1.664 stream_index:1
out: pts:1664 pts_time:1.664 dts:1664 dts_time:1.664 duration:1664 duration_time:1.664 stream_index:1
in: pts:14336 pts_time:1.792 dts:14336 dts_time:1.792 duration:14336 duration_time:1.792 stream_index:1
out: pts:1792 pts_time:1.792 dts:1792 dts_time:1.792 duration:1792 duration_time:1.792 stream_index:1
in: pts:15360 pts_time:1.92 dts:15360 dts_time:1.92 duration:15360 duration_time:1.92 stream_index:1
out: pts:1920 pts_time:1.92 dts:1920 dts_time:1.92 duration:1920 duration_time:1.92 stream_index:1
in: pts:92699 pts_time:1.02999 dts:92699 dts_time:1.02999 duration:92699 duration_time:1.02999 stream_index:0
out: pts:1030 pts_time:1.03 dts:1030 dts_time:1.03 duration:1030 duration_time:1.03 stream_index:0
in: pts:96299 pts_time:1.06999 dts:96299 dts_time:1.06999 duration:96299 duration_time:1.06999 stream_index:0
out: pts:1070 pts_time:1.07 dts:1070 dts_time:1.07 duration:1070 duration_time:1.07 stream_index:0
in: pts:99899 pts_time:1.10999 dts:99899 dts_time:1.10999 duration:99899 duration_time:1.10999 stream_index:0
out: pts:1110 pts_time:1.11 dts:1110 dts_time:1.11 duration:1110 duration_time:1.11 stream_index:0
in: pts:103499 pts_time:1.14999 dts:103499 dts_time:1.14999 duration:103499 duration_time:1.14999 stream_index:0
out: pts:1150 pts_time:1.15 dts:1150 dts_time:1.15 duration:1150 duration_time:1.15 stream_index:0
in: pts:107099 pts_time:1.18999 dts:107099 dts_time:1.18999 duration:107099 duration_time:1.18999 stream_index:0
out: pts:1190 pts_time:1.19 dts:1190 dts_time:1.19 duration:1190 duration_time:1.19 stream_index:0
in: pts:110699 pts_time:1.22999 dts:110699 dts_time:1.22999 duration:110699 duration_time:1.22999 stream_index:0
out: pts:1230 pts_time:1.23 dts:1230 dts_time:1.23 duration:1230 duration_time:1.23 stream_index:0
in: pts:114299 pts_time:1.26999 dts:114299 dts_time:1.26999 duration:114299 duration_time:1.26999 stream_index:0
out: pts:1270 pts_time:1.27 dts:1270 dts_time:1.27 duration:1270 duration_time:1.27 stream_index:0
in: pts:117899 pts_time:1.30999 dts:117899 dts_time:1.30999 duration:117899 duration_time:1.30999 stream_index:0
out: pts:1310 pts_time:1.31 dts:1310 dts_time:1.31 duration:1310 duration_time:1.31 stream_index:0
in: pts:121499 pts_time:1.34999 dts:121499 dts_time:1.34999 duration:121499 duratio
n_time:1.34999 stream_index:0
out: pts:1350 pts_time:1.35 dts:1350 dts_time:1.35 duration:1350 duration_time:1.35 stream_index:0
in: pts:125099 pts_time:1.38999 dts:125099 dts_time:1.38999 duration:125099 duration_time:1.38999 stream_index:0
out: pts:1390 pts_time:1.39 dts:1390 dts_time:1.39 duration:1390 duration_time:1.39 stream_index:0
in: pts:128699 pts_time:1.42999 dts:128699 dts_time:1.42999 duration:128699 duration_time:1.42999 stream_index:0
out: pts:1430 pts_time:1.43 dts:1430 dts_time:1.43 duration:1430 duration_time:1.43 stream_index:0
in: pts:132209 pts_time:1.46899 dts:132209 dts_time:1.46899 duration:132209 duration_time:1.46899 stream_index:0
out: pts:1469 pts_time:1.469 dts:1469 dts_time:1.469 duration:1469 duration_time:1.469 stream_index:0
in: pts:135899 pts_time:1.50999 dts:135899 dts_time:1.50999 duration:135899 duration_time:1.50999 stream_index:0
out: pts:1510 pts_time:1.51 dts:1510 dts_time:1.51 duration:1510 duration_time:1.51 stream_index:0
in: pts:139409 pts_time:1.54899 dts:139409 dts_time:1.54899 duration:139409 duration_time:1.54899 stream_index:0
out: pts:1549 pts_time:1.549 dts:1549 dts_time:1.549 duration:1549 duration_time:1.549 stream_index:0
in: pts:143099 pts_time:1.58999 dts:143099 dts_time:1.58999 duration:143099 duration_time:1.58999 stream_index:0
out: pts:1590 pts_time:1.59 dts:1590 dts_time:1.59 duration:1590 duration_time:1.59 stream_index:0
in: pts:146609 pts_time:1.62899 dts:146609 dts_time:1.62899 duration:146609 duration_time:1.62899 stream_index:0
out: pts:1629 pts_time:1.629 dts:1629 dts_time:1.629 duration:1629 duration_time:1.629 stream_index:0
in: pts:150209 pts_time:1.66899 dts:150209 dts_time:1.66899 duration:150209 duration_time:1.66899 stream_index:0
out: pts:1669 pts_time:1.669 dts:1669 dts_time:1.669 duration:1669 duration_time:1.669 stream_index:0
in: pts:153899 pts_time:1.70999 dts:153899 dts_time:1.70999 duration:153899 duration_time:1.70999 stream_index:0
out: pts:1710 pts_time:1.71 dts:1710 dts_time:1.71 duration:1710 duration_time:1.71 stream_index:0
in: pts:157499 pts_time:1.74999 dts:157499 dts_time:1.74999 duration:157499 duration_time:1.74999 stream_index:0
out: pts:1750 pts_time:1.75 dts:1750 dts_time:1.75 duration:1750 duration_time:1.75 stream_index:0
in: pts:161099 pts_time:1.78999 dts:161099 dts_time:1.78999 duration:161099 duration_time:1.78999 stream_index:0
out: pts:1790 pts_time:1.79 dts:1790 dts_time:1.79 duration:1790 duration_time:1.79 stream_index:0
in: pts:164699 pts_time:1.82999 dts:164699 dts_time:1.82999 duration:164699 duration_time:1.82999 stream_index:0
out: pts:1830 pts_time:1.83 dts:1830 dts_time:1.83 duration:1830 duration_time:1.83 stream_index:0
in: pts:168299 pts_time:1.86999 dts:168299 dts_time:1.86999 duration:168299 duration_time:1.86999 stream_index:0
out: pts:1870 pts_time:1.87 dts:1870 dts_time:1.87 duration:1870 duration_time:1.87 stream_index:0
in: pts:171899 pts_time:1.90999 dts:171899 dts_time:1.90999 duration:171899 duration_time:1.90999 stream_index:0
out: pts:1910 pts_time:1.91 dts:1910 dts_time:1.91 duration:1910 duration_time:1.91 stream_index:0
in: pts:175499 pts_time:1.94999 dts:175499 dts_time:1.94999 duration:175499 duration_time:1.94999 stream_index:0
out: pts:1950 pts_time:1.95 dts:1950 dts_time:1.95 duration:1950 duration_time:1.95 stream_index:0
in: pts:179458 pts_time:1.99398 dts:179458 dts_time:1.99398 duration:179458 duration_time:1.99398 stream_index:0
out: pts:1994 pts_time:1.994 dts:1994 dts_time:1.994 duration:1994 duration_time:1.994 stream_index:0
in: pts:182697 pts_time:2.02997 dts:182697 dts_time:2.02997 duration:182697 duration_time:2.02997 stream_index:0
out: pts:2030 pts_time:2.03 dts:2030 dts_time:2.03 duration:2030 duration_time:2.03 stream_index:0
in: pts:16384 pts_time:2.048 dts:16384 dts_time:2.048 duration:16384 duration_time:2.048 stream_index:1
out: pts:2048 pts_time:2.048 dts:2048 dts_time:2.048 duration:2048 duration_time:2.048 stream_index:1
in: pts:17408 pts_time:2.176 dts:17408 dts_time:2.176 duration:17408 duration_time:2.176 stream_index:1
out: pts:2176 pts_time:2.176 dts:2176 dts_time:2.176 duration:2176 duration_time:2.176 stream_index:1
in: pts:18432 pts_time:2.304 dts:18432 dts_time:2.304 duration:18432 duration_time:2.304 stream_index:1
out: pts:2304 pts_time:2.304 dts:2304 dts_time:2.304 duration:2304 duration_time:2.304 stream_index:1
in: pts:19456 pts_time:2.432 dts:19456 dts_time:2.432 duration:19456 duration_time:2.432 stream_index:1
out: pts:2432 pts_time:2.432 dts:2432 dts_time:2.432 duration:2432 duration_time:2.432 stream_index:1
in: pts:20480 pts_time:2.56 dts:20480 dts_time:2.56 duration:20480 duration_time:2.56 stream_index:1
out: pts:2560 pts_time:2.56 dts:2560 dts_time:2.56 duration:2560 duration_time:2.56 stream_index:1
in: pts:21504 pts_time:2.688 dts:21504 dts_time:2.688 duration:21504 duration_time:2.688 stream_index:1
out: pts:2688 pts_time:2.688 dts:2688 dts_time:2.688 duration:2688 duration_time:2.688 stream_index:1
in: pts:22528 pts_time:2.816 dts:22528 dts_time:2.816 duration:22528 duration_time:2.816 stream_index:1
out: pts:2816 pts_time:2.816 dts:2816 dts_time:2.816 duration:2816 duration_time:2.816 stream_index:1
in: pts:23552 pts_time:2.944 dts:23552 dts_time:2.944 duration:23552 duration_time:2.944 stream_index:1
out: pts:2944 pts_time:2.944 dts:2944 dts_time:2.944 duration:2944 duration_time:2.944 stream_index:1
in: pts:186207 pts_time:2.06897 dts:186207 dts_time:2.06897 duration:186207 duration_time:2.06897 stream_index:0
out: pts:2069 pts_time:2.069 dts:2069 dts_time:2.069 duration:2069 duration_time:2.069 stream_index:0
in: pts:189897 pts_time:2.10997 dts:189897 dts_time:2.10997 duration:189897 duration_time:2.10997 stream_index:0
out: pts:2110 pts_time:2.11 dts:2110 dts_time:2.11 duration:2110 duration_time:2.11 stream_index:0
in: pts:193407 pts_time:2.14897 dts:193407 dts_time:2.14897 duration:193407 duration_time:2.14897 stream_index:0
out: pts:2149 pts_time:2.149 dts:2149 dts_time:2.149 duration:2149 duration_time:2.149 stream_index:0
in: pts:197097 pts_time:2.18997 dts:197097 dts_time:2.18997 duration:197097 duration_time:2.18997 stream_index:0
out: pts:2190 pts_time:2.19 dts:2190 dts_time:2.19 duration:2190 duration_time:2.19 stream_index:0
in: pts:200607 pts_time:2.22897 dts:200607 dts_time:2.22897 duration:200607 duration_time:2.22897 stream_index:0
out: pts:2229 pts_time:2.229 dts:2229 dts_time:2.229 duration:2229 duration_time:2.229 stream_index:0
in: pts:204297 pts_time:2.26997 dts:204297 dts_time:2.26997 duration:204297 duration_time:2.26997 stream_index:0
out: pts:2270 pts_time:2.27 dts:2270 dts_time:2.27 duration:2270 duration_time:2.27 stream_index:0
in: pts:207807 pts_time:2.30897 dts:207807 dts_time:2.30897 duration:207807 duration_time:2.30897 stream_index:0
out: pts:2309 pts_time:2.309 dts:2309 dts_time:2.309 duration:2309 duration_time:2.309 stream_index:0
in: pts:211497 pts_time:2.34997 dts:211497 dts_time:2.34997 duration:211497 duration_time:2.34997 stream_index:0
out: pts:2350 pts_time:2.35 dts:2350 dts_time:2.35 duration:2350 duration_time:2.35 stream_index:0
in: pts:215007 pts_time:2.38897 dts:215007 dts_time:2.38897 duration:215007 duration_time:2.38897 stream_index:0
out: pts:2389 pts_time:2.389 dts:2389 dts_time:2.389 duration:2389 duration_time:2.389 stream_index:0
in: pts:218697 pts_time:2.42997 dts:218697 dts_time:2.42997 duration:218697 duration_time:2.42997 stream_index:0
out: pts:2430 pts_time:2.43 dts:2430 dts_time:2.43 duration:2430 duration_time:2.43 stream_index:0
in: pts:222297 pts_time:2.46997 dts:222297 dts_time:2.46997 duration:222297 duration_time:2.46997 stream_index:0
out: pts:2470 pts_time:2.47 dts:2470 dts_time:2.47 duration:2470 duration_time:2.47 stream_index:0
in: pts:225897 pts_time:2.50997 dts:225897 dts_time:2.50997 duration:225897 duration_time:2.50997 stream_index:0
out: pts:2510 pts_time:2.51 dts:2510 dts_time:2.51 duration:2510 duration_time:2.51 stream_index:0
in: pts:229497 pts_time:2.54997 dts:229497 dts_time:2.54997 duration:229497 duration_time:2.54997 stream_index:0
out: pts:2550 pts_time:2.55 dts:2550 dts_time:2.55 duration:2550 duration_time:2.55 stream_index:0
in: pts:233097 pts_time:2.58997 dts:233097 dts_time:2.58997 duration:233097 duration_time:2.58997 stream_index:0
out: pts:2590 pts_time:2.59 dts:2590 dts_time:2.59 duration:2590 duration_time:2.59 stream_index:0
in: pts:236697 pts_time:2.62997 dts:236697 dts_time:2.62997 duration:236697 duration_time:2.62997 stream_index:0
out: pts:2630 pts_time:2.63 dts:2630 dts_time:2.63 duration:2630 duration_time:2.63 stream_index:0
in: pts:240297 pts_time:2.66997 dts:240297 dts_time:2.66997 duration:240297 duration_time:2.66997 stream_index:0
out: pts:2670 pts_time:2.67 dts:2670 dts_time:2.67 duration:2670 duration_time:2.67 stream_index:0
in: pts:243897 pts_time:2.70997 dts:243897 dts_time:2.70997 duration:243897 duration_time:2.70997 stream_index:0
out: pts:2710 pts_time:2.71 dts:2710 dts_time:2.71 duration:2710 duration_time:2.71 stream_index:0
in: pts:247497 pts_time:2.74997 dts:247497 dts_time:2.74997 duration:247497 duration_time:2.74997 stream_index:0
out: pts:2750 pts_time:2.75 dts:2750 dts_time:2.75 duration:2750 duration_time:2.75 stream_index:0
in: pts:251097 pts_time:2.78997 dts:251097 dts_time:2.78997 duration:251097 duration_time:2.78997 stream_index:0
out: pts:2790 pts_time:2.79 dts:2790 dts_time:2.79 duration:2790 duration_time:2.79 stream_index:0
in: pts:254697 pts_time:2.82997 dts:254697 dts_time:2.82997 duration:254697 duration_time:2.82997 stream_index:0
out: pts:2830 pts_time:2.83 dts:2830 dts_time:2.83 duration:2830 duration_time:2.83 stream_index:0
in: pts:258297 pts_time:2.86997 dts:258297 dts_time:2.86997 duration:258297 duration_time:2.86997 stream_index:0
out: pts:2870 pts_time:2.87 dts:2870 dts_time:2.87 duration:2870 duration_time:2.87 stream_index:0
in: pts:261897 pts_time:2.90997 dts:261897 dts_time:2.90997 duration:261897 duration_time:2.90997 stream_index:0
out: pts:2910 pts_time:2.91 dts:2910 dts_time:2.91 duration:2910 duration_time:2.91 stream_index:0
in: pts:265497 pts_time:2.94997 dts:265497 dts_time:2.94997 duration:265497 duration_time:2.94997 stream_index:0
out: pts:2950 pts_time:2.95 dts:2950 dts_time:2.95 duration:2950 duration_time:2.95 stream_index:0
in: pts:269007 pts_time:2.98897 dts:269007 dts_time:2.98897 duration:269007 duration_time:2.98897 stream_index:0
out: pts:2989 pts_time:2.989 dts:2989 dts_time:2.989 duration:2989 duration_time:2.989 stream_index:0
in: pts:272697 pts_time:3.02997 dts:272697 dts_time:3.02997 duration:272697 duration_time:3.02997 stream_index:0
out: pts:3030 pts_time:3.03 dts:3030 dts_time:3.03 duration:3030 duration_time:3.03 stream_index:0
in: pts:24576 pts_time:3.072 dts:24576 dts_time:3.072 duration:24576 duration_time:3.072 stream_index:1
out: pts:3072 pts_time:3.072 dts:3072 dts_time:3.072 duration:3072 duration_time:3.072 stream_index:1
in: pts:25600 pts_time:3.2 dts:25600 dts_time:3.2 duration:25600 duration_time:3.2 stream_index:1
out: pts:3200 pts_time:3.2 dts:3200 dts_time:3.2 duration:3200 duration_time:3.2 stream_index:1
in: pts:26624 pts_time:3.328 dts:26624 dts_time:3.328 duration:26624 duration_time:3.328 stream_index:1
out: pts:3328 pts_time:3.328 dts:3328 dts_time:3.328 duration:3328 duration_time:3.328 stream_index:1
in: pts:27648 pts_time:3.456 dts:27648 dts_time:3.456 duration:27648 duration_time:3.456 stream_index:1
out: pts:3456 pts_time:3.456 dts:3456 dts_time:3.456 duration:3456 duration_time:3.456 stream_index:1
in: pts:28672 pts_time:3.584 dts:28672 dts_time:3.584 duration:28672 duration_time:3.584 stream_index:1
out: pts:3584 pts_time:3.584 dts:3584 dts_time:3.584 duration:3584 duration_time:3.584 stream_index:1
in: pts:29696 pts_time:3.712 dts:29696 dts_time:3.712 duration:29696 duration_time:3.712 stream_index:1
out: pts:3712 pts_time:3.712 dts:3712 dts_time:3.712 duration:3712 duration_time:3.712 stream_index:1
in: pts:30720 pts_time:3.84 dts:30720 dts_time:3.84 duration:30720 duration_time:3.84 stream_index:1
out: pts:3840 pts_time:3.84 dts:3840 dts_time:3.84 duration:3840 duration_time:3.84 stream_index:1
in: pts:31744 pts_time:3.968 dts:31744 dts_time:3.968 duration:31744 duration_time:3.968 stream_index:1
out: pts:3968 pts_time:3.968 dts:3968 dts_time:3.968 duration:3968 duration_time:3.968 stream_index:1
in: pts:276207 pts_time:3.06897 dts:276207 dts_time:3.06897 duration:276207 duration_time:3.06897 stream_index:0
out: pts:3069 pts_time:3.069 dts:3069 dts_time:3.069 duration:3069 duration_time:3.069 stream_index:0
in: pts:279897 pts_time:3.10997 dts:279897 dts_time:3.10997 duration:279897 duration_time:3.10997 stream_index:0
out: pts:3110 pts_time:3.11 dts:3110 dts_time:3.11 duration:3110 duration_time:3.11 stream_index:0
in: pts:283407 pts_time:3.14897 dts:283407 dts_time:3.14897 duration:283407 duration_time:3.14897 stream_index:0
out: pts:3149 pts_time:3.149 dts:3149 dts_time:3.149 duration:3149 duration_time:3.149 stream_index:0
in: pts:287276 pts_time:3.19196 dts:287276 dts_time:3.19196 duration:287276 duration_time:3.19196 stream_index:0
out: pts:3192 pts_time:3.192 dts:3192 dts_time:3.192 duration:3192 duration_time:3.192 stream_index:0
in: pts:290606 pts_time:3.22896 dts:290606 dts_time:3.22896 duration:290606 duration_time:3.22896 stream_index:0
out: pts:3229 pts_time:3.229 dts:3229 dts_time:3.229 duration:3229 duration_time:3.229 stream_index:0
in: pts:294296 pts_time:3.26996 dts:294296 dts_time:3.26996 duration:294296 duration_time:3.26996 stream_index:0
out: pts:3270 pts_time:3.27 dts:3270 dts_time:3.27 duration:3270 duration_time:3.27 stream_index:0
in: pts:297896 pts_time:3.30996 dts:297896 dts_time:3.30996 duration:297896 duration_time:3.30996 stream_index:0
out: pts:3310 pts_time:3.31 dts:3310 dts_time:3.31 duration:3310 duration_time:3.31 stream_index:0
in: pts:301496 pts_time:3.34996 dts:301496 dts_time:3.34996 duration:301496 duration_time:3.34996 stream_index:0
out: pts:3350 pts_time:3.35 dts:3350 dts_time:3.35 duration:3350 duration_time:3.35 stream_index:0
in: pts:305006 pts_time:3.38896 dts:305006 dts_time:3.38896 duration:305006 duration_time:3.38896 stream_index:0
out: pts:3389 pts_time:3.389 dts:3389 dts_time:3.389 duration:3389 duration_time:3.389 stream_index:0
in: pts:308696 pts_time:3.42996 dts:308696 dts_time:3.42996 duration:308696 duration_time:3.42996 stream_index:0
out: pts:3430 pts_time:3.43 dts:3430 dts_time:3.43 duration:3430 duration_time:3.43 stream_index:0
in: pts:312296 pts_time:3.46996 dts:312296 dts_time:3.46996 duration:312296 duration_time:3.46996 stream_index:0
out: pts:3470 pts_time:3.47 dts:3470 dts_time:3.47 duration:3470 duration_time:3.47 stream_index:0
in: pts:315806 pts_time:3.50896 dts:315806 dts_time:3.50896 duration:315806 duration_time:3.50896 stream_index:0
out: pts:3509 pts_time:3.509 dts:3509 dts_time:3.509 duration:3509 duration_time:3.509 stream_index:0
in: pts:319496 pts_time:3.54996 dts:319496 dts_time:3.54996 duration:319496 duration_time:3.54996 stream_index:0
out: pts:3550 pts_time:3.55 dts:3550 dts_time:3.55 duration:3550 duration_time:3.55 stream_index:0
in: pts:323006 pts_time:3.58896 dts:323006 dts_time:3.58896 duration:323006 duration_time:3.58896 stream_index:0
out: pts:3589 pts_time:3.589 dts:3589 dts_time:3.589 duration:3589 duration_time:3.589 stream_index:0
in: pts:326696 pts_time:3.62996 dts:326696 dts_time:3.62996 duration:326696 duration_time:3.62996 stream_index:0
out: pts:3630 pts_time:3.63 dts:3630 dts_time:3.63 duration:3630 duration_time:3.63 stream_index:0
in: pts:330206 pts_time:3.66896 dts:330206 dts_time:3.66896 duration:330206 duration_time:3.66896 stream_index:0
out: pts:3669 pts_time:3.669 dts:3669 dts_time:3.669 duration:3669 duration_time:3.669 stream_index:0
in: pts:333806 pts_time:3.70896 dts:333806 dts_time:3.70896 duration:333806 duration_time:3.70896 stream_index:0
out: pts:3709 pts_time:3.709 dts:3709 dts_time:3.709 duration:3709 duration_time:3.709 stream_index:0
in: pts:337406 pts_time:3.74896 dts:337406 dts_time:3.74896 duration:337406 duration_time:3.74896 stream_index:0
out: pts:3749 pts_time:3.749 dts:3749 dts_time:3.749 duration:3749 duration_time:3.749 stream_index:0
in: pts:341096 pts_time:3.78996 dts:341096 dts_time:3.78996 duration:341096 duration_time:3.78996 stream_index:0
out: pts:3790 pts_time:3.79 dts:3790 dts_time:3.79 duration:3790 duration_time:3.79 stream_index:0
in: pts:344606 pts_time:3.82896 dts:344606 dts_time:3.82896 duration:344606 duration_time:3.82896 stream_index:0
out: pts:3829 pts_time:3.829 dts:3829 dts_time:3.829 duration:3829 duration_time:3.829 stream_index:0
in: pts:348296 pts_time:3.86996 dts:348296 dts_time:3.86996 duration:348296 duration_time:3.86996 stream_index:0
out: pts:3870 pts_time:3.87 dts:3870 dts_time:3.87 duration:3870 duration_time:3.87 stream_index:0
in: pts:351806 pts_time:3.90896 dts:351806 dts_time:3.90896 duration:351806 duration_time:3.90896 stream_index:0
out: pts:3909 pts_time:3.909 dts:3909 dts_time:3.909 duration:3909 duration_time:3.909 stream_index:0
in: pts:355406 pts_time:3.94896 dts:355406 dts_time:3.94896 duration:355406 duration_time:3.94896 stream_index:0
out: pts:3949 pts_time:3.949 dts:3949 dts_time:3.949 duration:3949 duration_time:3.949 stream_index:0
in: pts:359006 pts_time:3.98896 dts:359006 dts_time:3.98896 duration:359006 duration_time:3.98896 stream_index:0
out: pts:3989 pts_time:3.989 dts:3989 dts_time:3.989 duration:3989 duration_time:3.989 stream_index:0
in: pts:362696 pts_time:4.02996 dts:362696 dts_time:4.02996 duration:362696 duration_time:4.02996 stream_index:0
out: pts:4030 pts_time:4.03 dts:4030 dts_time:4.03 duration:4030 duration_time:4.03 stream_index:0
in: pts:366206 pts_time:4.06896 dts:366206 dts_time:4.06896 duration:366206 duration_time:4.06896 stream_index:0
out: pts:4069 pts_time:4.069 dts:4069 dts_time:4.069 duration:4069 duration_time:4.069 stream_index:0
in: pts:32768 pts_time:4.096 dts:32768 dts_time:4.096 duration:32768 duration_time:4.096 stream_index:1
out: pts:4096 pts_time:4.096 dts:4096 dts_time:4.096 duration:4096 duration_time:4.096 stream_index:1
in: pts:33792 pts_time:4.224 dts:33792 dts_time:4.224 duration:33792 duration_time:4.224 stream_index:1
out: pts:4224 pts_time:4.224 dts:4224 dts_time:4.224 duration:4224 duration_time:4.224 stream_index:1
in: pts:34816 pts_time:4.352 dts:34816 dts_time:4.352 duration:34816 duration_time:4.352 stream_index:1
out: pts:4352 pts_time:4.352 dts:4352 dts_time:4.352 duration:4352 duration_time:4.352 stream_index:1
in: pts:35840 pts_time:4.48 dts:35840 dts_time:4.48 duration:35840 duration_time:4.48 stream_index:1
out: pts:4480 pts_time:4.48 dts:4480 dts_time:4.48 duration:4480 duration_time:4.48 stream_index:1
in: pts:36864 pts_time:4.608 dts:36864 dts_time:4.608 duration:36864 duration_time:4.608 stream_index:1
out: pts:4608 pts_time:4.608 dts:4608 dts_time:4.608 duration:4608 duration_time:4.608 stream_index:1
in: pts:37888 pts_time:4.736 dts:37888 dts_time:4.736 duration:37888 duration_time:4.736 stream_index:1
out: pts:4736 pts_time:4.736 dts:4736 dts_time:4.736 duration:4736 duration_time:4.736 stream_index:1
in: pts:38912 pts_time:4.864 dts:38912 dts_time:4.864 duration:38912 duration_time:4.864 stream_index:1
out: pts:4864 pts_time:4.864 dts:4864 dts_time:4.864 duration:4864 duration_time:4.864 stream_index:1
in: pts:39936 pts_time:4.992 dts:39936 dts_time:4.992 duration:39936 duration_time:4.992 stream_index:1
out: pts:4992 pts_time:4.992 dts:4992 dts_time:4.992 duration:4992 duration_time:4.992 stream_index:1
in: pts:369896 pts_time:4.10996 dts:369896 dts_time:4.10996 duration:369896 duration_time:4.10996 stream_index:0
out: pts:4110 pts_time:4.11 dts:4110 dts_time:4.11 duration:4110 duration_time:4.11 stream_index:0
in: pts:373496 pts_time:4.14996 dts:373496 dts_time:4.14996 duration:373496 duration_time:4.14996 stream_index:0
out: pts:4150 pts_time:4.15 dts:4150 dts_time:4.15 duration:4150 duration_time:4.15 stream_index:0
in: pts:377096 pts_time:4.18996 dts:377096 dts_time:4.18996 duration:377096 duration_time:4.18996 stream_index:0
out: pts:4190 pts_time:4.19 dts:4190 dts_time:4.19 duration:4190 duration_time:4.19 stream_index:0
in: pts:380606 pts_time:4.22896 dts:380606 dts_time:4.22896 duration:380606 duration_time:4.22896 stream_index:0
out: pts:4229 pts_time:4.229 dts:4229 dts_time:4.229 duration:4229 duration_time:4.229 stream_index:0
in: pts:384296 pts_time:4.26996 dts:384296 dts_time:4.26996 duration:384296 duration_time:4.26996 stream_index:0
out: pts:4270 pts_time:4.27 dts:4270 dts_time:4.27 duration:4270 duration_time:4.27 stream_index:0
in: pts:387806 pts_time:4.30896 dts:387806 dts_time:4.30896 duration:387806 duration_time:4.30896 stream_index:0
out: pts:4309 pts_time:4.309 dts:4309 dts_time:4.309 duration:4309 duration_time:4.309 stream_index:0
in: pts:391496 pts_time:4.34996 dts:391496 dts_time:4.34996 duration:391496 duration_time:4.34996 stream_index:0
out: pts:4350 pts_time:4.35 dts:4350 dts_time:4.35 duration:4350 duration_time:4.35 stream_index:0
in: pts:395276 pts_time:4.39196 dts:395276 dts_time:4.39196 duration:395276 duration_time:4.39196 stream_index:0
out: pts:4392 pts_time:4.392 dts:4392 dts_time:4.392 duration:4392 duration_time:4.392 stream_index:0
in: pts:398696 pts_time:4.42996 dts:398696 dts_time:4.42996 duration:398696 duration_time:4.42996 stream_index:0
out: pts:4430 pts_time:4.43 dts:4430 dts_time:4.43 duration:4430 duration_time:4.43 stream_index:0
in: pts:402296 pts_time:4.46996 dts:402296 dts_time:4.46996 duration:402296 duration_time:4.46996 stream_index:0
out: pts:4470 pts_time:4.47 dts:4470 dts_time:4.47 duration:4470 duration_time:4.47 stream_index:0
in: pts:405896 pts_time:4.50996 dts:405896 dts_time:4.50996 duration:405896 duration_time:4.50996 stream_index:0
out: pts:4510 pts_time:4.51 dts:4510 dts_time:4.51 duration:4510 duration_time:4.51 stream_index:0
in: pts:409496 pts_time:4.54996 dts:409496 dts_time:4.54996 duration:409496 duration_time:4.54996 stream_index:0
out: pts:4550 pts_time:4.55 dts:4550 dts_time:4.55 duration:4550 duration_time:4.55 stream_index:0
in: pts:413096 pts_time:4.58996 dts:413096 dts_time:4.58996 duration:413096 duration_time:4.58996 stream_index:0
out: pts:4590 pts_time:4.59 dts:4590 dts_time:4.59 duration:4590 duration_time:4.59 stream_index:0
in: pts:416696 pts_time:4.62996 dts:416696 dts_time:4.62996 duration:416696 duration_time:4.62996 stream_index:0
out: pts:4630 pts_time:4.63 dts:4630 dts_time:4.63 duration:4630 duration_time:4.63 stream_index:0
in: pts:420296 pts_time:4.66996 dts:420296 dts_time:4.66996 duration:420296 duration_time:4.66996 stream_index:0
out: pts:4670 pts_time:4.67 dts:4670 dts_time:4.67 duration:4670 duration_time:4.67 stream_index:0
in: pts:423806 pts_time:4.70896 dts:423806 dts_time:4.70896 duration:423806 duration_time:4.70896 stream_index:0
out: pts:4709 pts_time:4.709 dts:4709 dts_time:4.709 duration:4709 duration_time:4.709 stream_index:0
in: pts:427496 pts_time:4.74996 dts:427496 dts_time:4.74996 duration:427496 duration_time:4.74996 stream_index:0
out: pts:4750 pts_time:4.75 dts:4750 dts_time:4.75 duration:4750 duration_time:4.75 stream_index:0
in: pts:431006 pts_time:4.78896 dts:431006 dts_time:4.78896 duration:431006 duration_time:4.78896 stream_index:0
out: pts:4789 pts_time:4.789 dts:4789 dts_time:4.789 duration:4789 duration_time:4.789 stream_index:0
in: pts:434606 pts_time:4.82896 dts:434606 dts_time:4.82896 duration:434606 duration_time:4.82896 stream_index:0
out: pts:4829 pts_time:4.829 dts:4829 dts_time:4.829 duration:4829 duration_time:4.829 stream_index:0
in: pts:438296 pts_time:4.86996 dts:438296 dts_time:4.86996 duration:438296 duration_time:4.86996 stream_index:0
out: pts:4870 pts_time:4.87 dts:4870 dts_time:4.87 duration:4870 duration_time:4.87 stream_index:0
in: pts:441896 pts_time:4.90996 dts:441896 dts_time:4.90996 duration:441896 duration_time:4.90996 stream_index:0
out: pts:4910 pts_time:4.91 dts:4910 dts_time:4.91 duration:4910 duration_time:4.91 stream_index:0
in: pts:445496 pts_time:4.94996 dts:445496 dts_time:4.94996 duration:445496 duration_time:4.94996 stream_index:0
out: pts:4950 pts_time:4.95 dts:4950 dts_time:4.95 duration:4950 duration_time:4.95 stream_index:0
in: pts:449006 pts_time:4.98896 dts:449006 dts_time:4.98896 duration:449006 duration_time:4.98896 stream_index:0
out: pts:4989 pts_time:4.989 dts:4989 dts_time:4.989 duration:4989 duration_time:4.989 stream_index:0
in: pts:452696 pts_time:5.02996 dts:452696 dts_time:5.02996 duration:452696 duration_time:5.02996 stream_index:0
out: pts:5030 pts_time:5.03 dts:5030 dts_time:5.03 duration:5030 duration_time:5.03 stream_index:0
in: pts:456206 pts_time:5.06896 dts:456206 dts_time:5.06896 duration:456206 duration_time:5.06896 stream_index:0
out: pts:5069 pts_time:5.069 dts:5069 dts_time:5.069 duration:5069 duration_time:5.069 stream_index:0
in: pts:459806 pts_time:5.10896 dts:459806 dts_time:5.10896 duration:459806 duration_time:5.10896 stream_index:0
out: pts:5109 pts_time:5.109 dts:5109 dts_time:5.109 duration:5109 duration_time:5.109 stream_index:0
in: pts:40960 pts_time:5.12 dts:40960 dts_time:5.12 duration:40960 duration_time:5.12 stream_index:1
out: pts:5120 pts_time:5.12 dts:5120 dts_time:5.12 duration:5120 duration_time:5.12 stream_index:1
in: pts:41984 pts_time:5.248 dts:41984 dts_time:5.248 duration:41984 duration_time:5.248 stream_index:1
out: pts:5248 pts_time:5.248 dts:5248 dts_time:5.248 duration:5248 duration_time:5.248 stream_index:1
in: pts:43008 pts_time:5.376 dts:43008 dts_time:5.376 duration:43008 duration_time:5.376 stream_index:1
out: pts:5376 pts_time:5.376 dts:5376 dts_time:5.376 duration:5376 duration_time:5.376 stream_index:1
in: pts:44032 pts_time:5.504 dts:44032 dts_time:5.504 duration:44032 duration_time:5.504 stream_index:1
out: pts:5504 pts_time:5.504 dts:5504 dts_time:5.504 duration:5504 duration_time:5.504 stream_index:1
in: pts:45056 pts_time:5.632 dts:45056 dts_time:5.632 duration:45056 duration_time:5.632 stream_index:1
out: pts:5632 pts_time:5.632 dts:5632 dts_time:5.632 duration:5632 duration_time:5.632 stream_index:1
in: pts:46080 pts_time:5.76 dts:46080 dts_time:5.76 duration:46080 duration_time:5.76 stream_index:1
out: pts:5760 pts_time:5.76 dts:5760 dts_time:5.76 duration:5760 duration_time:5.76 stream_index:1
in: pts:47104 pts_time:5.888 dts:47104 dts_time:5.888 duration:47104 duration_time:5.888 stream_index:1
out: pts:5888 pts_time:5.888 dts:5888 dts_time:5.888 duration:5888 duration_time:5.888 stream_index:1
in: pts:48128 pts_time:6.016 dts:48128 dts_time:6.016 duration:48128 duration_time:6.016 stream_index:1
out: pts:6016 pts_time:6.016 dts:6016 dts_time:6.016 duration:6016 duration_time:6.016 stream_index:1
in: pts:463406 pts_time:5.14896 dts:463406 dts_time:5.14896 duration:463406 duration_time:5.14896 stream_index:0
out: pts:5149 pts_time:5.149 dts:5149 dts_time:5.149 duration:5149 duration_time:5.149 stream_index:0
in: pts:467006 pts_time:5.18896 dts:467006 dts_time:5.18896 duration:467006 duration_time:5.18896 stream_index:0
out: pts:5189 pts_time:5.189 dts:5189 dts_time:5.189 duration:5189 duration_time:5.189 stream_index:0
in: pts:470606 pts_time:5.22896 dts:470606 dts_time:5.22896 duration:470606 duration_time:5.22896 stream_index:0
out: pts:5229 pts_time:5.229 dts:5229 dts_time:5.229 duration:5229 duration_time:5.229 stream_index:0
in: pts:474206 pts_time:5.26896 dts:474206 dts_time:5.26896 duration:474206 duration_time:5.26896 stream_index:0
out: pts:5269 pts_time:5.269 dts:5269 dts_time:5.269 duration:5269 duration_time:5.269 stream_index:0
in: pts:477806 pts_time:5.30896 dts:477806 dts_time:5.30896 duration:477806 duration_time:5.30896 stream_index:0
out: pts:5309 pts_time:5.309 dts:5309 dts_time:5.309 duration:5309 duration_time:5.309 stream_index:0
in: pts:481406 pts_time:5.34896 dts:481406 dts_time:5.34896 duration:481406 duration_time:5.34896 stream_index:0
out: pts:5349 pts_time:5.349 dts:5349 dts_time:5.349 duration:5349 duration_time:5.349 stream_index:0
in: pts:485006 pts_time:5.38896 dts:485006 dts_time:5.38896 duration:485006 duration_time:5.38896 stream_index:0
out: pts:5389 pts_time:5.389 dts:5389 dts_time:5.389 duration:5389 duration_time:5.389 stream_index:0
in: pts:488696 pts_time:5.42996 dts:488696 dts_time:5.42996 duration:488696 duration_time:5.42996 stream_index:0
out: pts:5430 pts_time:5.43 dts:5430 dts_time:5.43 duration:5430 duration_time:5.43 stream_index:0
in: pts:492206 pts_time:5.46896 dts:492206 dts_time:5.46896 duration:492206 duration_time:5.46896 stream_index:0
out: pts:5469 pts_time:5.469 dts:5469 dts_time:5.469 duration:5469 duration_time:5.469 stream_index:0
in: pts:495806 pts_time:5.50896 dts:495806 dts_time:5.50896 duration:495806 duration_time:5.50896 stream_index:0
out: pts:5509 pts_time:5.509 dts:5509 dts_time:5.509 duration:5509 duration_time:5.509 stream_index:0
in: pts:499406 pts_time:5.54896 dts:499406 dts_time:5.54896 duration:499406 duration_time:5.54896 stream_index:0
out: pts:5549 pts_time:5.549 dts:5549 dts_time:5.549 duration:5549 duration_time:5.549 stream_index:0
in: pts:503275 pts_time:5.59194 dts:503275 dts_time:5.59194 duration:503275 duration_time:5.59194 stream_index:0
out: pts:5592 pts_time:5.592 dts:5592 dts_time:5.592 duration:5592 duration_time:5.592 stream_index:0
in: pts:506605 pts_time:5.62894 dts:506605 dts_time:5.62894 duration:506605 duration_time:5.62894 stream_index:0
out: pts:5629 pts_time:5.629 dts:5629 dts_time:5.629 duration:5629 duration_time:5.629 stream_index:0
in: pts:510205 pts_time:5.66894 dts:510205 dts_time:5.66894 duration:510205 duration_time:5.66894 stream_index:0
out: pts:5669 pts_time:5.669 dts:5669 dts_time:5.669 duration:5669 duration_time:5.669 stream_index:0
in: pts:513805 pts_time:5.70894 dts:513805 dts_time:5.70894 duration:513805 duration_time:5.70894 stream_index:0
out: pts:5709 pts_time:5.709 dts:5709 dts_time:5.709 duration:5709 duration_time:5.709 stream_index:0
in: pts:517405 pts_time:5.74894 dts:517405 dts_time:5.74894 duration:517405 duration_time:5.74894 stream_index:0
out: pts:5749 pts_time:5.749 dts:5749 dts_time:5.749 duration:5749 duration_time:5.749 stream_index:0
in: pts:521005 pts_time:5.78894 dts:521005 dts_time:5.78894 duration:521005 duration_time:5.78894 stream_index:0
out: pts:5789 pts_time:5.789 dts:5789 dts_time:5.789 duration:5789 duration_time:5.789 stream_index:0
in: pts:525055 pts_time:5.83394 dts:525055 dts_time:5.83394 duration:525055 duration_time:5.83394 stream_index:0
out: pts:5834 pts_time:5.834 dts:5834 dts_time:5.834 duration:5834 duration_time:5.834 stream_index:0
in: pts:528205 pts_time:5.86894 dts:528205 dts_time:5.86894 duration:528205 duration_time:5.86894 stream_index:0
out: pts:5869 pts_time:5.869 dts:5869 dts_time:5.869 duration:5869 duration_time:5.869 stream_index:0
in: pts:531895 pts_time:5.90994 dts:531895 dts_time:5.90994 duration:531895 duration_time:5.90994 stream_index:0
out: pts:5910 pts_time:5.91 dts:5910 dts_time:5.91 duration:5910 duration_time:5.91 stream_index:0
in: pts:535405 pts_time:5.94894 dts:535405 dts_time:5.94894 duration:535405 duration_time:5.94894 stream_index:0
out: pts:5949 pts_time:5.949 dts:5949 dts_time:5.949 duration:5949 duration_time:5.949 stream_index:0
in: pts:539095 pts_time:5.98994 dts:539095 dts_time:5.98994 duration:539095 duration_time:5.98994 stream_index:0
out: pts:5990 pts_time:5.99 dts:5990 dts_time:5.99 duration:5990 duration_time:5.99 stream_index:0
in: pts:542605 pts_time:6.02894 dts:542605 dts_time:6.02894 duration:542605 duration_time:6.02894 stream_index:0
out: pts:6029 pts_time:6.029 dts:6029 dts_time:6.029 duration:6029 duration_time:6.029 stream_index:0
in: pts:546205 pts_time:6.06894 dts:546205 dts_time:6.06894 duration:546205 duration_time:6.06894 stream_index:0
out: pts:6069 pts_time:6.069 dts:6069 dts_time:6.069 duration:6069 duration_time:6.069 stream_index:0
in: pts:549805 pts_time:6.10894 dts:549805 dts_time:6.10894 duration:549805 duration_time:6.10894 stream_index:0
out: pts:6109 pts_time:6.109 dts:6109 dts_time:6.109 duration:6109 duration_time:6.109 stream_index:0
in: pts:553405 pts_time:6.14894 dts:553405 dts_time:6.14894 duration:553405 duration_time:6.14894 stream_index:0
out: pts:6149 pts_time:6.149 dts:6149 dts_time:6.149 duration:6149 duration_time:6.149 stream_index:0
in: pts:49152 pts_time:6.144 dts:49152 dts_time:6.144 duration:49152 duration_time:6.144 stream_index:1
out: pts:6144 pts_time:6.144 dts:6144 dts_time:6.144 duration:6144 duration_time:6.144 stream_index:1
in: pts:50176 pts_time:6.272 dts:50176 dts_time:6.272 duration:50176 duration_time:6.272 stream_index:1
out: pts:6272 pts_time:6.272 dts:6272 dts_time:6.272 duration:6272 duration_time:6.272 stream_index:1
in: pts:51200 pts_time:6.4 dts:51200 dts_time:6.4 duration:5120
0 duration_time:6.4 stream_index:1
out: pts:6400 pts_time:6.4 dts:6400 dts_time:6.4 duration:6400 duration_time:6.4 stream_index:1
in: pts:52224 pts_time:6.528 dts:52224 dts_time:6.528 duration:52224 duration_time:6.528 stream_index:1
out: pts:6528 pts_time:6.528 dts:6528 dts_time:6.528 duration:6528 duration_time:6.528 stream_index:1
in: pts:53248 pts_time:6.656 dts:53248 dts_time:6.656 duration:53248 duration_time:6.656 stream_index:1
out: pts:6656 pts_time:6.656 dts:6656 dts_time:6.656 duration:6656 duration_time:6.656 stream_index:1
in: pts:54272 pts_time:6.784 dts:54272 dts_time:6.784 duration:54272 duration_time:6.784 stream_index:1
out: pts:6784 pts_time:6.784 dts:6784 dts_time:6.784 duration:6784 duration_time:6.784 stream_index:1
in: pts:55296 pts_time:6.912 dts:55296 dts_time:6.912 duration:55296 duration_time:6.912 stream_index:1
out: pts:6912 pts_time:6.912 dts:6912 dts_time:6.912 duration:6912 duration_time:6.912 stream_index:1
in: pts:56320 pts_time:7.04 dts:56320 dts_time:7.04 duration:56320 duration_time:7.04 stream_index:1
out: pts:7040 pts_time:7.04 dts:7040 dts_time:7.04 duration:7040 duration_time:7.04 stream_index:1
in: pts:557005 pts_time:6.18894 dts:557005 dts_time:6.18894 duration:557005 duration_time:6.18894 stream_index:0
out: pts:6189 pts_time:6.189 dts:6189 dts_time:6.189 duration:6189 duration_time:6.189 stream_index:0
in: pts:560605 pts_time:6.22894 dts:560605 dts_time:6.22894 duration:560605 duration_time:6.22894 stream_index:0
out: pts:6229 pts_time:6.229 dts:6229 dts_time:6.229 duration:6229 duration_time:6.229 stream_index:0
in: pts:564205 pts_time:6.26894 dts:564205 dts_time:6.26894 duration:564205 duration_time:6.26894 stream_index:0
out: pts:6269 pts_time:6.269 dts:6269 dts_time:6.269 duration:6269 duration_time:6.269 stream_index:0
in: pts:567805 pts_time:6.30894 dts:567805 dts_time:6.30894 duration:567805 duration_time:6.30894 stream_index:0
out: pts:6309 pts_time:6.309 dts:6309 dts_time:6.309 duration:6309 duration_time:6.309 stream_index:0
in: pts:571405 pts_time:6.34894 dts:571405 dts_time:6.34894 duration:571405 duration_time:6.34894 stream_index:0
out: pts:6349 pts_time:6.349 dts:6349 dts_time:6.349 duration:6349 duration_time:6.349 stream_index:0
in: pts:575005 pts_time:6.38894 dts:575005 dts_time:6.38894 duration:575005 duration_time:6.38894 stream_index:0
out: pts:6389 pts_time:6.389 dts:6389 dts_time:6.389 duration:6389 duration_time:6.389 stream_index:0
in: pts:578605 pts_time:6.42894 dts:578605 dts_time:6.42894 duration:578605 duration_time:6.42894 stream_index:0
out: pts:6429 pts_time:6.429 dts:6429 dts_time:6.429 duration:6429 duration_time:6.429 stream_index:0
in: pts:582205 pts_time:6.46894 dts:582205 dts_time:6.46894 duration:582205 duration_time:6.46894 stream_index:0
out: pts:6469 pts_time:6.469 dts:6469 dts_time:6.469 duration:6469 duration_time:6.469 stream_index:0
in: pts:585805 pts_time:6.50894 dts:585805 dts_time:6.50894 duration:585805 duration_time:6.50894 stream_index:0
out: pts:6509 pts_time:6.509 dts:6509 dts_time:6.509 duration:6509 duration_time:6.509 stream_index:0
in: pts:589405 pts_time:6.54894 dts:589405 dts_time:6.54894 duration:589405 duration_time:6.54894 stream_index:0
out: pts:6549 pts_time:6.549 dts:6549 dts_time:6.549 duration:6549 duration_time:6.549 stream_index:0
in: pts:593005 pts_time:6.58894 dts:593005 dts_time:6.58894 duration:593005 duration_time:6.58894 stream_index:0
out: pts:6589 pts_time:6.589 dts:6589 dts_time:6.589 duration:6589 duration_time:6.589 stream_index:0
in: pts:596695 pts_time:6.62994 dts:596695 dts_time:6.62994 duration:596695 duration_time:6.62994 stream_index:0
out: pts:6630 pts_time:6.63 dts:6630 dts_time:6.63 duration:6630 duration_time:6.63 stream_index:0
in: pts:600205 pts_time:6.66894 dts:600205 dts_time:6.66894 duration:600205 duration_time:6.66894 stream_index:0
out: pts:6669 pts_time:6.669 dts:6669 dts_time:6.669 duration:6669 duration_time:6.669 stream_index:0
in: pts:603805 pts_time:6.70894 dts:603805 dts_time:6.70894 duration:603805 duration_time:6.70894 stream_index:0
out: pts:6709 pts_time:6.709 dts:6709 dts_time:6.709 duration:6709 duration_time:6.709 stream_index:0
in: pts:607405 pts_time:6.74894 dts:607405 dts_time:6.74894 duration:607405 duration_time:6.74894 stream_index:0
out: pts:6749 pts_time:6.749 dts:6749 dts_time:6.749 duration:6749 duration_time:6.749 stream_index:0
in: pts:611274 pts_time:6.79193 dts:611274 dts_time:6.79193 duration:611274 duration_time:6.79193 stream_index:0
out: pts:6792 pts_time:6.792 dts:6792 dts_time:6.792 duration:6792 duration_time:6.792 stream_index:0
in: pts:614604 pts_time:6.82893 dts:614604 dts_time:6.82893 duration:614604 duration_time:6.82893 stream_index:0
out: pts:6829 pts_time:6.829 dts:6829 dts_time:6.829 duration:6829 duration_time:6.829 stream_index:0
in: pts:618204 pts_time:6.86893 dts:618204 dts_time:6.86893 duration:618204 duration_time:6.86893 stream_index:0
out: pts:6869 pts_time:6.869 dts:6869 dts_time:6.869 duration:6869 duration_time:6.869 stream_index:0
in: pts:621804 pts_time:6.90893 dts:621804 dts_time:6.90893 duration:621804 duration_time:6.90893 stream_index:0
out: pts:6909 pts_time:6.909 dts:6909 dts_time:6.909 duration:6909 duration_time:6.909 stream_index:0
in: pts:625404 pts_time:6.94893 dts:625404 dts_time:6.94893 duration:625404 duration_time:6.94893 stream_index:0
out: pts:6949 pts_time:6.949 dts:6949 dts_time:6.949 duration:6949 duration_time:6.949 stream_index:0
in: pts:629004 pts_time:6.98893 dts:629004 dts_time:6.98893 duration:629004 duration_time:6.98893 stream_index:0
out: pts:6989 pts_time:6.989 dts:6989 dts_time:6.989 duration:6989 duration_time:6.989 stream_index:0
in: pts:632604 pts_time:7.02893 dts:632604 dts_time:7.02893 duration:632604 duration_time:7.02893 stream_index:0
out: pts:7029 pts_time:7.029 dts:7029 dts_time:7.029 duration:7029 duration_time:7.029 stream_index:0
in: pts:636204 pts_time:7.06893 dts:636204 dts_time:7.06893 duration:636204 duration_time:7.06893 stream_index:0
out: pts:7069 pts_time:7.069 dts:7069 dts_time:7.069 duration:7069 duration_time:7.069 stream_index:0
in: pts:639804 pts_time:7.10893 dts:639804 dts_time:7.10893 duration:639804 duration_time:7.10893 stream_index:0
out: pts:7109 pts_time:7.109 dts:7109 dts_time:7.109 duration:7109 duration_time:7.109 stream_index:0
in: pts:643404 pts_time:7.14893 dts:643404 dts_time:7.14893 duration:643404 duration_time:7.14893 stream_index:0
out: pts:7149 pts_time:7.149 dts:7149 dts_time:7.149 duration:7149 duration_time:7.149 stream_index:0
in: pts:647004 pts_time:7.18893 dts:647004 dts_time:7.18893 duration:647004 duration_time:7.18893 stream_index:0
out: pts:7189 pts_time:7.189 dts:7189 dts_time:7.189 duration:7189 duration_time:7.189 stream_index:0
in: pts:57344 pts_time:7.168 dts:57344 dts_time:7.168 duration:57344 duration_time:7.168 stream_index:1
out: pts:7168 pts_time:7.168 dts:7168 dts_time:7.168 duration:7168 duration_time:7.168 stream_index:1
in: pts:58368 pts_time:7.296 dts:58368 dts_time:7.296 duration:58368 duration_time:7.296 stream_index:1
out: pts:7296 pts_time:7.296 dts:7296 dts_time:7.296 duration:7296 duration_time:7.296 stream_index:1
in: pts:59392 pts_time:7.424 dts:59392 dts_time:7.424 duration:59392 duration_time:7.424 stream_index:1
out: pts:7424 pts_time:7.424 dts:7424 dts_time:7.424 duration:7424 duration_time:7.424 stream_index:1
in: pts:60416 pts_time:7.552 dts:60416 dts_time:7.552 duration:60416 duration_time:7.552 stream_index:1
out: pts:7552 pts_time:7.552 dts:7552 dts_time:7.552 duration:7552 duration_time:7.552 stream_index:1
in: pts:61440 pts_time:7.68 dts:61440 dts_time:7.68 duration:61440 duration_time:7.68 stream_index:1
out: pts:7680 pts_time:7.68 dts:7680 dts_time:7.68 duration:7680 duration_time:7.68 stream_index:1
in: pts:62464 pts_time:7.808 dts:62464 dts_time:7.808 duration:62464 duration_time:7.808 stream_index:1
out: pts:7808 pts_time:7.808 dts:7808 dts_time:7.808 duration:7808 duration_time:7.808 stream_index:1
in: pts:63488 pts_time:7.936 dts:63488 dts_time:7.936 duration:63488 duration_time:7.936 stream_index:1
out: pts:7936 pts_time:7.936 dts:7936 dts_time:7.936 duration:7936 duration_time:7.936 stream_index:1
in: pts:64512 pts_time:8.064 dts:64512 dts_time:8.064 duration:64512 duration_time:8.064 stream_index:1
out: pts:8064 pts_time:8.064 dts:8064 dts_time:8.064 duration:8064 duration_time:8.064 stream_index:1
in: pts:650604 pts_time:7.22893 dts:650604 dts_time:7.22893 duration:650604 duration_time:7.22893 stream_index:0
out: pts:7229 pts_time:7.229 dts:7229 dts_time:7.229 duration:7229 duration_time:7.229 stream_index:0
in: pts:654204 pts_time:7.26893 dts:654204 dts_time:7.26893 duration:654204 duration_time:7.26893 stream_index:0
out: pts:7269 pts_time:7.269 dts:7269 dts_time:7.269 duration:7269 duration_time:7.269 stream_index:0
in: pts:658073 pts_time:7.31192 dts:658073 dts_time:7.31192 duration:658073 duration_time:7.31192 stream_index:0
out: pts:7312 pts_time:7.312 dts:7312 dts_time:7.312 duration:7312 duration_time:7.312 stream_index:0
in: pts:661403 pts_time:7.34892 dts:661403 dts_time:7.34892 duration:661403 duration_time:7.34892 stream_index:0
out: pts:7349 pts_time:7.349 dts:7349 dts_time:7.349 duration:7349 duration_time:7.349 stream_index:0
in: pts:665003 pts_time:7.38892 dts:665003 dts_time:7.38892 duration:665003 duration_time:7.38892 stream_index:0
out: pts:7389 pts_time:7.389 dts:7389 dts_time:7.389 duration:7389 duration_time:7.389 stream_index:0
in: pts:668603 pts_time:7.42892 dts:668603 dts_time:7.42892 duration:668603 duration_time:7.42892 stream_index:0
out: pts:7429 pts_time:7.429 dts:7429 dts_time:7.429 duration:7429 duration_time:7.429 stream_index:0
in: pts:672203 pts_time:7.46892 dts:672203 dts_time:7.46892 duration:672203 duration_time:7.46892 stream_index:0
out: pts:7469 pts_time:7.469 dts:7469 dts_time:7.469 duration:7469 duration_time:7.469 stream_index:0
in: pts:675803 pts_time:7.50892 dts:675803 dts_time:7.50892 duration:675803 duration_time:7.50892 stream_index:0
out: pts:7509 pts_time:7.509 dts:7509 dts_time:7.509 duration:7509 duration_time:7.509 stream_index:0
in: pts:679403 pts_time:7.54892 dts:679403 dts_time:7.54892 duration:679403 duration_time:7.54892 stream_index:0
out: pts:7549 pts_time:7.549 dts:7549 dts_time:7.549 duration:7549 duration_time:7.549 stream_index:0
in: pts:683003 pts_time:7.58892 dts:683003 dts_time:7.58892 duration:683003 duration_time:7.58892 stream_index:0
out: pts:7589 pts_time:7.589 dts:7589 dts_time:7.589 duration:7589 duration_time:7.589 stream_index:0
in: pts:686603 pts_time:7.62892 dts:686603 dts_time:7.62892 duration:686603 duration_time:7.62892 stream_index:0
out: pts:7629 pts_time:7.629 dts:7629 dts_time:7.629 duration:7629 duration_time:7.629 stream_index:0
in: pts:690203 pts_time:7.66892 dts:690203 dts_time:7.66892 duration:690203 duration_time:7.66892 stream_index:0
out: pts:7669 pts_time:7.669 dts:7669 dts_time:7.669 duration:7669 duration_time:7.669 stream_index:0
in: pts:693803 pts_time:7.70892 dts:693803 dts_time:7.70892 duration:693803 duration_time:7.70892 stream_index:0
out: pts:7709 pts_time:7.709 dts:7709 dts_time:7.709 duration:7709 duration_time:7.709 stream_index:0
in: pts:697403 pts_time:7.74892 dts:697403 dts_time:7.74892 duration:697403 duration_time:7.74892 stream_index:0
out: pts:7749 pts_time:7.749 dts:7749 dts_time:7.749 duration:7749 duration_time:7.749 stream_index:0
in: pts:701003 pts_time:7.78892 dts:701003 dts_time:7.78892 duration:701003 duration_time:7.78892 stream_index:0
out: pts:7789 pts_time:7.789 dts:7789 dts_time:7.789 duration:7789 duration_time:7.789 stream_index:0
in: pts:704603 pts_time:7.82892 dts:704603 dts_time:7.82892 duration:704603 duration_time:7.82892 stream_index:0
out: pts:7829 pts_time:7.829 dts:7829 dts_time:7.829 duration:7829 duration_time:7.829 stream_index:0
in: pts:708203 pts_time:7.86892 dts:708203 dts_time:7.86892 duration:708203 duration_time:7.86892 stream_index:0
out: pts:7869 pts_time:7.869 dts:7869 dts_time:7.869 duration:7869 duration_time:7.869 stream_index:0
in: pts:711803 pts_time:7.90892 dts:711803 dts_time:7.90892 duration:711803 duration_time:7.90892 stream_index:0
out: pts:7909 pts_time:7.909 dts:7909 dts_time:7.909 duration:7909 duration_time:7.909 stream_index:0
in: pts:715403 pts_time:7.94892 dts:715403 dts_time:7.94892 duration:715403 duration_time:7.94892 stream_index:0
out: pts:7949 pts_time:7.949 dts:7949 dts_time:7.949 duration:7949 duration_time:7.949 stream_index:0
in: pts:719272 pts_time:7.99191 dts:719272 dts_time:7.99191 duration:719272 duration_time:7.99191 stream_index:0
out: pts:7992 pts_time:7.992 dts:7992 dts_time:7.992 duration:7992 duration_time:7.992 stream_index:0
in: pts:722602 pts_time:8.02891 dts:722602 dts_time:8.02891 duration:722602 duration_time:8.02891 stream_index:0
out: pts:8029 pts_time:8.029 dts:8029 dts_time:8.029 duration:8029 duration_time:8.029 stream_index:0
in: pts:726202 pts_time:8.06891 dts:726202 dts_time:8.06891 duration:726202 duration_time:8.06891 stream_index:0
out: pts:8069 pts_time:8.069 dts:8069 dts_time:8.069 duration:8069 duration_time:8.069 stream_index:0
in: pts:729802 pts_time:8.10891 dts:729802 dts_time:8.10891 duration:729802 duration_time:8.10891 stream_index:0
out: pts:8109 pts_time:8.109 dts:8109 dts_time:8.109 duration:8109 duration_time:8.109 stream_index:0
in: pts:733402 pts_time:8.14891 dts:733402 dts_time:8.14891 duration:733402 duration_time:8.14891 stream_index:0
out: pts:8149 pts_time:8.149 dts:8149 dts_time:8.149 duration:8149 duration_time:8.149 stream_index:0
in: pts:737002 pts_time:8.18891 dts:737002 dts_time:8.18891 duration:737002 duration_time:8.18891 stream_index:0
out: pts:8189 pts_time:8.189 dts:8189 dts_time:8.189 duration:8189 duration_time:8.189 stream_index:0
in: pts:740602 pts_time:8.22891 dts:740602 dts_time:8.22891 duration:740602 duration_time:8.22891 stream_index:0
out: pts:8229 pts_time:8.229 dts:8229 dts_time:8.229 duration:8229 duration_time:8.229 stream_index:0
in: pts:65536 pts_time:8.192 dts:65536 dts_time:8.192 duration:65536 duration_time:8.192 stream_index:1
out: pts:8192 pts_time:8.192 dts:8192 dts_time:8.192 duration:8192 duration_time:8.192 stream_index:1
in: pts:66560 pts_time:8.32 dts:66560 dts_time:8.32 duration:66560 duration_time:8.32 stream_index:1
out: pts:8320 pts_time:8.32 dts:8320 dts_time:8.32 duration:8320 duration_time:8.32 stream_index:1
in: pts:67584 pts_time:8.448 dts:67584 dts_time:8.448 duration:67584 duration_time:8.448 stream_index:1
out: pts:8448 pts_time:8.448 dts:8448 dts_time:8.448 duration:8448 duration_time:8.448 stream_index:1
in: pts:68608 pts_time:8.576 dts:68608 dts_time:8.576 duration:68608 duration_time:8.576 stream_index:1
out: pts:8576 pts_time:8.576 dts:8576 dts_time:8.576 duration:8576 duration_time:8.576 stream_index:1
in: pts:69632 pts_time:8.704 dts:69632 dts_time:8.704 duration:69632 duration_time:8.704 stream_index:1
out: pts:8704 pts_time:8.704 dts:8704 dts_time:8.704 duration:8704 duration_time:8.704 stream_index:1
in: pts:70656 pts_time:8.832 dts:70656 dts_time:8.832 duration:70656 duration_time:8.832 stream_index:1
out: pts:8832 pts_time:8.832 dts:8832 dts_time:8.832 duration:8832 duration_time:8.832 stream_index:1
in: pts:71680 pts_time:8.96 dts:71680 dts_time:8.96 duration:71680 duration_time:8.96 stream_index:1
out: pts:8960 pts_time:8.96 dts:8960 dts_time:8.96 duration:8960 duration_time:8.96 stream_index:1
in: pts:72704 pts_time:9.088 dts:72704 dts_time:9.088 duration:72704 duration_time:9.088 stream_index:1
out: pts:9088 pts_time:9.088 dts:9088 dts_time:9.088 duration:9088 duration_time:9.088 stream_index:1
in: pts:744112 pts_time:8.26791 dts:744112 dts_time:8.26791 duration:744112 duration_time:8.26791 stream_index:0
out: pts:8268 pts_time:8.268 dts:8268 dts_time:8.268 duration:8268 duration_time:8.268 stream_index:0
in: pts:747802 pts_time:8.30891 dts:747802 dts_time:8.30891 duration:747802 duration_time:8.30891 stream_index:0
out: pts:8309 pts_time:8.309 dts:8309 dts_time:8.309 duration:8309 duration_time:8.309 stream_index:0
in: pts:751402 pts_time:8.34891 dts:751402 dts_time:8.34891 duration:751402 duration_time:8.34891 stream_index:0
out: pts:8349 pts_time:8.349 dts:8349 dts_time:8.349 duration:8349 duration_time:8.349 stream_index:0
in: pts:755542 pts_time:8.39491 dts:755542 dts_time:8.39491 duration:755542 duration_time:8.39491 stream_index:0
out: pts:8395 pts_time:8.395 dts:8395 dts_time:8.395 duration:8395 duration_time:8.395 stream_index:0
in: pts:758602 pts_time:8.42891 dts:758602 dts_time:8.42891 duration:758602 duration_time:8.42891 stream_index:0
out: pts:8429 pts_time:8.429 dts:8429 dts_time:8.429 duration:8429 duration_time:8.429 stream_index:0
in: pts:762202 pts_time:8.46891 dts:762202 dts_time:8.46891 duration:762202 duration_time:8.46891 stream_index:0
out: pts:8469 pts_time:8.469 dts:8469 dts_time:8.469 duration:8469 duration_time:8.469 stream_index:0
in: pts:765802 pts_time:8.50891 dts:765802 dts_time:8.50891 duration:765802 duration_time:8.50891 stream_index:0
out: pts:8509 pts_time:8.509 dts:8509 dts_time:8.509 duration:8509 duration_time:8.509 stream_index:0
in: pts:769312 pts_time:8.54791 dts:769312 dts_time:8.54791 duration:769312 duration_time:8.54791 stream_index:0
out: pts:8548 pts_time:8.548 dts:8548 dts_time:8.548 duration:8548 duration_time:8.548 stream_index:0
in: pts:773002 pts_time:8.58891 dts:773002 dts_time:8.58891 duration:773002 duration_time:8.58891 stream_index:0
out: pts:8589 pts_time:8.589 dts:8589 dts_time:8.589 duration:8589 duration_time:8.589 stream_index:0
in: pts:776602 pts_time:8.62891 dts:776602 dts_time:8.62891 duration:776602 duration_time:8.62891 stream_index:0
out: pts:8629 pts_time:8.629 dts:8629 dts_time:8.629 duration:8629 duration_time:8.629 stream_index:0
in: pts:780112 pts_time:8.66791 dts:780112 dts_time:8.66791 duration:780112 duration_time:8.66791 stream_index:0
out: pts:8668 pts_time:8.668 dts:8668 dts_time:8.668 duration:8668 duration_time:8.668 stream_index:0
in: pts:783712 pts_time:8.70791 dts:783712 dts_time:8.70791 duration:783712 duration_time:8.70791 stream_index:0
out: pts:8708 pts_time:8.708 dts:8708 dts_time:8.708 duration:8708 duration_time:8.708 stream_index:0
in: pts:787402 pts_time:8.74891 dts:787402 dts_time:8.74891 duration:787402 duration_time:8.74891 stream_index:0
out: pts:8749 pts_time:8.749 dts:8749 dts_time:8.749 duration:8749 duration_time:8.749 stream_index:0
in: pts:790912 pts_time:8.78791 dts:790912 dts_time:8.78791 duration:790912 duration_time:8.78791 stream_index:0
out: pts:8788 pts_time:8.788 dts:8788 dts_time:8.788 duration:8788 duration_time:8.788 stream_index:0
in: pts:794602 pts_time:8.82891 dts:794602 dts_time:8.82891 duration:794602 duration_time:8.82891 stream_index:0
out: pts:8829 pts_time:8.829 dts:8829 dts_time:8.829 duration:8829 duration_time:8.829 stream_index:0
in: pts:798202 pts_time:8.86891 dts:798202 dts_time:8.86891 duration:798202 duration_time:8.86891 stream_index:0
out: pts:8869 pts_time:8.869 dts:8869 dts_time:8.869 duration:8869 duration_time:8.869 stream_index:0
in: pts:801802 pts_time:8.90891 dts:801802 dts_time:8.90891 duration:801802 duration_time:8.90891 stream_index:0
out: pts:8909 pts_time:8.909 dts:8909 dts_time:8.909 duration:8909 duration_time:8.909 stream_index:0
in: pts:805402 pts_time:8.94891 dts:805402 dts_time:8.94891 duration:805402 duration_time:8.94891 stream_index:0
out: pts:8949 pts_time:8.949 dts:8949 dts_time:8.949 duration:8949 duration_time:8.949 stream_index:0
in: pts:809002 pts_time:8.98891 dts:809002 dts_time:8.98891 duration:809002 duration_time:8.98891 stream_index:0
out: pts:8989 pts_time:8.989 dts:8989 dts_time:8.989 duration:8989 duration_time:8.989 stream_index:0
in: pts:812602 pts_time:9.02891 dts:812602 dts_time:9.02891 duration:812602 duration_time:9.02891 stream_index:0
out: pts:9029 pts_time:9.029 dts:9029 dts_time:9.029 duration:9029 duration_time:9.029 stream_index:0
in: pts:816202 pts_time:9.06891 dts:816202 dts_time:9.06891 duration:816202 duration_time:9.06891 stream_index:0
out: pts:9069 pts_time:9.069 dts:9069 dts_time:9.069 duration:9069 duration_time:9.069 stream_index:0
in: pts:819802 pts_time:9.10891 dts:819802 dts_time:9.10891 duration:819802 duration_time:9.10891 stream_index:0
out: pts:9109 pts_time:9.109 dts:9109 dts_time:9.109 duration:9109 duration_time:9.109 stream_index:0
in: pts:823402 pts_time:9.14891 dts:823402 dts_time:9.14891 duration:823402 duration_time:9.14891 stream_index:0
out: pts:9149 pts_time:9.149 dts:9149 dts_time:9.149 duration:9149 duration_time:9.149 stream_index:0
in: pts:827361 pts_time:9.1929 dts:827361 dts_time:9.1929 duration:827361 duration_time:9.1929 stream_index:0
out: pts:9193 pts_time:9.193 dts:9193 dts_time:9.193 duration:9193 duration_time:9.193 stream_index:0
in: pts:830600 pts_time:9.22889 dts:830600 dts_time:9.22889 duration:830600 duration_time:9.22889 stream_index:0
out: pts:9229 pts_time:9.229 dts:9229 dts_time:9.229 duration:9229 duration_time:9.229 stream_index:0
in: pts:73728 pts_time:9.216 dts:73728 dts_time:9.216 duration:73728 duration_time:9.216 stream_index:1
out: pts:9216 pts_time:9.216 dts:9216 dts_time:9.216 duration:9216 duration_time:9.216 stream_index:1
in: pts:74752 pts_time:9.344 dts:74752 dts_time:9.344 duration:74752 duration_time:9.344 stream_index:1
out: pts:9344 pts_time:9.344 dts:9344 dts_time:9.344 duration:9344 duration_time:9.344 stream_index:1
in: pts:75776 pts_time:9.472 dts:75776 dts_time:9.472 duration:75776 duration_time:9.472 stream_index:1
out: pts:9472 pts_time:9.472 dts:9472 dts_time:9.472 duration:9472 duration_time:9.472 stream_index:1
in: pts:76800 pts_time:9.6 dts:76800 dts_time:9.6 duration:76800 duration_time:9.6 stream_index:1
out: pts:9600 pts_time:9.6 dts:9600 dts_time:9.6 duration:9600 duration_time:9.6 stream_index:1
in: pts:77824 pts_time:9.728 dts:77824 dts_time:9.728 duration:77824 duration_time:9.728 stream_index:1
out: pts:9728 pts_time:9.728 dts:9728 dts_time:9.728 duration:9728 duration_time:9.728 stream_index:1
in: pts:78848 pts_time:9.856 dts:78848 dts_time:9.856 duration:78848 duration_time:9.856 stream_index:1
out: pts:9856 pts_time:9.856 dts:9856 dts_time:9.856 duration:9856 duration_time:9.856 stream_index:1
in: pts:79872 pts_time:9.984 dts:79872 dts_time:9.984 duration:79872 duration_time:9.984 stream_index:1
out: pts:9984 pts_time:9.984 dts:9984 dts_time:9.984 duration:9984 duration_time:9.984 stream_index:1
in: pts:80896 pts_time:10.112 dts:80896 dts_time:10.112 duration:80896 duration_time:10.112 stream_index:1
out: pts:10112 pts_time:10.112 dts:10112 dts_time:10.112 duration:10112 duration_time:10.112 stream_index:1
in: pts:834200 pts_time:9.26889 dts:834200 dts_time:9.26889 duration:834200 duration_time:9.26889 stream_index:0
out: pts:9269 pts_time:9.269 dts:9269 dts_time:9.269 duration:9269 duration_time:9.269 stream_index:0
in: pts:837800 pts_time:9.30889 dts:837800 dts_time:9.30889 duration:837800 duration_time:9.30889 stream_index:0
out: pts:9309 pts_time:9.309 dts:9309 dts_time:9.309 duration:9309 duration_time:9.309 stream_index:0
in: pts:841400 pts_time:9.34889 dts:841400 dts_time:9.34889 duration:841400 duration_time:9.34889 stream_index:0
out: pts:9349 pts_time:9.349 dts:9349 dts_time:9.349 duration:9349 duration_time:9.349 stream_index:0
in: pts:845000 pts_time:9.38889 dts:845000 dts_time:9.38889 duration:845000 duration_time:9.38889 stream_index:0
out: pts:9389 pts_time:9.389 dts:9389 dts_time:9.389 duration:9389 duration_time:9.389 stream_index:0
in: pts:848600 pts_time:9.42889 dts:848600 dts_time:9.42889 duration:848600 duration_time:9.42889 stream_index:0
out: pts:9429 pts_time:9.429 dts:9429 dts_time:9.429 duration:9429 duration_time:9.429 stream_index:0
in: pts:852200 pts_time:9.46889 dts:852200 dts_time:9.46889 duration:852200 duration_time:9.46889 stream_index:0
out: pts:9469 pts_time:9.469 dts:9469 dts_time:9.469 duration:9469 duration_time:9.469 stream_index:0
in: pts:855890 pts_time:9.50989 dts:855890 dts_time:9.50989 duration:855890 duration_time:9.50989 stream_index:0
out: pts:9510 pts_time:9.51 dts:9510 dts_time:9.51 duration:9510 duration_time:9.51 stream_index:0
in: pts:859310 pts_time:9.54789 dts:859310 dts_time:9.54789 duration:859310 duration_time:9.54789 stream_index:0
out: pts:9548 pts_time:9.548 dts:9548 dts_time:9.548 duration:9548 duration_time:9.548 stream_index:0
in: pts:863000 pts_time:9.58889 dts:863000 dts_time:9.58889 duration:863000 duration_time:9.58889 stream_index:0
out: pts:9589 pts_time:9.589 dts:9589 dts_time:9.589 duration:9589 duration_time:9.589 stream_index:0
in: pts:866510 pts_time:9.62789 dts:866510 dts_time:9.62789 duration:866510 duration_time:9.62789 stream_index:0
out: pts:9628 pts_time:9.628 dts:9628 dts_time:9.628 duration:9628 duration_time:9.628 stream_index:0
in: pts:870200 pts_time:9.66889 dts:870200 dts_time:9.66889 duration:870200 duration_time:9.66889 stream_index:0
out: pts:9669 pts_time:9.669 dts:9669 dts_time:9.669 duration:9669 duration_time:9.669 stream_index:0
in: pts:873800 pts_time:9.70889 dts:873800 dts_time:9.70889 duration:873800 duration_time:9.70889 stream_index:0
out: pts:9709 pts_time:9.709 dts:9709 dts_time:9.709 duration:9709 duration_time:9.709 stream_index:0
in: pts:877400 pts_time:9.74889 dts:877400 dts_time:9.74889 duration:877400 duration_time:9.74889 stream_index:0
out: pts:9749 pts_time:9.749 dts:9749 dts_time:9.749 duration:9749 duration_time:9.749 stream_index:0
in: pts:881000 pts_time:9.78889 dts:881000 dts_time:9.78889 duration:881000 duration_time:9.78889 stream_index:0
out: pts:9789 pts_time:9.789 dts:9789 dts_time:9.789 duration:9789 duration_time:9.789 stream_index:0
in: pts:884600 pts_time:9.82889 dts:884600 dts_time:9.82889 duration:884600 duration_time:9.82889 stream_index:0
out: pts:9829 pts_time:9.829 dts:9829 dts_time:9.829 duration:9829 duration_time:9.829 stream_index:0
in: pts:888110 pts_time:9.86789 dts:888110 dts_time:9.86789 duration:888110 duration_time:9.86789 stream_index:0
out: pts:9868 pts_time:9.868 dts:9868 dts_time:9.868 duration:9868 duration_time:9.868 stream_index:0
in: pts:891710 pts_time:9.90789 dts:891710 dts_time:9.90789 duration:891710 duration_time:9.90789 stream_index:0
out: pts:9908 pts_time:9.908 dts:9908 dts_time:9.908 duration:9908 duration_time:9.908 stream_index:0
in: pts:895310 pts_time:9.94789 dts:895310 dts_time:9.94789 duration:895310 duration_time:9.94789 stream_index:0
out: pts:9948 pts_time:9.948 dts:9948 dts_time:9.948 duration:9948 duration_time:9.948 stream_index:0
in: pts:898910 pts_time:9.98789 dts:898910 dts_time:9.98789 duration:898910 duration_time:9.98789 stream_index:0
out: pts:9988 pts_time:9.988 dts:9988 dts_time:9.988 duration:9988 duration_time:9.988 stream_index:0
in: pts:902600 pts_time:10.0289 dts:902600 dts_time:10.0289 duration:902600 duration_time:10.0289 stream_index:0
out: pts:10029 pts_time:10.029 dts:10029 dts_time:10.029 duration:10029 duration_time:10.029 stream_index:0
in: pts:906110 pts_time:10.0679 dts:906110 dts_time:10.0679 duration:906110 duration_time:10.0679 stream_index:0
out: pts:10068 pts_time:10.068 dts:10068 dts_time:10.068 duration:10068 duration_time:10.068 stream_index:0
in: pts:909710 pts_time:10.1079 dts:909710 dts_time:10.1079 duration:909710 duration_time:10.1079 stream_index:0
out: pts:10108 pts_time:10.108 dts:10108 dts_time:10.108 duration:10108 duration_time:10.108 stream_index:0
in: pts:913310 pts_time:10.1479 dts:913310 dts_time:10.1479 duration:913310 duration_time:10.1479 stream_index:0
out: pts:10148 pts_time:10.148 dts:10148 dts_time:10.148 duration:10148 duration_time:10.148 stream_index:0
in: pts:916910 pts_time:10.1879 dts:916910 dts_time:10.1879 duration:916910 duration_time:10.1879 stream_index:0
out: pts:10188 pts_time:10.188 dts:10188 dts_time:10.188 duration:10188 duration_time:10.188 stream_index:0
in: pts:920600 pts_time:10.2289 dts:920600 dts_time:10.2289 duration:920600 duration_time:10.2289 stream_index:0
out: pts:10229 pts_time:10.229 dts:10229 dts_time:10.229 duration:10229 duration_time:10.229 stream_index:0
in: pts:924110 pts_time:10.2679 dts:924110 dts_time:10.2679 duration:924110 duration_time:10.2679 stream_index:0
out: pts:10268 pts_time:10.268 dts:10268 dts_time:10.268 duration:10268 duration_time:10.268 stream_index:0
in: pts:81920 pts_time:10.24 dts:81920 dts_time:10.24 duration:81920 duration_time:10.24 stream_index:1
out: pts:10240 pts_time:10.24 dts:10240 dts_time:10.24 duration:10240 duration_time:10.24 stream_index:1
in: pts:82944 pts_time:10.368 dts:82944 dts_time:10.368 duration:82944 duration_time:10.368 stream_index:1
out: pts:10368 pts_time:10.368 dts:10368 dts_time:10.368 duration:10368 duration_time:10.368 stream_
index:1
in: pts:83968 pts_time:10.496 dts:83968 dts_time:10.496 duration:83968 duration_time:10.496 stream_index:1
out: pts:10496 pts_time:10.496 dts:10496 dts_time:10.496 duration:10496 duration_time:10.496 stream_index:1
in: pts:84992 pts_time:10.624 dts:84992 dts_time:10.624 duration:84992 duration_time:10.624 stream_index:1
out: pts:10624 pts_time:10.624 dts:10624 dts_time:10.624 duration:10624 duration_time:10.624 stream_index:1
in: pts:86016 pts_time:10.752 dts:86016 dts_time:10.752 duration:86016 duration_time:10.752 stream_index:1
out: pts:10752 pts_time:10.752 dts:10752 dts_time:10.752 duration:10752 duration_time:10.752 stream_index:1
in: pts:87040 pts_time:10.88 dts:87040 dts_time:10.88 duration:87040 duration_time:10.88 stream_index:1
out: pts:10880 pts_time:10.88 dts:10880 dts_time:10.88 duration:10880 duration_time:10.88 stream_index:1
in: pts:88064 pts_time:11.008 dts:88064 dts_time:11.008 duration:88064 duration_time:11.008 stream_index:1
out: pts:11008 pts_time:11.008 dts:11008 dts_time:11.008 duration:11008 duration_time:11.008 stream_index:1
in: pts:89088 pts_time:11.136 dts:89088 dts_time:11.136 duration:89088 duration_time:11.136 stream_index:1
out: pts:11136 pts_time:11.136 dts:11136 dts_time:11.136 duration:11136 duration_time:11.136 stream_index:1
in: pts:927800 pts_time:10.3089 dts:927800 dts_time:10.3089 duration:927800 duration_time:10.3089 stream_index:0
out: pts:10309 pts_time:10.309 dts:10309 dts_time:10.309 duration:10309 duration_time:10.309 stream_index:0
in: pts:931400 pts_time:10.3489 dts:931400 dts_time:10.3489 duration:931400 duration_time:10.3489 stream_index:0
out: pts:10349 pts_time:10.349 dts:10349 dts_time:10.349 duration:10349 duration_time:10.349 stream_index:0
in: pts:935269 pts_time:10.3919 dts:935269 dts_time:10.3919 duration:935269 duration_time:10.3919 stream_index:0
out: pts:10392 pts_time:10.392 dts:10392 dts_time:10.392 duration:10392 duration_time:10.392 stream_index:0
in: pts:938599 pts_time:10.4289 dts:938599 dts_time:10.4289 duration:938599 duration_time:10.4289 stream_index:0
out: pts:10429 pts_time:10.429 dts:10429 dts_time:10.429 duration:10429 duration_time:10.429 stream_index:0
in: pts:942199 pts_time:10.4689 dts:942199 dts_time:10.4689 duration:942199 duration_time:10.4689 stream_index:0
out: pts:10469 pts_time:10.469 dts:10469 dts_time:10.469 duration:10469 duration_time:10.469 stream_index:0
in: pts:945709 pts_time:10.5079 dts:945709 dts_time:10.5079 duration:945709 duration_time:10.5079 stream_index:0
out: pts:10508 pts_time:10.508 dts:10508 dts_time:10.508 duration:10508 duration_time:10.508 stream_index:0
in: pts:949309 pts_time:10.5479 dts:949309 dts_time:10.5479 duration:949309 duration_time:10.5479 stream_index:0
out: pts:10548 pts_time:10.548 dts:10548 dts_time:10.548 duration:10548 duration_time:10.548 stream_index:0
in: pts:952909 pts_time:10.5879 dts:952909 dts_time:10.5879 duration:952909 duration_time:10.5879 stream_index:0
out: pts:10588 pts_time:10.588 dts:10588 dts_time:10.588 duration:10588 duration_time:10.588 stream_index:0
in: pts:956509 pts_time:10.6279 dts:956509 dts_time:10.6279 duration:956509 duration_time:10.6279 stream_index:0
out: pts:10628 pts_time:10.628 dts:10628 dts_time:10.628 duration:10628 duration_time:10.628 stream_index:0
in: pts:960109 pts_time:10.6679 dts:960109 dts_time:10.6679 duration:960109 duration_time:10.6679 stream_index:0
out: pts:10668 pts_time:10.668 dts:10668 dts_time:10.668 duration:10668 duration_time:10.668 stream_index:0
in: pts:963799 pts_time:10.7089 dts:963799 dts_time:10.7089 duration:963799 duration_time:10.7089 stream_index:0
out: pts:10709 pts_time:10.709 dts:10709 dts_time:10.709 duration:10709 duration_time:10.709 stream_index:0
in: pts:967309 pts_time:10.7479 dts:967309 dts_time:10.7479 duration:967309 duration_time:10.7479 stream_index:0
out: pts:10748 pts_time:10.748 dts:10748 dts_time:10.748 duration:10748 duration_time:10.748 stream_index:0
in: pts:970999 pts_time:10.7889 dts:970999 dts_time:10.7889 duration:970999 duration_time:10.7889 stream_index:0
out: pts:10789 pts_time:10.789 dts:10789 dts_time:10.789 duration:10789 duration_time:10.789 stream_index:0
in: pts:974509 pts_time:10.8279 dts:974509 dts_time:10.8279 duration:974509 duration_time:10.8279 stream_index:0
out: pts:10828 pts_time:10.828 dts:10828 dts_time:10.828 duration:10828 duration_time:10.828 stream_index:0
in: pts:978109 pts_time:10.8679 dts:978109 dts_time:10.8679 duration:978109 duration_time:10.8679 stream_index:0
out: pts:10868 pts_time:10.868 dts:10868 dts_time:10.868 duration:10868 duration_time:10.868 stream_index:0
in: pts:981709 pts_time:10.9079 dts:981709 dts_time:10.9079 duration:981709 duration_time:10.9079 stream_index:0
out: pts:10908 pts_time:10.908 dts:10908 dts_time:10.908 duration:10908 duration_time:10.908 stream_index:0
in: pts:985309 pts_time:10.9479 dts:985309 dts_time:10.9479 duration:985309 duration_time:10.9479 stream_index:0
out: pts:10948 pts_time:10.948 dts:10948 dts_time:10.948 duration:10948 duration_time:10.948 stream_index:0
in: pts:988909 pts_time:10.9879 dts:988909 dts_time:10.9879 duration:988909 duration_time:10.9879 stream_index:0
out: pts:10988 pts_time:10.988 dts:10988 dts_time:10.988 duration:10988 duration_time:10.988 stream_index:0
in: pts:992509 pts_time:11.0279 dts:992509 dts_time:11.0279 duration:992509 duration_time:11.0279 stream_index:0
out: pts:11028 pts_time:11.028 dts:11028 dts_time:11.028 duration:11028 duration_time:11.028 stream_index:0
in: pts:996109 pts_time:11.0679 dts:996109 dts_time:11.0679 duration:996109 duration_time:11.0679 stream_index:0
out: pts:11068 pts_time:11.068 dts:11068 dts_time:11.068 duration:11068 duration_time:11.068 stream_index:0
in: pts:999709 pts_time:11.1079 dts:999709 dts_time:11.1079 duration:999709 duration_time:11.1079 stream_index:0
out: pts:11108 pts_time:11.108 dts:11108 dts_time:11.108 duration:11108 duration_time:11.108 stream_index:0
in: pts:1003309 pts_time:11.1479 dts:1003309 dts_time:11.1479 duration:1003309 duration_time:11.1479 stream_index:0
out: pts:11148 pts_time:11.148 dts:11148 dts_time:11.148 duration:11148 duration_time:11.148 stream_index:0
in: pts:1006999 pts_time:11.1889 dts:1006999 dts_time:11.1889 duration:1006999 duration_time:11.1889 stream_index:0
out: pts:11189 pts_time:11.189 dts:11189 dts_time:11.189 duration:11189 duration_time:11.189 stream_index:0
in: pts:1010509 pts_time:11.2279 dts:1010509 dts_time:11.2279 duration:1010509 duration_time:11.2279 stream_index:0
out: pts:11228 pts_time:11.228 dts:11228 dts_time:11.228 duration:11228 duration_time:11.228 stream_index:0
in: pts:1014109 pts_time:11.2679 dts:1014109 dts_time:11.2679 duration:1014109 duration_time:11.2679 stream_index:0
out: pts:11268 pts_time:11.268 dts:11268 dts_time:11.268 duration:11268 duration_time:11.268 stream_index:0
in: pts:1017799 pts_time:11.3089 dts:1017799 dts_time:11.3089 duration:1017799 duration_time:11.3089 stream_index:0
out: pts:11309 pts_time:11.309 dts:11309 dts_time:11.309 duration:11309 duration_time:11.309 stream_index:0
in: pts:90112 pts_time:11.264 dts:90112 dts_time:11.264 duration:90112 duration_time:11.264 stream_index:1
out: pts:11264 pts_time:11.264 dts:11264 dts_time:11.264 duration:11264 duration_time:11.264 stream_index:1
in: pts:91136 pts_time:11.392 dts:91136 dts_time:11.392 duration:91136 duration_time:11.392 stream_index:1
out: pts:11392 pts_time:11.392 dts:11392 dts_time:11.392 duration:11392 duration_time:11.392 stream_index:1
in: pts:92160 pts_time:11.52 dts:92160 dts_time:11.52 duration:92160 duration_time:11.52 stream_index:1
out: pts:11520 pts_time:11.52 dts:11520 dts_time:11.52 duration:11520 duration_time:11.52 stream_index:1
in: pts:93184 pts_time:11.648 dts:93184 dts_time:11.648 duration:93184 duration_time:11.648 stream_index:1
out: pts:11648 pts_time:11.648 dts:11648 dts_time:11.648 duration:11648 duration_time:11.648 stream_index:1
in: pts:94208 pts_time:11.776 dts:94208 dts_time:11.776 duration:94208 duration_time:11.776 stream_index:1
out: pts:11776 pts_time:11.776 dts:11776 dts_time:11.776 duration:11776 duration_time:11.776 stream_index:1
in: pts:95232 pts_time:11.904 dts:95232 dts_time:11.904 duration:95232 duration_time:11.904 stream_index:1
out: pts:11904 pts_time:11.904 dts:11904 dts_time:11.904 duration:11904 duration_time:11.904 stream_index:1
in: pts:96256 pts_time:12.032 dts:96256 dts_time:12.032 duration:96256 duration_time:12.032 stream_index:1
out: pts:12032 pts_time:12.032 dts:12032 dts_time:12.032 duration:12032 duration_time:12.032 stream_index:1
in: pts:97280 pts_time:12.16 dts:97280 dts_time:12.16 duration:97280 duration_time:12.16 stream_index:1
out: pts:12160 pts_time:12.16 dts:12160 dts_time:12.16 duration:12160 duration_time:12.16 stream_index:1
in: pts:1021399 pts_time:11.3489 dts:1021399 dts_time:11.3489 duration:1021399 duration_time:11.3489 stream_index:0
out: pts:11349 pts_time:11.349 dts:11349 dts_time:11.349 duration:11349 duration_time:11.349 stream_index:0
in: pts:1024909 pts_time:11.3879 dts:1024909 dts_time:11.3879 duration:1024909 duration_time:11.3879 stream_index:0
out: pts:11388 pts_time:11.388 dts:11388 dts_time:11.388 duration:11388 duration_time:11.388 stream_index:0
in: pts:1028599 pts_time:11.4289 dts:1028599 dts_time:11.4289 duration:1028599 duration_time:11.4289 stream_index:0
out: pts:11429 pts_time:11.429 dts:11429 dts_time:11.429 duration:11429 duration_time:11.429 stream_index:0
in: pts:1032109 pts_time:11.4679 dts:1032109 dts_time:11.4679 duration:1032109 duration_time:11.4679 stream_index:0
out: pts:11468 pts_time:11.468 dts:11468 dts_time:11.468 duration:11468 duration_time:11.468 stream_index:0
in: pts:1035799 pts_time:11.5089 dts:1035799 dts_time:11.5089 duration:1035799 duration_time:11.5089 stream_index:0
out: pts:11509 pts_time:11.509 dts:11509 dts_time:11.509 duration:11509 duration_time:11.509 stream_index:0
in: pts:1039309 pts_time:11.5479 dts:1039309 dts_time:11.5479 duration:1039309 duration_time:11.5479 stream_index:0
out: pts:11548 pts_time:11.548 dts:11548 dts_time:11.548 duration:11548 duration_time:11.548 stream_index:0
in: pts:1043268 pts_time:11.5919 dts:1043268 dts_time:11.5919 duration:1043268 duration_time:11.5919 stream_index:0
out: pts:11592 pts_time:11.592 dts:11592 dts_time:11.592 duration:11592 duration_time:11.592 stream_index:0
in: pts:1046507 pts_time:11.6279 dts:1046507 dts_time:11.6279 duration:1046507 duration_time:11.6279 stream_index:0
out: pts:11628 pts_time:11.628 dts:11628 dts_time:11.628 duration:11628 duration_time:11.628 stream_index:0
in: pts:1050107 pts_time:11.6679 dts:1050107 dts_time:11.6679 duration:1050107 duration_time:11.6679 stream_index:0
out: pts:11668 pts_time:11.668 dts:11668 dts_time:11.668 duration:11668 duration_time:11.668 stream_index:0
in: pts:1053707 pts_time:11.7079 dts:1053707 dts_time:11.7079 duration:1053707 duration_time:11.7079 stream_index:0
out: pts:11708 pts_time:11.708 dts:11708 dts_time:11.708 duration:11708 duration_time:11.708 stream_index:0
in: pts:1057307 pts_time:11.7479 dts:1057307 dts_time:11.7479 duration:1057307 duration_time:11.7479 stream_index:0
out: pts:11748 pts_time:11.748 dts:11748 dts_time:11.748 duration:11748 duration_time:11.748 stream_index:0
in: pts:1060907 pts_time:11.7879 dts:1060907 dts_time:11.7879 duration:1060907 duration_time:11.7879 stream_index:0
out: pts:11788 pts_time:11.788 dts:11788 dts_time:11.788 duration:11788 duration_time:11.788 stream_index:0
in: pts:1064507 pts_time:11.8279 dts:1064507 dts_time:11.8279 duration:1064507 duration_time:11.8279 stream_index:0
out: pts:11828 pts_time:11.828 dts:11828 dts_time:11.828 duration:11828 duration_time:11.828 stream_index:0
in: pts:1068107 pts_time:11.8679 dts:1068107 dts_time:11.8679 duration:1068107 duration_time:11.8679 stream_index:0
out: pts:11868 pts_time:11.868 dts:11868 dts_time:11.868 duration:11868 duration_time:11.868 stream_index:0
in: pts:1071707 pts_time:11.9079 dts:1071707 dts_time:11.9079 duration:1071707 duration_time:11.9079 stream_index:0
out: pts:11908 pts_time:11.908 dts:11908 dts_time:11.908 duration:11908 duration_time:11.908 stream_index:0
in: pts:1075307 pts_time:11.9479 dts:1075307 dts_time:11.9479 duration:1075307 duration_time:11.9479 stream_index:0
out: pts:11948 pts_time:11.948 dts:11948 dts_time:11.948 duration:11948 duration_time:11.948 stream_index:0
in: pts:1078907 pts_time:11.9879 dts:1078907 dts_time:11.9879 duration:1078907 duration_time:11.9879 stream_index:0
out: pts:11988 pts_time:11.988 dts:11988 dts_time:11.988 duration:11988 duration_time:11.988 stream_index:0
in: pts:1082507 pts_time:12.0279 dts:1082507 dts_time:12.0279 duration:1082507 duration_time:12.0279 stream_index:0
out: pts:12028 pts_time:12.028 dts:12028 dts_time:12.028 duration:12028 duration_time:12.028 stream_index:0
in: pts:1086107 pts_time:12.0679 dts:1086107 dts_time:12.0679 duration:1086107 duration_time:12.0679 stream_index:0
out: pts:12068 pts_time:12.068 dts:12068 dts_time:12.068 duration:12068 duration_time:12.068 stream_index:0
in: pts:1089707 pts_time:12.1079 dts:1089707 dts_time:12.1079 duration:1089707 duration_time:12.1079 stream_index:0
out: pts:12108 pts_time:12.108 dts:12108 dts_time:12.108 duration:12108 duration_time:12.108 stream_index:0
in: pts:1093307 pts_time:12.1479 dts:1093307 dts_time:12.1479 duration:1093307 duration_time:12.1479 stream_index:0
out: pts:12148 pts_time:12.148 dts:12148 dts_time:12.148 duration:12148 duration_time:12.148 stream_index:0
in: pts:1096907 pts_time:12.1879 dts:1096907 dts_time:12.1879 duration:1096907 duration_time:12.1879 stream_index:0
out: pts:12188 pts_time:12.188 dts:12188 dts_time:12.188 duration:12188 duration_time:12.188 stream_index:0
in: pts:1100507 pts_time:12.2279 dts:1100507 dts_time:12.2279 duration:1100507 duration_time:12.2279 stream_index:0
out: pts:12228 pts_time:12.228 dts:12228 dts_time:12.228 duration:12228 duration_time:12.228 stream_index:0
in: pts:1104107 pts_time:12.2679 dts:1104107 dts_time:12.2679 duration:1104107 duration_time:12.2679 stream_index:0
out: pts:12268 pts_time:12.268 dts:12268 dts_time:12.268 duration:12268 duration_time:12.268 stream_index:0
in: pts:1107707 pts_time:12.3079 dts:1107707 dts_time:12.3079 duration:1107707 duration_time:12.3079 stream_index:0
out: pts:12308 pts_time:12.308 dts:12308 dts_time:12.308 duration:12308 duration_time:12.308 stream_index:0
in: pts:1111307 pts_time:12.3479 dts:1111307 dts_time:12.3479 duration:1111307 duration_time:12.3479 stream_index:0
out: pts:12348 pts_time:12.348 dts:12348 dts_time:12.348 duration:12348 duration_time:12.348 stream_index:0
in: pts:98304 pts_time:12.288 dts:98304 dts_time:12.288 duration:98304 duration_time:12.288 stream_index:1
out: pts:12288 pts_time:12.288 dts:12288 dts_time:12.288 duration:12288 duration_time:12.288 stream_index:1
in: pts:99328 pts_time:12.416 dts:99328 dts_time:12.416 duration:99328 duration_time:12.416 stream_index:1
out: pts:12416 pts_time:12.416 dts:12416 dts_time:12.416 duration:12416 duration_time:12.416 stream_index:1
in: pts:100352 pts_time:12.544 dts:100352 dts_time:12.544 duration:100352 duration_time:12.544 stream_index:1
out: pts:12544 pts_time:12.544 dts:12544 dts_time:12.544 duration:12544 duration_time:12.544 stream_index:1
in: pts:101376 pts_time:12.672 dts:101376 dts_time:12.672 duration:101376 duration_time:12.672 stream_index:1
out: pts:12672 pts_time:12.672 dts:12672 dts_time:12.672 duration:12672 duration_time:12.672 stream_index:1
in: pts:102400 pts_time:12.8 dts:102400 dts_time:12.8 duration:102400 duration_time:12.8 stream_index:1
out: pts:12800 pts_time:12.8 dts:12800 dts_time:12.8 duration:12800 duration_time:12.8 stream_index:1
in: pts:103424 pts_time:12.928 dts:103424 dts_time:12.928 duration:103424 duration_time:12.928 stream_index:1
out: pts:12928 pts_time:12.928 dts:12928 dts_time:12.928 duration:12928 duration_time:12.928 stream_index:1
in: pts:104448 pts_time:13.056 dts:104448 dts_time:13.056 duration:104448 duration_time:13.056 stream_index:1
out: pts:13056 pts_time:13.056 dts:13056 dts_time:13.056 duration:13056 duration_time:13.056 stream_index:1
in: pts:105472 pts_time:13.184 dts:105472 dts_time:13.184 duration:105472 duration_time:13.184 stream_index:1
out: pts:13184 pts_time:13.184 dts:13184 dts_time:13.184 duration:13184 duration_time:13.184 stream_index:1
in: pts:1114907 pts_time:12.3879 dts:1114907 dts_time:12.3879 duration:1114907 duration_time:12.3879 stream_index:0
out: pts:12388 pts_time:12.388 dts:12388 dts_time:12.388 duration:12388 duration_time:12.388 stream_index:0
in: pts:1118507 pts_time:12.4279 dts:1118507 dts_time:12.4279 duration:1118507 duration_time:12.4279 stream_index:0
out: pts:12428 pts_time:12.428 dts:12428 dts_time:12.428 duration:12428 duration_time:12.428 stream_index:0
in: pts:1122107 pts_time:12.4679 dts:1122107 dts_time:12.4679 duration:1122107 duration_time:12.4679 stream_index:0
out: pts:12468 pts_time:12.468 dts:12468 dts_time:12.468 duration:12468 duration_time:12.468 stream_index:0
in: pts:1125707 pts_time:12.5079 dts:1125707 dts_time:12.5079 duration:1125707 duration_time:12.5079 stream_index:0
out: pts:12508 pts_time:12.508 dts:12508 dts_time:12.508 duration:12508 duration_time:12.508 stream_index:0
in: pts:1129307 pts_time:12.5479 dts:1129307 dts_time:12.5479 duration:1129307 duration_time:12.5479 stream_index:0
out: pts:12548 pts_time:12.548 dts:12548 dts_time:12.548 duration:12548 duration_time:12.548 stream_index:0
in: pts:1132907 pts_time:12.5879 dts:1132907 dts_time:12.5879 duration:1132907 duration_time:12.5879 stream_index:0
out: pts:12588 pts_time:12.588 dts:12588 dts_time:12.588 duration:12588 duration_time:12.588 stream_index:0
in: pts:1136507 pts_time:12.6279 dts:1136507 dts_time:12.6279 duration:1136507 duration_time:12.6279 stream_index:0
out: pts:12628 pts_time:12.628 dts:12628 dts_time:12.628 duration:12628 duration_time:12.628 stream_index:0
in: pts:1140107 pts_time:12.6679 dts:1140107 dts_time:12.6679 duration:1140107 duration_time:12.6679 stream_index:0
out: pts:12668 pts_time:12.668 dts:12668 dts_time:12.668 duration:12668 duration_time:12.668 stream_index:0
in: pts:1143797 pts_time:12.7089 dts:1143797 dts_time:12.7089 duration:1143797 duration_time:12.7089 stream_index:0
out: pts:12709 pts_time:12.709 dts:12709 dts_time:12.709 duration:12709 duration_time:12.709 stream_index:0
in: pts:1147307 pts_time:12.7479 dts:1147307 dts_time:12.7479 duration:1147307 duration_time:12.7479 stream_index:0
out: pts:12748 pts_time:12.748 dts:12748 dts_time:12.748 duration:12748 duration_time:12.748 stream_index:0
in: pts:1151176 pts_time:12.7908 dts:1151176 dts_time:12.7908 duration:1151176 duration_time:12.7908 stream_index:0
out: pts:12791 pts_time:12.791 dts:12791 dts_time:12.791 duration:12791 duration_time:12.791 stream_index:0
in: pts:1154506 pts_time:12.8278 dts:1154506 dts_time:12.8278 duration:1154506 duration_time:12.8278 stream_index:0
out: pts:12828 pts_time:12.828 dts:12828 dts_time:12.828 duration:12828 duration_time:12.828 stream_index:0
in: pts:1158106 pts_time:12.8678 dts:1158106 dts_time:12.8678 duration:1158106 duration_time:12.8678 stream_index:0
out: pts:12868 pts_time:12.868 dts:12868 dts_time:12.868 duration:12868 duration_time:12.868 stream_index:0
in: pts:1161706 pts_time:12.9078 dts:1161706 dts_time:12.9078 duration:1161706 duration_time:12.9078 stream_index:0
out: pts:12908 pts_time:12.908 dts:12908 dts_time:12.908 duration:12908 duration_time:12.908 stream_index:0
in: pts:1165306 pts_time:12.9478 dts:1165306 dts_time:12.9478 duration:1165306 duration_time:12.9478 stream_index:0
out: pts:12948 pts_time:12.948 dts:12948 dts_time:12.948 duration:12948 duration_time:12.948 stream_index:0
in: pts:1168906 pts_time:12.9878 dts:1168906 dts_time:12.9878 duration:1168906 duration_time:12.9878 stream_index:0
out: pts:12988 pts_time:12.988 dts:12988 dts_time:12.988 duration:12988 duration_time:12.988 stream_index:0
in: pts:1172506 pts_time:13.0278 dts:1172506 dts_time:13.0278 duration:1172506 duration_time:13.0278 stream_index:0
out: pts:13028 pts_time:13.028 dts:13028 dts_time:13.028 duration:13028 duration_time:13.028 stream_index:0
in: pts:1176106 pts_time:13.0678 dts:1176106 dts_time:13.0678 duration:1176106 duration_time:13.0678 stream_index:0
out: pts:13068 pts_time:13.068 dts:13068 dts_time:13.068 duration:13068 duration_time:13.068 stream_index:0
in: pts:1179706 pts_time:13.1078 dts:1179706 dts_time:13.1078 duration:1179706 duration_time:13.1078 stream_index:0
out: pts:13108 pts_time:13.108 dts:13108 dts_time:13.108 duration:13108 duration_time:13.108 stream_index:0
in: pts:1183306 pts_time:13.1478 dts:1183306 dts_time:13.1478 duration:1183306 duration_time:13.1478 stream_index:0
out: pts:13148 pts_time:13.148 dts:13148 dts_time:13.148 duration:13148 duration_time:13.148 stream_index:0
in: pts:1186906 pts_time:13.1878 dts:1186906 dts_time:13.1878 duration:1186906 duration_time:13.1878 stream_index:0
out: pts:13188 pts_time:13.188 dts:13188 dts_time:13.188 duration:13188 duration_time:13.188 stream_index:0
in: pts:1190506 pts_time:13.2278 dts:1190506 dts_time:13.2278 duration:1190506 duration_time:13.2278 stream_index:0
out: pts:13228 pts_time:13.228 dts:13228 dts_time:13.228 duration:13228 duration_time:13.228 stream_index:0
in: pts:1194106 pts_time:13.2678 dts:1194106 dts_time:13.2678 duration:1194106 duration_time:13.2678 stream_index:0
out: pts:13268 pts_time:13.268 dts:13268 dts_time:13.268 duration:13268 duration_time:13.268 stream_index:0
in: pts:1197706 pts_time:13.3078 dts:1197706 dts_time:13.3078 duration:1197706 duration_time:13.3078 stream_index:0
out: pts:13308 pts_time:13.308 dts:13308 dts_time:13.308 duration:13308 duration_time:13.308 stream_index:0
in: pts:1201306 pts_time:13.3478 dts:1201306 dts_time:13.3478 duration:1201306 duration_time:13.3478 stream_index:0
out: pts:13348 pts_time:13.348 dts:13348 dts_time:13.348 duration:13348 duration_time:13.348 stream_index:0
in: pts:1204906 pts_time:13.3878 dts:1204906 dts_time:13.3878 duration:1204906 duration_time:13.3878 stream_index:0
out: pts:13388 pts_time:13.388 dts:13388 dts_time:13.388 duration:13388 duration_time:13.388 stream_index:0
in: pts:106496 pts_time:13.312 dts:106496 dts_time:13.312 duration:106496 duration_time:13.312 stream_index:1
out: pts:13312 pts_time:13.312 dts:13312 dts_time:13.312 duration:13312 duration_time:13.312 stream_index:1
in: pts:107520 pts_time:13.44 dts:107520 dts_time:13.44 duration:107520 duration_time:13.44 stream_index:1
out: pts:13440 pts_time:13.44 dts:13440 dts_time:13.44 duration:13440 duration_time:13.44 stream_index:1
in: pts:108544 pts_time:13.568 dts:108544 dts_time:13.568 duration:108544 duration_time:13.568 stream_index:1
out: pts:13568 pts_time:13.568 dts:13568 dts_time:13.568 duration:13568 duration_time:13.568 stream_index:1
in: pts:109568 pts_time:13.696 dts:109568 dts_time:13.696 duration:109568 duration_time:13.696 stream_index:1
out: pts:13696 pts_time:13.696 dts:13696 dts_time:13.696 duration:13696 duration_time:13.696 stream_index:1
in: pts:110592 pts_time:13.824 dts:110592 dts_time:13.824 duration:110592 duration_time:13.824 stream_index:1
out: pts:13824 pts_time:13.824 dts:13824 dts_time:13.824 duration:13824 duration_time:13.824 stream_index:1
in: pts:111616 pts_time:13.952 dts:111616 dts_time:13.952 duration:111616 duration_time:13.952 stream_index:1
out: pts:13952 pts_time:13.952 dts:13952 dts_time:13.952 duration:13952 duration_time:13.952 stream_index:1
in: pts:112640 pts_time:14.08 dts:112640 dts_time:14.08 duration:112640 duration_time:14.08 stream_index:1
out: pts:14080 pts_time:14.08 dts:14080 dts_time:14.08 duration:14080 duration_time:14.08 stream_index:1
in: pts:113664 pts_time:14.208 dts:113664 dts_time:14.208 duration:113664 duration_time:14.208 stream_index:1
out: pts:14208 pts_time:14.208 dts:14208 dts_time:14.208 duration:14208 duration_time:14.208 stream_index:1
in: pts:1208506 pts_time:13.4278 dts:1208506 dts_time:13.4278 duration:1208506 duration_time:13.4278 stream_index:0
out: pts:13428 pts_time:13.428 dts:13428 dts_time:13.428 duration:13428 duration_time:13.428 stream_index:0
in: pts:1212196 pts_time:13.4688 dts:1212196 dts_time:13.4688 duration:1212196 duration_time:13.4688 stream_index:0
out: pts:13469 pts_time:13.469 dts:13469 dts_time:13.469 duration:13469 duration_time:13.469 stream_index:0
in: pts:1215706 pts_time:13.5078 dts:1215706 dts_time:13.5078 duration:1215706 duration_time:13.5078 stream_index:0
out: pts:13508 pts_time:13.508 dts:13508 dts_time:13.508 duration:13508 duration_time:13.508 stream_index:0
in: pts:1219306 pts_time:13.5478 dts:1219306 dts_time:13.5478 duration:1219306 duration_time:13.5478 stream_index:0
out: pts:13548 pts_time:13.548 dts:13548 dts_time:13.548 duration:13548 duration_time:13.548 stream_index:0
in: pts:1223175 pts_time:13.5908 dts:1223175 dts_time:13.5908 duration:1223175 duration_time:13.5908 stream_index:0
out: pts:13591 pts_time:13.591 dts:13591 dts_time:13.591 duration:13591 duration_time:13.591 stream_index:0
in: pts:1226505 pts_time:13.6278 dts:1226505 dts_time:13.6278 duration:1226505 duration_time:13.6278 stream_index:0
out: pts:13628 pts_time:13.628 dts:13628 dts_time:13.628 duration:13628 duration_time:13.628 stream_index:0
in: pts:1230105 pts_time:13.6678 dts:1230105 dts_time:13.6678 duration:1230105 duration_time:13.6678 stream_index:0
out: pts:13668 pts_time:13.668 dts:13668 dts_time:13.668 duration:13668 duration_time:13.668 stream_index:0
in: pts:1233795 pts_time:13.7088 dts:1233795 dts_time:13.7088 duration:1233795 duration_time:13.7088 stream_index:0
out: pts:13709 pts_time:13.709 dts:13709 dts_time:13.709 duration:13709 duration_time:13.709 stream_index:0
in: pts:1237305 pts_time:13.7478 dts:1237305 dts_time:13.7478 duration:1237305 duration_time:13.7478 stream_index:0
out: pts:13748 pts_time:13.748 dts:13748 dts_time:13.748 duration:13748 duration_time:13.748 stream_index:0
in: pts:1240905 pts_time:13.7878 dts:1240905 dts_time:13.7878 duration:1240905 duration_time:13.7878 stream_index:0
out: pts:13788 pts_time:13.788 dts:13788 dts_time:13.788 duration:13788 duration_time:13.788 stream_index:0
in: pts:1244505 pts_time:13.8278 dts:1244505 dts_time:13.8278 duration:1244505 duration_time:13.8278 stream_index:0
out: pts:13828 pts_time:13.828 dts:13828 dts_time:13.828 duration:13828 duration_time:13.828 stream_index:0
in: pts:1248105 pts_time:13.8678 dts:1248105 dts_time:13.8678 duration:1248105 duration_time:13.8678 stream_index:0
out: pts:13868 pts_time:13.868 dts:13868 dts_time:13.868 duration:13868 duration_time:13.868 stream_index:0
in: pts:1251705 pts_time:13.9078 dts:1251705 dts_time:13.9078 duration:1251705 duration_time:13.9078 stream_index:0
out: pts:13908 pts_time:13.908 dts:13908 dts_time:13.908 duration:13908 duration_time:13.908 stream_index:0
in: pts:1255305 pts_time:13.9478 dts:1255305 dts_time:13.9478 duration:1255305 duration_time:13.9478 stream_index:0
out: pts:13948 pts_time:13.948 dts:13948 dts_time:13.948 duration:13948 duration_time:13.948 stream_index:0
in: pts:1259174 pts_time:13.9908 dts:1259174 dts_time:13.9908 duration:1259174 duration_time:13.9908 stream_index:0
out: pts:13991 pts_time:13.991 dts:13991 dts_time:13.991 duration:13991 duration_time:13.991 stream_index:0
in: pts:1262504 pts_time:14.0278 dts:1262504 dts_time:14.0278 duration:1262504 duration_time:14.0278 stream_index:0
out: pts:14028 pts_time:14.028 dts:14028 dts_time:14.028 duration:14028 duration_time:14.028 stream_index:0
in: pts:1266104 pts_time:14.0678 dts:1266104 dts_time:14.0678 duration:1266104 duration_time:14.0678 stream_index:0
out: pts:14068 pts_time:14.068 dts:14068 dts_time:14.068 duration:14068 duration_time:14.068 stream_index:0
in: pts:1269704 pts_time:14.1078 dts:1269704 dts_time:14.1078 duration:1269704 duration_time:14.1078 stream_index:0
out: pts:14108 pts_time:14.108 dts:14108 dts_time:14.108 duration:14108 duration_time:14.108 stream_index:0
in: pts:1273304 pts_time:14.1478 dts:1273304 dts_time:14.1478 duration:1273304 duration_time:14.1478 stream_index:0
out: pts:14148 pts_time:14.148 dts:14148 dts_time:14.148 duration:14148 duration_time:14.148 stream_index:0
in: pts:1276904 pts_time:14.1878 dts:1276904 dts_time:14.1878 duration:1276904 duration_time:14.1878 stream_index:0
out: pts:14188 pts_time:14.188 dts:14188 dts_time:14.188 duration:14188 duration_time:14.188 stream_index:0
in: pts:1280504 pts_time:14.2278 dts:1280504 dts_time:14.2278 duration:1280504 duration_time:14.2278 stream_index:0
out: pts:14228 pts_time:14.228 dts:14228 dts_time:14.228 duration:14228 duration_time:14.228 stream_index:0
in: pts:1284104 pts_time:14.2678 dts:1284104 dts_time:14.2678 duration:1284104 duration_time:14.2678 stream_index:0
out: pts:14268 pts_time:14.268 dts:14268 dts_time:14.268 duration:14268 duration_time:14.268 stream_index:0
in: pts:1287704 pts_time:14.3078 dts:1287704 dts_time:14.3078 duration:1287704 duration_time:14.3078 stream_index:0
out: pts:14308 pts_time:14.308 dts:14308 dts_time:14.308 duration:14308 duration_time:14.308 stream_index:0
in: pts:1291304 pts_time:14.3478 dts:1291304 dts_time:14.3478 duration:1291304 duration_time:14.3478 stream_index:0
out: pts:14348 pts_time:14.348 dts:14348 dts_time:14.348 duration:14348 duration_time:14.348 stream_index:0
in: pts:1295173 pts_time:14.3908 dts:1295173 dts_time:14.3908 duration:1295173 duration_time:14.3908 stream_index:0
out: pts:14391 pts_time:14.391 dts:14391 dts_time:14.391 duration:14391 duration_time:14.391 stream_index:0
in: pts:1298503 pts_time:14.4278 dts:1298503 dts_time:14.4278 duration:1298503 duration_time:14.4278 stream_index:0
out: pts:14428 pts_time:14.428 dts:14428 dts_time:14.428 duration:14428 duration_time:14.428 stream_index:0
in: pts:114688 pts_time:14.336 dts:114688 dts_time:14.336 duration:114688 duration_time:14.336 stream_index:1
out: pts:14336 pts_time:14.336 dts:14336 dts_time:14.336 duration:14336 duration_time:14.336 stream_index:1
in: pts:115712 pts_time:14.464 dts:115712 dts_time:14.464 duration:115712 duration_time:14.464 stream_index:1
out: pts:14464 pts_time:14.464 dts:14464 dts_time:14.464 duration:14464 duration_time:14.464 stream_index:1
in: pts:116736 pts_time:14.592 dts:116736 dts_time:14.592 duration:116736 duration_time:14.592 stream_index:1
out: pts:14592 pts_time:14.592 dts:14592 dts_time:14.592 duration:14592 duration_time:14.592 stream_index:1
in: pts:117760 pts_time:14.72 dts:117760 dts_time:14.72 duration:117760 duration_time:14.72 stream_index:1
out: pts:14720 pts_time:14.72 dts:14720 dts_time:14.72 duration:14720 duration_time:14.72 stream_index:1
in: pts:118784 pts_time:14.848 dts:118784 dts_time:14.848 duration:118784 duration_time:14.848 stream_index:1
out: pts:14848 pts_time:14.848 dts:14848 dts_time:14.848 duration:14848 duration_time:14.848 stream_index:1
in: pts:119808 pts_time:14.976 dts:119808 dts_time:14.976 duration:119808 duration_time:14.976 stream_index:1
out: pts:14976 pts_time:14.976 dts:14976 dts_time:14.976 duration:14976 duration_time:14.976 stream_index:1
in: pts:120832 pts_time:15.104 dts:120832 dts_time:15.104 duration:120832 duration_time:15.104 stream_index:1
out: pts:15104 pts_time:15.104 dts:15104 dts_time:15.104 duration:15104 duration_time:15.104 stream_index:1
in: pts:121856 pts_time:15.232 dts:121856 dts_time:15.232 duration:121856 duration_time:15.232 stream_index:1
out: pts:15232 pts_time:15.232 dts:15232 dts_time:15.232 duration:15232 duration_time:15.232 stream_index:1
in: pts:1302103 pts_time:14.4678 dts:1302103 dts_time:14.4678 duration:1302103 duration_time:14.4678 stream_index:0
out: pts:14468 pts_time:14.468 dts:14468 dts_time:14.468 duration:14468 duration_time:14.468 stream_index:0
in: pts:1305703 pts_time:14.5078 dts:1305703 dts_time:14.5078 duration:1305703 duration_time:14.5078 stream_index:0
out: pts:14508 pts_time:14.508 dts:14508 dts_time:14.508 duration:14508 duration_time:14.508 stream_index:0
in: pts:1309303 pts_time:14.5478 dts:1309303 dts_time:14.5478 duration:1309303 duration_time:14.5478 stream_index:0
out: pts:14548 pts_time:14.548 dts:14548 dts_time:14.548 duration:14548 duration_time:14.548 stream_index:0
in: pts:1312903 pts_time:14.5878 dts:1312903 dts_time:14.5878 duration:1312903 duration_time:14.5878 stream_index:0
out: pts:14588 pts_time:14.588 dts:14588 dts_time:14.588 duration:14588 duration_time:14.588 stream_index:0
in: pts:1316503 pts_time:14.6278 dts:1316503 dts_time:14.6278 duration:1316503 duration_time:14.6278 stream_index:0
out: pts:14628 pts_time:14.628 dts:14628 dts_time:14.628 duration:14628 duration_time:14.628 stream_index:0
in: pts:1320103 pts_time:14.6678 dts:1320103 dts_time:14.6678 duration:1320103 duration_time:14.6678 stream_index:0
out: pts:14668 pts_time:14.668 dts:14668 dts_time:14.668 duration:14668 duration_time:14.668 stream_index:0
in: pts:1323703 pts_time:14.7078 dts:1323703 dts_time:14.7078 duration:1323703 duration_time:14.7078 stream_index:0
out: pts:14708 pts_time:14.708 dts:14708 dts_time:14.708 duration:14708 duration_time:14.708 stream_index:0
in: pts:1327303 pts_time:14.7478 dts:1327303 dts_time:14.7478 duration:1327303 duration_time:14.7478 stream_index:0
out: pts:14748 pts_time:14.748 dts:14748 dts_time:14.748 duration:14748 duration_time:14.748 stream_index:0
in: pts:1330903 pts_time:14.7878 dts:1330903 dts_time:14.7878 duration:1330903 duration_time:14.7878 stream_index:0
out: pts:14788 pts_time:14.788 dts:14788 dts_time:14.788 duration:14788 duration_time:14.788 stream_index:0
in: pts:1334503 pts_time:14.8278 dts:1334503 dts_time:14.8278 duration:1334503 duration_time:14.8278 stream_index:0
out: pts:14828 pts_time:14.828 dts:14828 dts_time:14.828 duration:14828 duration_time:14.828 stream_index:0
in: pts:1338103 pts_time:14.8678 dts:1338103 dts_time:14.8678 duration:1338103 duration_time:14.8678 stream_index:0
out: pts:14868 pts_time:14.868 dts:14868 dts_time:14.868 duration:14868 duration_time:14.868 stream_index:0
in: pts:1341703 pts_time:14.9078 dts:1341703 dts_time:14.9078 duration:1341703 duration_time:14.9078 stream_index:0
out: pts:14908 pts_time:14.908 dts:14908 dts_time:14.908 duration:14908 duration_time:14.908 stream_index:0
in: pts:1345303 pts_time:14.9478 dts:1345303 dts_time:14.9478 duration:1345303 duration_time:14.9478 stream_index:0
out: pts:14948 pts_time:14.948 dts:14948 dts_time:14.948 duration:14948 duration_time:14.948 stream_index:0
in: pts:1348903 pts_time:14.9878 dts:1348903 dts_time:14.9878 duration:1348903 duration_time:14.9878 stream_index:0
out: pts:14988 pts_time:14.988 dts:14988 dts_time:14.988 duration:14988 duration_time:14.988 stream_index:0
in: pts:1352503 pts_time:15.0278 dts:1352503 dts_time:15.0278 duration:1352503 duration_time:15.0278 stream_index:0
out: pts:15028 pts_time:15.028 dts:15028 dts_time:15.028 duration:15028 duration_time:15.028 stream_index:0
in: pts:1356103 pts_time:15.0678 dts:1356103 dts_time:15.0678 duration:1356103 duration_time:15.0678 stream_index:0
out: pts:15068 pts_time:15.068 dts:15068 dts_time:15.068 duration:15068 duration_time:15.068 stream_index:0
in: pts:1359703 pts_time:15.1078 dts:1359703 dts_time:15.1078 duration:1359703 duration_time:15.1078 stream_index:0
out: pts:15108 pts_time:15.108 dts:15108 dts_time:15.108 duration:15108 duration_time:15.108 stream_index:0
in: pts:1363303 pts_time:15.1478 dts:1363303 dts_time:15.1478 duration:1363303 duration_time:15.1478 stream_index:0
out: pts:15148 pts_time:15.148 dts:15148 dts_time:15.148 duration:15148 duration_time:15.148 stream_index:0
in: pts:1367262 pts_time:15.1918 dts:1367262 dts_time:15.1918 duration:1367262 duration_time:15.1918 stream_index:0
out: pts:15192 pts_time:15.192 dts:15192 dts_time:15.192 duration:15192 duration_time:15.192 stream_index:0
in: pts:1370501 pts_time:15.2278 dts:1370501 dts_time:15.2278 duration:1370501 duration_time:15.2278 stream_index:0
out: pts:15228 pts_time:15.228 dts:15228 dts_time:15.228 duration:15228 duration_time:15.228 stream_index:0
in: pts:1374191 pts_time:15.2688 dts:1374191 dts_time:15.2688 duration:1374191 duration_time:15.2688 stream_index:0
out: pts:15269 pts_time:15.269 dts:15269 dts_time:15.269 duration:15269 duration_time:15.269 stream_index:0
in: pts:1377701 pts_time:15.3078 dts:1377701 dts_time:15.3078 duration:1377701 duration_time:15.3078 stream_index:0
out: pts:15308 pts_time:15.308 dts:15308 dts_time:15.308 duration:15308 duration_time:15.308 stream_index:0
in: pts:1381301 pts_time:15.3478 dts:1381301 dts_time:15.3478 duration:1381301 duration_time:15.3478 stream_index:0
out: pts:15348 pts_time:15.348 dts:15348 dts_time:15.348 duration:15348 duration_time:15.348 stream_index:0
in: pts:1384901 pts_time:15.3878 dts:1384901 dts_time:15.3878 duration:1384901 duration_time:15.3878 stream_index:0
out: pts:15388 pts_time:15.388 dts:15388 dts_time:15.388 duration:15388 duration_time:15.388 stream_index:0
in: pts:1388501 pts_time:15.4278 dts:1388501 dts_time:15.4278 duration:1388501 duration_time:15.4278 stream_index:0
out: pts:15428 pts_time:15.428 dts:15428 dts_time:15.428 duration:15428 duration_time:15.428 stream_index:0
in: pts:1392101 pts_time:15.4678 dts:1392101 dts_time:15.4678 duration:1392101 duration_time:15.4678 stream_index:0
out: pts:15468 pts_time:15.468 dts:15468 dts_time:15.468 duration:15468 duration_time:15.468 stream_index:0
in: pts:122880 pts_time:15.36 dts:122880 dts_time:15.36 duration:122880 duration_time:15.36 stream_index:1
out: pts:15360 pts_time:15.36 dts:15360 dts_time:15.36 duration:15360 duration_time:15.36 stream_index:1
in: pts:123904 pts_time:15.488 dts:123904 dts_time:15.488 duration:123904 duration_time:15.488 stream_index:1
out: pts:15488 pts_time:15.488 dts:15488 dts_time:15.488 duration:15488 duration_time:15.488 stream_index:1
in: pts:124928 pts_time:15.616 dts:124928 dts_time:15.616 duration:124928 duration_time:15.616 stream_index:1
out: pts:15616 pts_time:15.616 dts:15616 dts_time:15.616 duration:15616 duration_time:15.616 stream_index:1
in: pts:125952 pts_time:15.744 dts:125952 dts_time:15.744 duration:125952 duration_time:15.744 stream_index:1
out: pts:15744 pts_time:15.744 dts:15744 dts_time:15.744 duration:15744 duration_time:15.744 stream_index:1
in: pts:126976 pts_time:15.872 dts:126976 dts_time:15.872 duration:126976 duration_time:15.872 stream_index:1
out: pts:15872 pts_time:15.872 dts:15872 dts_time:15.872 duration:15872 duration_time:15.872 stream_index:1
in: pts:128000 pts_time:16 dts:128000 dts_time:16 duration:128000 duration_time:16 stream_index:1
out: pts:16000 pts_time:16 dts:16000 dts_time:16 duration:16000 duration_time:16 stream_index:1
in: pts:129024 pts_time:16.128 dts:129024 dts_time:16.128 duration:129024 duration_time:16.128 stream_index:1
out: pts:16128 pts_time:16.128 dts:16128 dts_time:16.128 duration:16128 duration_time:16.128 stream_index:1
in: pts:130048 pts_time:16.256 dts:130048 dts_time:16.256 duration:130048 duration_time:16.256 stream_index:1
out: pts:16256 pts_time:16.256 dts:16256 dts_time:16.256 duration:16256 duration_time:16.256 stream_index:1
in: pts:1395701 pts_time:15.5078 dts:1395701 dts_time:15.5078 duration:1395701 duration_time:15.5078 stream_index:0
out: pts:15508 pts_time:15.508 dts:15508 dts_time:15.508 duration:15508 duration_time:15.508 stream_index:0
in: pts:1399211 pts_time:15.5468 dts:1399211 dts_time:15.5468 duration:1399211 duration_time:15.5468 stream_index:0
out: pts:15547 pts_time:15.547 dts:15547 dts_time:15.547 duration:15547 duration_time:15.547 stream_index:0
in: pts:1402811 pts_time:15.5868 dts:1402811 dts_time:15.5868 duration:1402811 duration_time:15.5868 stream_index:0
out: pts:15587 pts_time:15.587 dts:15587 dts_time:15.587 duration:15587 duration_time:15.587 stream_index:0
in: pts:1406411 pts_time:15.6268 dts:1406411 dts_time:15.6268 duration:1406411 duration_time:15.6268 stream_index:0
out: pts:15627 pts_time:15.627 dts:15627 dts_time:15.627 duration:15627 duration_time:15.627 stream_index:0
in: pts:1410011 pts_time:15.6668 dts:1410011 dts_time:15.6668 duration:1410011 duration_time:15.6668 stream_index:0
out: pts:15667 pts_time:15.667 dts:15667 dts_time:15.667 duration:15667 duration_time:15.667 stream_index:0
in: pts:1413701 pts_time:15.7078 dts:1413701 dts_time:15.7078 duration:1413701 duration_time:15.7078 stream_index:0
out: pts:15708 pts_time:15.708 dts:15708 dts_time:15.708 duration:15708 duration_time:15.708 stream_index:0
in: pts:1417211 pts_time:15.7468 dts:1417211 dts_time:15.7468 duration:1417211 duration_time:15.7468 stream_index:0
out: pts:15747 pts_time:15.747 dts:15747 dts_time:15.747 duration:15747 duration_time:15.747 stream_index:0
in: pts:1420901 pts_time:15.7878 dts:1420901 dts_time:15.7878 duration:1420901 duration_time:15.7878 stream_index:0
out: pts:15788 pts_time:15.788 dts:15788 dts_time:15.788 duration:15788 duration_time:15.788 stream_index:0
in: pts:1424501 pts_time:15.8278 dts:1424501 dts_time:15.8278 duration:1424501 duration_time:15.8278 stream_index:0
out: pts:15828 pts_time:15.828 dts:15828 dts_time:15.828 duration:15828 duration_time
:15.828 stream_index:0
in: pts:1428101 pts_time:15.8678 dts:1428101 dts_time:15.8678 duration:1428101 duration_time:15.8678 stream_index:0
out: pts:15868 pts_time:15.868 dts:15868 dts_time:15.868 duration:15868 duration_time:15.868 stream_index:0
in: pts:1431701 pts_time:15.9078 dts:1431701 dts_time:15.9078 duration:1431701 duration_time:15.9078 stream_index:0
out: pts:15908 pts_time:15.908 dts:15908 dts_time:15.908 duration:15908 duration_time:15.908 stream_index:0
in: pts:1435301 pts_time:15.9478 dts:1435301 dts_time:15.9478 duration:1435301 duration_time:15.9478 stream_index:0
out: pts:15948 pts_time:15.948 dts:15948 dts_time:15.948 duration:15948 duration_time:15.948 stream_index:0
in: pts:1438811 pts_time:15.9868 dts:1438811 dts_time:15.9868 duration:1438811 duration_time:15.9868 stream_index:0
out: pts:15987 pts_time:15.987 dts:15987 dts_time:15.987 duration:15987 duration_time:15.987 stream_index:0
in: pts:1442501 pts_time:16.0278 dts:1442501 dts_time:16.0278 duration:1442501 duration_time:16.0278 stream_index:0
out: pts:16028 pts_time:16.028 dts:16028 dts_time:16.028 duration:16028 duration_time:16.028 stream_index:0
in: pts:1446101 pts_time:16.0678 dts:1446101 dts_time:16.0678 duration:1446101 duration_time:16.0678 stream_index:0
out: pts:16068 pts_time:16.068 dts:16068 dts_time:16.068 duration:16068 duration_time:16.068 stream_index:0
in: pts:1449701 pts_time:16.1078 dts:1449701 dts_time:16.1078 duration:1449701 duration_time:16.1078 stream_index:0
out: pts:16108 pts_time:16.108 dts:16108 dts_time:16.108 duration:16108 duration_time:16.108 stream_index:0
in: pts:1453211 pts_time:16.1468 dts:1453211 dts_time:16.1468 duration:1453211 duration_time:16.1468 stream_index:0
out: pts:16147 pts_time:16.147 dts:16147 dts_time:16.147 duration:16147 duration_time:16.147 stream_index:0
in: pts:1456901 pts_time:16.1878 dts:1456901 dts_time:16.1878 duration:1456901 duration_time:16.1878 stream_index:0
out: pts:16188 pts_time:16.188 dts:16188 dts_time:16.188 duration:16188 duration_time:16.188 stream_index:0
in: pts:1460501 pts_time:16.2278 dts:1460501 dts_time:16.2278 duration:1460501 duration_time:16.2278 stream_index:0
out: pts:16228 pts_time:16.228 dts:16228 dts_time:16.228 duration:16228 duration_time:16.228 stream_index:0
in: pts:1464101 pts_time:16.2678 dts:1464101 dts_time:16.2678 duration:1464101 duration_time:16.2678 stream_index:0
out: pts:16268 pts_time:16.268 dts:16268 dts_time:16.268 duration:16268 duration_time:16.268 stream_index:0
in: pts:1467701 pts_time:16.3078 dts:1467701 dts_time:16.3078 duration:1467701 duration_time:16.3078 stream_index:0
out: pts:16308 pts_time:16.308 dts:16308 dts_time:16.308 duration:16308 duration_time:16.308 stream_index:0
in: pts:1471301 pts_time:16.3478 dts:1471301 dts_time:16.3478 duration:1471301 duration_time:16.3478 stream_index:0
out: pts:16348 pts_time:16.348 dts:16348 dts_time:16.348 duration:16348 duration_time:16.348 stream_index:0
in: pts:1475081 pts_time:16.3898 dts:1475081 dts_time:16.3898 duration:1475081 duration_time:16.3898 stream_index:0
out: pts:16390 pts_time:16.39 dts:16390 dts_time:16.39 duration:16390 duration_time:16.39 stream_index:0
in: pts:1478501 pts_time:16.4278 dts:1478501 dts_time:16.4278 duration:1478501 duration_time:16.4278 stream_index:0
out: pts:16428 pts_time:16.428 dts:16428 dts_time:16.428 duration:16428 duration_time:16.428 stream_index:0
in: pts:1482101 pts_time:16.4678 dts:1482101 dts_time:16.4678 duration:1482101 duration_time:16.4678 stream_index:0
out: pts:16468 pts_time:16.468 dts:16468 dts_time:16.468 duration:16468 duration_time:16.468 stream_index:0
in: pts:1485611 pts_time:16.5068 dts:1485611 dts_time:16.5068 duration:1485611 duration_time:16.5068 stream_index:0
out: pts:16507 pts_time:16.507 dts:16507 dts_time:16.507 duration:16507 duration_time:16.507 stream_index:0
in: pts:131072 pts_time:16.384 dts:131072 dts_time:16.384 duration:131072 duration_time:16.384 stream_index:1
out: pts:16384 pts_time:16.384 dts:16384 dts_time:16.384 duration:16384 duration_time:16.384 stream_index:1
in: pts:132096 pts_time:16.512 dts:132096 dts_time:16.512 duration:132096 duration_time:16.512 stream_index:1
out: pts:16512 pts_time:16.512 dts:16512 dts_time:16.512 duration:16512 duration_time:16.512 stream_index:1
in: pts:133120 pts_time:16.64 dts:133120 dts_time:16.64 duration:133120 duration_time:16.64 stream_index:1
out: pts:16640 pts_time:16.64 dts:16640 dts_time:16.64 duration:16640 duration_time:16.64 stream_index:1
in: pts:134144 pts_time:16.768 dts:134144 dts_time:16.768 duration:134144 duration_time:16.768 stream_index:1
out: pts:16768 pts_time:16.768 dts:16768 dts_time:16.768 duration:16768 duration_time:16.768 stream_index:1
in: pts:135168 pts_time:16.896 dts:135168 dts_time:16.896 duration:135168 duration_time:16.896 stream_index:1
out: pts:16896 pts_time:16.896 dts:16896 dts_time:16.896 duration:16896 duration_time:16.896 stream_index:1
in: pts:136192 pts_time:17.024 dts:136192 dts_time:17.024 duration:136192 duration_time:17.024 stream_index:1
out: pts:17024 pts_time:17.024 dts:17024 dts_time:17.024 duration:17024 duration_time:17.024 stream_index:1
in: pts:137216 pts_time:17.152 dts:137216 dts_time:17.152 duration:137216 duration_time:17.152 stream_index:1
out: pts:17152 pts_time:17.152 dts:17152 dts_time:17.152 duration:17152 duration_time:17.152 stream_index:1
in: pts:138240 pts_time:17.28 dts:138240 dts_time:17.28 duration:138240 duration_time:17.28 stream_index:1
out: pts:17280 pts_time:17.28 dts:17280 dts_time:17.28 duration:17280 duration_time:17.28 stream_index:1
in: pts:1489211 pts_time:16.5468 dts:1489211 dts_time:16.5468 duration:1489211 duration_time:16.5468 stream_index:0
out: pts:16547 pts_time:16.547 dts:16547 dts_time:16.547 duration:16547 duration_time:16.547 stream_index:0
in: pts:1492811 pts_time:16.5868 dts:1492811 dts_time:16.5868 duration:1492811 duration_time:16.5868 stream_index:0
out: pts:16587 pts_time:16.587 dts:16587 dts_time:16.587 duration:16587 duration_time:16.587 stream_index:0
in: pts:1496411 pts_time:16.6268 dts:1496411 dts_time:16.6268 duration:1496411 duration_time:16.6268 stream_index:0
out: pts:16627 pts_time:16.627 dts:16627 dts_time:16.627 duration:16627 duration_time:16.627 stream_index:0
in: pts:1500101 pts_time:16.6678 dts:1500101 dts_time:16.6678 duration:1500101 duration_time:16.6678 stream_index:0
out: pts:16668 pts_time:16.668 dts:16668 dts_time:16.668 duration:16668 duration_time:16.668 stream_index:0
in: pts:1503701 pts_time:16.7078 dts:1503701 dts_time:16.7078 duration:1503701 duration_time:16.7078 stream_index:0
out: pts:16708 pts_time:16.708 dts:16708 dts_time:16.708 duration:16708 duration_time:16.708 stream_index:0
in: pts:1507211 pts_time:16.7468 dts:1507211 dts_time:16.7468 duration:1507211 duration_time:16.7468 stream_index:0
out: pts:16747 pts_time:16.747 dts:16747 dts_time:16.747 duration:16747 duration_time:16.747 stream_index:0
in: pts:1510811 pts_time:16.7868 dts:1510811 dts_time:16.7868 duration:1510811 duration_time:16.7868 stream_index:0
out: pts:16787 pts_time:16.787 dts:16787 dts_time:16.787 duration:16787 duration_time:16.787 stream_index:0
in: pts:1514411 pts_time:16.8268 dts:1514411 dts_time:16.8268 duration:1514411 duration_time:16.8268 stream_index:0
out: pts:16827 pts_time:16.827 dts:16827 dts_time:16.827 duration:16827 duration_time:16.827 stream_index:0
in: pts:1518101 pts_time:16.8678 dts:1518101 dts_time:16.8678 duration:1518101 duration_time:16.8678 stream_index:0
out: pts:16868 pts_time:16.868 dts:16868 dts_time:16.868 duration:16868 duration_time:16.868 stream_index:0
in: pts:1521701 pts_time:16.9078 dts:1521701 dts_time:16.9078 duration:1521701 duration_time:16.9078 stream_index:0
out: pts:16908 pts_time:16.908 dts:16908 dts_time:16.908 duration:16908 duration_time:16.908 stream_index:0
in: pts:1525301 pts_time:16.9478 dts:1525301 dts_time:16.9478 duration:1525301 duration_time:16.9478 stream_index:0
out: pts:16948 pts_time:16.948 dts:16948 dts_time:16.948 duration:16948 duration_time:16.948 stream_index:0
in: pts:1528901 pts_time:16.9878 dts:1528901 dts_time:16.9878 duration:1528901 duration_time:16.9878 stream_index:0
out: pts:16988 pts_time:16.988 dts:16988 dts_time:16.988 duration:16988 duration_time:16.988 stream_index:0
in: pts:1532411 pts_time:17.0268 dts:1532411 dts_time:17.0268 duration:1532411 duration_time:17.0268 stream_index:0
out: pts:17027 pts_time:17.027 dts:17027 dts_time:17.027 duration:17027 duration_time:17.027 stream_index:0
in: pts:1536101 pts_time:17.0678 dts:1536101 dts_time:17.0678 duration:1536101 duration_time:17.0678 stream_index:0
out: pts:17068 pts_time:17.068 dts:17068 dts_time:17.068 duration:17068 duration_time:17.068 stream_index:0
in: pts:1539611 pts_time:17.1068 dts:1539611 dts_time:17.1068 duration:1539611 duration_time:17.1068 stream_index:0
out: pts:17107 pts_time:17.107 dts:17107 dts_time:17.107 duration:17107 duration_time:17.107 stream_index:0
in: pts:1543211 pts_time:17.1468 dts:1543211 dts_time:17.1468 duration:1543211 duration_time:17.1468 stream_index:0
out: pts:17147 pts_time:17.147 dts:17147 dts_time:17.147 duration:17147 duration_time:17.147 stream_index:0
in: pts:1546811 pts_time:17.1868 dts:1546811 dts_time:17.1868 duration:1546811 duration_time:17.1868 stream_index:0
out: pts:17187 pts_time:17.187 dts:17187 dts_time:17.187 duration:17187 duration_time:17.187 stream_index:0
in: pts:1550501 pts_time:17.2278 dts:1550501 dts_time:17.2278 duration:1550501 duration_time:17.2278 stream_index:0
out: pts:17228 pts_time:17.228 dts:17228 dts_time:17.228 duration:17228 duration_time:17.228 stream_index:0
in: pts:1554011 pts_time:17.2668 dts:1554011 dts_time:17.2668 duration:1554011 duration_time:17.2668 stream_index:0
out: pts:17267 pts_time:17.267 dts:17267 dts_time:17.267 duration:17267 duration_time:17.267 stream_index:0
in: pts:1557611 pts_time:17.3068 dts:1557611 dts_time:17.3068 duration:1557611 duration_time:17.3068 stream_index:0
out: pts:17307 pts_time:17.307 dts:17307 dts_time:17.307 duration:17307 duration_time:17.307 stream_index:0
in: pts:1561211 pts_time:17.3468 dts:1561211 dts_time:17.3468 duration:1561211 duration_time:17.3468 stream_index:0
out: pts:17347 pts_time:17.347 dts:17347 dts_time:17.347 duration:17347 duration_time:17.347 stream_index:0
in: pts:1564811 pts_time:17.3868 dts:1564811 dts_time:17.3868 duration:1564811 duration_time:17.3868 stream_index:0
out: pts:17387 pts_time:17.387 dts:17387 dts_time:17.387 duration:17387 duration_time:17.387 stream_index:0
in: pts:1568411 pts_time:17.4268 dts:1568411 dts_time:17.4268 duration:1568411 duration_time:17.4268 stream_index:0
out: pts:17427 pts_time:17.427 dts:17427 dts_time:17.427 duration:17427 duration_time:17.427 stream_index:0
in: pts:1572011 pts_time:17.4668 dts:1572011 dts_time:17.4668 duration:1572011 duration_time:17.4668 stream_index:0
out: pts:17467 pts_time:17.467 dts:17467 dts_time:17.467 duration:17467 duration_time:17.467 stream_index:0
in: pts:1575611 pts_time:17.5068 dts:1575611 dts_time:17.5068 duration:1575611 duration_time:17.5068 stream_index:0
out: pts:17507 pts_time:17.507 dts:17507 dts_time:17.507 duration:17507 duration_time:17.507 stream_index:0
in: pts:139264 pts_time:17.408 dts:139264 dts_time:17.408 duration:139264 duration_time:17.408 stream_index:1
out: pts:17408 pts_time:17.408 dts:17408 dts_time:17.408 duration:17408 duration_time:17.408 stream_index:1
in: pts:140288 pts_time:17.536 dts:140288 dts_time:17.536 duration:140288 duration_time:17.536 stream_index:1
out: pts:17536 pts_time:17.536 dts:17536 dts_time:17.536 duration:17536 duration_time:17.536 stream_index:1
in: pts:141312 pts_time:17.664 dts:141312 dts_time:17.664 duration:141312 duration_time:17.664 stream_index:1
out: pts:17664 pts_time:17.664 dts:17664 dts_time:17.664 duration:17664 duration_time:17.664 stream_index:1
in: pts:142336 pts_time:17.792 dts:142336 dts_time:17.792 duration:142336 duration_time:17.792 stream_index:1
out: pts:17792 pts_time:17.792 dts:17792 dts_time:17.792 duration:17792 duration_time:17.792 stream_index:1
in: pts:143360 pts_time:17.92 dts:143360 dts_time:17.92 duration:143360 duration_time:17.92 stream_index:1
out: pts:17920 pts_time:17.92 dts:17920 dts_time:17.92 duration:17920 duration_time:17.92 stream_index:1
in: pts:144384 pts_time:18.048 dts:144384 dts_time:18.048 duration:144384 duration_time:18.048 stream_index:1
out: pts:18048 pts_time:18.048 dts:18048 dts_time:18.048 duration:18048 duration_time:18.048 stream_index:1
in: pts:145408 pts_time:18.176 dts:145408 dts_time:18.176 duration:145408 duration_time:18.176 stream_index:1
out: pts:18176 pts_time:18.176 dts:18176 dts_time:18.176 duration:18176 duration_time:18.176 stream_index:1
in: pts:146432 pts_time:18.304 dts:146432 dts_time:18.304 duration:146432 duration_time:18.304 stream_index:1
out: pts:18304 pts_time:18.304 dts:18304 dts_time:18.304 duration:18304 duration_time:18.304 stream_index:1
in: pts:1579211 pts_time:17.5468 dts:1579211 dts_time:17.5468 duration:1579211 duration_time:17.5468 stream_index:0
out: pts:17547 pts_time:17.547 dts:17547 dts_time:17.547 duration:17547 duration_time:17.547 stream_index:0
in: pts:1583170 pts_time:17.5908 dts:1583170 dts_time:17.5908 duration:1583170 duration_time:17.5908 stream_index:0
out: pts:17591 pts_time:17.591 dts:17591 dts_time:17.591 duration:17591 duration_time:17.591 stream_index:0
in: pts:1586409 pts_time:17.6268 dts:1586409 dts_time:17.6268 duration:1586409 duration_time:17.6268 stream_index:0
out: pts:17627 pts_time:17.627 dts:17627 dts_time:17.627 duration:17627 duration_time:17.627 stream_index:0
in: pts:1590099 pts_time:17.6678 dts:1590099 dts_time:17.6678 duration:1590099 duration_time:17.6678 stream_index:0
out: pts:17668 pts_time:17.668 dts:17668 dts_time:17.668 duration:17668 duration_time:17.668 stream_index:0
in: pts:1593609 pts_time:17.7068 dts:1593609 dts_time:17.7068 duration:1593609 duration_time:17.7068 stream_index:0
out: pts:17707 pts_time:17.707 dts:17707 dts_time:17.707 duration:17707 duration_time:17.707 stream_index:0
in: pts:1597299 pts_time:17.7478 dts:1597299 dts_time:17.7478 duration:1597299 duration_time:17.7478 stream_index:0
out: pts:17748 pts_time:17.748 dts:17748 dts_time:17.748 duration:17748 duration_time:17.748 stream_index:0
in: pts:1600809 pts_time:17.7868 dts:1600809 dts_time:17.7868 duration:1600809 duration_time:17.7868 stream_index:0
out: pts:17787 pts_time:17.787 dts:17787 dts_time:17.787 duration:17787 duration_time:17.787 stream_index:0
in: pts:1604409 pts_time:17.8268 dts:1604409 dts_time:17.8268 duration:1604409 duration_time:17.8268 stream_index:0
out: pts:17827 pts_time:17.827 dts:17827 dts_time:17.827 duration:17827 duration_time:17.827 stream_index:0
in: pts:1608009 pts_time:17.8668 dts:1608009 dts_time:17.8668 duration:1608009 duration_time:17.8668 stream_index:0
out: pts:17867 pts_time:17.867 dts:17867 dts_time:17.867 duration:17867 duration_time:17.867 stream_index:0
in: pts:1611699 pts_time:17.9078 dts:1611699 dts_time:17.9078 duration:1611699 duration_time:17.9078 stream_index:0
out: pts:17908 pts_time:17.908 dts:17908 dts_time:17.908 duration:17908 duration_time:17.908 stream_index:0
in: pts:1615209 pts_time:17.9468 dts:1615209 dts_time:17.9468 duration:1615209 duration_time:17.9468 stream_index:0
out: pts:17947 pts_time:17.947 dts:17947 dts_time:17.947 duration:17947 duration_time:17.947 stream_index:0
in: pts:1618809 pts_time:17.9868 dts:1618809 dts_time:17.9868 duration:1618809 duration_time:17.9868 stream_index:0
out: pts:17987 pts_time:17.987 dts:17987 dts_time:17.987 duration:17987 duration_time:17.987 stream_index:0
in: pts:1622499 pts_time:18.0278 dts:1622499 dts_time:18.0278 duration:1622499 duration_time:18.0278 stream_index:0
out: pts:18028 pts_time:18.028 dts:18028 dts_time:18.028 duration:18028 duration_time:18.028 stream_index:0
in: pts:1626009 pts_time:18.0668 dts:1626009 dts_time:18.0668 duration:1626009 duration_time:18.0668 stream_index:0
out: pts:18067 pts_time:18.067 dts:18067 dts_time:18.067 duration:18067 duration_time:18.067 stream_index:0
in: pts:1629609 pts_time:18.1068 dts:1629609 dts_time:18.1068 duration:1629609 duration_time:18.1068 stream_index:0
out: pts:18107 pts_time:18.107 dts:18107 dts_time:18.107 duration:18107 duration_time:18.107 stream_index:0
in: pts:1633209 pts_time:18.1468 dts:1633209 dts_time:18.1468 duration:1633209 duration_time:18.1468 stream_index:0
out: pts:18147 pts_time:18.147 dts:18147 dts_time:18.147 duration:18147 duration_time:18.147 stream_index:0
in: pts:1636809 pts_time:18.1868 dts:1636809 dts_time:18.1868 duration:1636809 duration_time:18.1868 stream_index:0
out: pts:18187 pts_time:18.187 dts:18187 dts_time:18.187 duration:18187 duration_time:18.187 stream_index:0
in: pts:1640409 pts_time:18.2268 dts:1640409 dts_time:18.2268 duration:1640409 duration_time:18.2268 stream_index:0
out: pts:18227 pts_time:18.227 dts:18227 dts_time:18.227 duration:18227 duration_time:18.227 stream_index:0
in: pts:1644189 pts_time:18.2688 dts:1644189 dts_time:18.2688 duration:1644189 duration_time:18.2688 stream_index:0
out: pts:18269 pts_time:18.269 dts:18269 dts_time:18.269 duration:18269 duration_time:18.269 stream_index:0
in: pts:1647609 pts_time:18.3068 dts:1647609 dts_time:18.3068 duration:1647609 duration_time:18.3068 stream_index:0
out: pts:18307 pts_time:18.307 dts:18307 dts_time:18.307 duration:18307 duration_time:18.307 stream_index:0
in: pts:1651209 pts_time:18.3468 dts:1651209 dts_time:18.3468 duration:1651209 duration_time:18.3468 stream_index:0
out: pts:18347 pts_time:18.347 dts:18347 dts_time:18.347 duration:18347 duration_time:18.347 stream_index:0
in: pts:1654809 pts_time:18.3868 dts:1654809 dts_time:18.3868 duration:1654809 duration_time:18.3868 stream_index:0
out: pts:18387 pts_time:18.387 dts:18387 dts_time:18.387 duration:18387 duration_time:18.387 stream_index:0
in: pts:1658409 pts_time:18.4268 dts:1658409 dts_time:18.4268 duration:1658409 duration_time:18.4268 stream_index:0
out: pts:18427 pts_time:18.427 dts:18427 dts_time:18.427 duration:18427 duration_time:18.427 stream_index:0
in: pts:1662099 pts_time:18.4678 dts:1662099 dts_time:18.4678 duration:1662099 duration_time:18.4678 stream_index:0
out: pts:18468 pts_time:18.468 dts:18468 dts_time:18.468 duration:18468 duration_time:18.468 stream_index:0
in: pts:1665609 pts_time:18.5068 dts:1665609 dts_time:18.5068 duration:1665609 duration_time:18.5068 stream_index:0
out: pts:18507 pts_time:18.507 dts:18507 dts_time:18.507 duration:18507 duration_time:18.507 stream_index:0
in: pts:1669209 pts_time:18.5468 dts:1669209 dts_time:18.5468 duration:1669209 duration_time:18.5468 stream_index:0
out: pts:18547 pts_time:18.547 dts:18547 dts_time:18.547 duration:18547 duration_time:18.547 stream_index:0
in: pts:147456 pts_time:18.432 dts:147456 dts_time:18.432 duration:147456 duration_time:18.432 stream_index:1
out: pts:18432 pts_time:18.432 dts:18432 dts_time:18.432 duration:18432 duration_time:18.432 stream_index:1
in: pts:148480 pts_time:18.56 dts:148480 dts_time:18.56 duration:148480 duration_time:18.56 stream_index:1
out: pts:18560 pts_time:18.56 dts:18560 dts_time:18.56 duration:18560 duration_time:18.56 stream_index:1
in: pts:149504 pts_time:18.688 dts:149504 dts_time:18.688 duration:149504 duration_time:18.688 stream_index:1
out: pts:18688 pts_time:18.688 dts:18688 dts_time:18.688 duration:18688 duration_time:18.688 stream_index:1
in: pts:150528 pts_time:18.816 dts:150528 dts_time:18.816 duration:150528 duration_time:18.816 stream_index:1
out: pts:18816 pts_time:18.816 dts:18816 dts_time:18.816 duration:18816 duration_time:18.816 stream_index:1
in: pts:151552 pts_time:18.944 dts:151552 dts_time:18.944 duration:151552 duration_time:18.944 stream_index:1
out: pts:18944 pts_time:18.944 dts:18944 dts_time:18.944 duration:18944 duration_time:18.944 stream_index:1
in: pts:152576 pts_time:19.072 dts:152576 dts_time:19.072 duration:152576 duration_time:19.072 stream_index:1
out: pts:19072 pts_time:19.072 dts:19072 dts_time:19.072 duration:19072 duration_time:19.072 stream_index:1
in: pts:153600 pts_time:19.2 dts:153600 dts_time:19.2 duration:153600 duration_time:19.2 stream_index:1
out: pts:19200 pts_time:19.2 dts:19200 dts_time:19.2 duration:19200 duration_time:19.2 stream_index:1
in: pts:154624 pts_time:19.328 dts:154624 dts_time:19.328 duration:154624 duration_time:19.328 stream_index:1
out: pts:19328 pts_time:19.328 dts:19328 dts_time:19.328 duration:19328 duration_time:19.328 stream_index:1
in: pts:1672809 pts_time:18.5868 dts:1672809 dts_time:18.5868 duration:1672809 duration_time:18.5868 stream_index:0
out: pts:18587 pts_time:18.587 dts:18587 dts_time:18.587 duration:18587 duration_time:18.587 stream_index:0
in: pts:1676499 pts_time:18.6278 dts:1676499 dts_time:18.6278 duration:1676499 duration_time:18.6278 stream_index:0
out: pts:18628 pts_time:18.628 dts:18628 dts_time:18.628 duration:18628 duration_time:18.628 stream_index:0
in: pts:1680009 pts_time:18.6668 dts:1680009 dts_time:18.6668 duration:1680009 duration_time:18.6668 stream_index:0
out: pts:18667 pts_time:18.667 dts:18667 dts_time:18.667 duration:18667 duration_time:18.667 stream_index:0
in: pts:1683609 pts_time:18.7068 dts:1683609 dts_time:18.7068 duration:1683609 duration_time:18.7068 stream_index:0
out: pts:18707 pts_time:18.707 dts:18707 dts_time:18.707 duration:18707 duration_time:18.707 stream_index:0
in: pts:1687209 pts_time:18.7468 dts:1687209 dts_time:18.7468 duration:1687209 duration_time:18.7468 stream_index:0
out: pts:18747 pts_time:18.747 dts:18747 dts_time:18.747 duration:18747 duration_time:18.747 stream_index:0
in: pts:1690989 pts_time:18.7888 dts:1690989 dts_time:18.7888 duration:1690989 duration_time:18.7888 stream_index:0
out: pts:18789 pts_time:18.789 dts:18789 dts_time:18.789 duration:18789 duration_time:18.789 stream_index:0
in: pts:1694409 pts_time:18.8268 dts:1694409 dts_time:18.8268 duration:1694409 duration_time:18.8268 stream_index:0
out: pts:18827 pts_time:18.827 dts:18827 dts_time:18.827 duration:18827 duration_time:18.827 stream_index:0
in: pts:1698009 pts_time:18.8668 dts:1698009 dts_time:18.8668 duration:1698009 duration_time:18.8668 stream_index:0
out: pts:18867 pts_time:18.867 dts:18867 dts_time:18.867 duration:18867 duration_time:18.867 stream_index:0
in: pts:1701609 pts_time:18.9068 dts:1701609 dts_time:18.9068 duration:1701609 duration_time:18.9068 stream_index:0
out: pts:18907 pts_time:18.907 dts:18907 dts_time:18.907 duration:18907 duration_time:18.907 stream_index:0
in: pts:1705209 pts_time:18.9468 dts:1705209 dts_time:18.9468 duration:1705209 duration_time:18.9468 stream_index:0
out: pts:18947 pts_time:18.947 dts:18947 dts_time:18.947 duration:18947 duration_time:18.947 stream_index:0
in: pts:1708809 pts_time:18.9868 dts:1708809 dts_time:18.9868 duration:1708809 duration_time:18.9868 stream_index:0
out: pts:18987 pts_time:18.987 dts:18987 dts_time:18.987 duration:18987 duration_time:18.987 stream_index:0
in: pts:1712409 pts_time:19.0268 dts:1712409 dts_time:19.0268 duration:1712409 duration_time:19.0268 stream_index:0
out: pts:19027 pts_time:19.027 dts:19027 dts_time:19.027 duration:19027 duration_time:19.027 stream_index:0
in: pts:1716009 pts_time:19.0668 dts:1716009 dts_time:19.0668 duration:1716009 duration_time:19.0668 stream_index:0
out: pts:19067 pts_time:19.067 dts:19067 dts_time:19.067 duration:19067 duration_time:19.067 stream_index:0
in: pts:1719609 pts_time:19.1068 dts:1719609 dts_time:19.1068 duration:1719609 duration_time:19.1068 stream_index:0
out: pts:19107 pts_time:19.107 dts:19107 dts_time:19.107 duration:19107 duration_time:19.107 stream_index:0
in: pts:1723209 pts_time:19.1468 dts:1723209 dts_time:19.1468 duration:1723209 duration_time:19.1468 stream_index:0
out: pts:19147 pts_time:19.147 dts:19147 dts_time:19.147 duration:19147 duration_time:19.147 stream_index:0
in: pts:1726809 pts_time:19.1868 dts:1726809 dts_time:19.1868 duration:1726809 duration_time:19.1868 stream_index:0
out: pts:19187 pts_time:19.187 dts:19187 dts_time:19.187 duration:19187 duration_time:19.187 stream_index:0
in: pts:1730409 pts_time:19.2268 dts:1730409 dts_time:19.2268 duration:1730409 duration_time:19.2268 stream_index:0
out: pts:19227 pts_time:19.227 dts:19227 dts_time:19.227 duration:19227 duration_time:19.227 stream_index:0
in: pts:1734009 pts_time:19.2668 dts:1734009 dts_time:19.2668 duration:1734009 duration_time:19.2668 stream_index:0
out: pts:19267 pts_time:19.267 dts:19267 dts_time:19.267 duration:19267 duration_time:19.267 stream_index:0
in: pts:1737609 pts_time:19.3068 dts:1737609 dts_time:19.3068 duration:1737609 duration_time:19.3068 stream_index:0
out: pts:19307 pts_time:19.307 dts:19307 dts_time:19.307 duration:19307 duration_time:19.307 stream_index:0
in: pts:1741209 pts_time:19.3468 dts:1741209 dts_time:19.3468 duration:1741209 duration_time:19.3468 stream_index:0
out: pts:19347 pts_time:19.347 dts:19347 dts_time:19.347 duration:19347 duration_time:19.347 stream_index:0
in: pts:1744809 pts_time:19.3868 dts:1744809 dts_time:19.3868 duration:1744809 duration_time:19.3868 stream_index:0
out: pts:19387 pts_time:19.387 dts:19387 dts_time:19.387 duration:19387 duration_time:19.387 stream_index:0
in: pts:1748409 pts_time:19.4268 dts:1748409 dts_time:19.4268 duration:1748409 duration_time:19.4268 stream_index:0
out: pts:19427 pts_time:19.427 dts:19427 dts_time:19.427 duration:19427 duration_time:19.427 stream_index:0
in: pts:1752009 pts_time:19.4668 dts:1752009 dts_time:19.4668 duration:1752009 duration_time:19.4668 stream_index:0
out: pts:19467 pts_time:19.467 dts:19467 dts_time:19.467 duration:19467 duration_time:19.467 stream_index:0
in: pts:1755609 pts_time:19.5068 dts:1755609 dts_time:19.5068 duration:1755609 duration_time:19.5068 stream_index:0
out: pts:19507 pts_time:19.507 dts:19507 dts_time:19.507 duration:19507 duration_time:19.507 stream_index:0
in: pts:1759209 pts_time:19.5468 dts:1759209 dts_time:19.5468 duration:1759209 duration_time:19.5468 stream_index:0
out: pts:19547 pts_time:19.547 dts:19547 dts_time:19.547 duration:19547 duration_time:19.547 stream_index:0
in: pts:155648 pts_time:19.456 dts:155648 dts_time:19.456 duration:155648 duration_time:19.456 stream_index:1
out: pts:19456 pts_time:19.456 dts:19456 dts_time:19.456 duration:19456 duration_time:19.456 stream_index:1
in: pts:156672 pts_time:19.584 dts:156672 dts_time:19.584 duration:156672 duration_time:19.584 stream_index:1
out: pts:19584 pts_time:19.584 dts:19584 dts_time:19.584 duration:19584 duration_time:19.584 stream_index:1
in: pts:157696 pts_time:19.712 dts:157696 dts_time:19.712 duration:157696 duration_time:19.712 stream_index:1
out: pts:19712 pts_time:19.712 dts:19712 dts_time:19.712 duration:19712 duration_time:19.712 stream_index:1
in: pts:158720 pts_time:19.84 dts:158720 dts_time:19.84 duration:158720 duration_time:19.84 stream_index:1
out: pts:19840 pts_time:19.84 dts:19840 dts_time:19.84 duration:19840 duration_time:19.84 stream_index:1
in: pts:159744 pts_time:19.968 dts:159744 dts_time:19.968 duration:159744 duration_time:19.968 stream_index:1
out: pts:19968 pts_time:19.968 dts:19968 dts_time:19.968 duration:19968 duration_time:19.968 stream_index:1
in: pts:160768 pts_time:20.096 dts:160768 dts_time:20.096 duration:160768 duration_time:20.096 stream_index:1
out: pts:20096 pts_time:20.096 dts:20096 dts_time:20.096 duration:20096 duration_time:20.096 stream_index:1
in: pts:161792 pts_time:20.224 dts:161792 dts_time:20.224 duration:161792 duration_time:20.224 stream_index:1
out: pts:20224 pts_time:20.224 dts:20224 dts_time:20.224 duration:20224 duration_time:20.224 stream_index:1
in: pts:162816 pts_time:20.352 dts:162816 dts_time:20.352 duration:162816 duration_time:20.352 stream_index:1
out: pts:20352 pts_time:20.352 dts:20352 dts_time:20.352 duration:20352 duration_time:20.352 stream_index:1
in: pts:1762809 pts_time:19.5868 dts:1762809 dts_time:19.5868 duration:1762809 duration_time:19.5868 stream_index:0
out: pts:19587 pts_time:19.587 dts:19587 dts_time:19.587 duration:19587 duration_time:19.587 stream_index:0
in: pts:1766409 pts_time:19.6268 dts:1766409 dts_time:19.6268 duration:1766409 duration_time:19.6268 stream_index:0
out: pts:19627 pts_time:19.627 dts:19627 dts_time:19.627 duration:19627 duration_time:19.627 stream_index:0
in: pts:1770009 pts_time:19.6668 dts:1770009 dts_time:19.6668 duration:1770009 duration_time:19.6668 stream_index:0
out: pts:19667 pts_time:19.667 dts:19667 dts_time:19.667 duration:19667 duration_time:19.667 stream_index:0
in: pts:1773609 pts_time:19.7068 dts:1773609 dts_time:19.7068 duration:1773609 duration_time:19.7068 stream_index:0
out: pts:19707 pts_time:19.707 dts:19707 dts_time:19.707 duration:19707 duration_time:19.707 stream_index:0
in: pts:1777209 pts_time:19.7468 dts:1777209 dts_time:19.7468 duration:1777209 duration_time:19.7468 stream_index:0
out: pts:19747 pts_time:19.747 dts:19747 dts_time:19.747 duration:19747 duration_time:19.747 stream_index:0
in: pts:1780809 pts_time:19.7868 dts:1780809 dts_time:19.7868 duration:1780809 duration_time:19.7868 stream_index:0
out: pts:19787 pts_time:19.787 dts:19787 dts_time:19.787 duration:19787 duration_time:19.787 stream_index:0
in: pts:1784409 pts_time:19.8268 dts:1784409 dts_time:19.8268 duration:1784409 duration_time:19.8268 stream_index:0
out: pts:19827 pts_time:19.827 dts:19827 dts_time:19.827 duration:19827 duration_time:19.827 stream_index:0
in: pts:1788009 pts_time:19.8668 dts:1788009 dts_time:19.8668 duration:1788009 duration_time:19.8668 stream_index:0
out: pts:19867 pts_time:19.867 dts:19867 dts_time:19.867 duration:19867 duration_time:19.867 stream_index:0
in: pts:1791609 pts_time:19.9068 dts:1791609 dts_time:19.9068 duration:1791609 duration_time:19.9068 stream_index:0
out: pts:19907 pts_time:19.907 dts:19907 dts_time:19.907 duration:19907 duration_time:19.907 stream_index:0
in: pts:1795299 pts_time:19.9478 dts:1795299 dts_time:19.9478 duration:1795299 duration_time:19.9478 stream_index:0
out: pts:19948 pts_time:19.948 dts:19948 dts_time:19.948 duration:19948 duration_time:19.948 stream_index:0
in: pts:1799079 pts_time:19.9898 dts:1799079 dts_time:19.9898 duration:1799079 duration_time:19.9898 stream_index:0
out: pts:19990 pts_time:19.99 dts:19990 dts_time:19.99 duration:19990 duration_time:19.99 stream_index:0
in: pts:1802409 pts_time:20.0268 dts:1802409 dts_time:20.0268 duration:1802409 duration_time:20.0268 stream_index:0
out: pts:20027 pts_time:20.027 dts:20027 dts_time:20.027 duration:20027 duration_time:20.027 stream_index:0
in: pts:1806009 pts_time:20.0668 dts:1806009 dts_time:20.0668 duration:1806009 duration_time:20.0668 stream_index:0
out: pts:20067 pts_time:20.067 dts:20067 dts_time:20.067 duration:20067 duration_time:20.067 stream_index:0
in: pts:1809609 pts_time:20.1068 dts:1809609 dts_time:20.1068 duration:1809609 duration_time:20.1068 stream_index:0
out: pts:20107 pts_time:20.107 dts:20107 dts_time:20.107 duration:20107 duration_time:20.107 stream_index:0
in: pts:1813209 pts_time:20.1468 dts:1813209 dts_time:20.1468 duration:1813209 duration_time:20.1468 stream_index:0
out: pts:20147 pts_time:20.147 dts:20147 dts_time:20.147 duration:20147 duration_time:20.147 stream_index:0
in: pts:1816899 pts_time:20.1878 dts:1816899 dts_time:20.1878 duration:1816899 duration_time:20.1878 stream_index:0
out: pts:20188 pts_time:20.188 dts:20188 dts_time:20.188 duration:20188 duration_time:20.188 stream_index:0
in: pts:1820589 pts_time:20.2288 dts:1820589 dts_time:20.2288 duration:1820589 duration_time:20.2288 stream_index:0
out: pts:20229 pts_time:20.229 dts:20229 dts_time:20.229 duration:20229 duration_time:20.229 stream_index:0
in: pts:1824099 pts_time:20.2678 dts:1824099 dts_time:20.2678 duration:1824099 duration_time:20.2678 stream_index:0
out: pts:20268 pts_time:20.268 dts:20268 dts_time:20.268 duration:20268 duration_time:20.268 stream_index:0
in: pts:1827789 pts_time:20.3088 dts:1827789 dts_time:20.3088 duration:1827789 duration_time:20.3088 stream_index:0
out: pts:20309 pts_time:20.309 dts:20309 dts_time:20.309 duration:20309 duration_time:20.309 stream_index:0
in: pts:1831209 pts_time:20.3468 dts:1831209 dts_time:20.3468 duration:1831209 duration_time:20.3468 stream_index:0
out: pts:20347 pts_time:20.347 dts:20347 dts_time:20.347 duration:20347 duration_time:20.347 stream_index:0
in: pts:1834899 pts_time:20.3878 dts:1834899 dts_time:20.3878 duration:1834899 duration_time:20.3878 stream_index:0
out: pts:20388 pts_time:20.388 dts:20388 dts_time:20.388 duration:20388 duration_time:20.388 stream_index:0
in: pts:1839849 pts_time:20.4428 dts:1839849 dts_time:20.4428 duration:1839849 duration_time:20.4428 stream_index:0
out: pts:20443 pts_time:20.443 dts:20443 dts_time:20.443 duration:20443 duration_time:20.443 stream_index:0
in: pts:1842009 pts_time:20.4668 dts:1842009 dts_time:20.
4668 duration:1842009 duration_time:20.4668 stream_index:0
out: pts:20467 pts_time:20.467 dts:20467 dts_time:20.467 duration:20467 duration_time:20.467 stream_index:0
in: pts:1845609 pts_time:20.5068 dts:1845609 dts_time:20.5068 duration:1845609 duration_time:20.5068 stream_index:0
out: pts:20507 pts_time:20.507 dts:20507 dts_time:20.507 duration:20507 duration_time:20.507 stream_index:0
in: pts:1849209 pts_time:20.5468 dts:1849209 dts_time:20.5468 duration:1849209 duration_time:20.5468 stream_index:0
out: pts:20547 pts_time:20.547 dts:20547 dts_time:20.547 duration:20547 duration_time:20.547 stream_index:0
in: pts:163840 pts_time:20.48 dts:163840 dts_time:20.48 duration:163840 duration_time:20.48 stream_index:1
out: pts:20480 pts_time:20.48 dts:20480 dts_time:20.48 duration:20480 duration_time:20.48 stream_index:1
in: pts:164864 pts_time:20.608 dts:164864 dts_time:20.608 duration:164864 duration_time:20.608 stream_index:1
out: pts:20608 pts_time:20.608 dts:20608 dts_time:20.608 duration:20608 duration_time:20.608 stream_index:1
in: pts:165888 pts_time:20.736 dts:165888 dts_time:20.736 duration:165888 duration_time:20.736 stream_index:1
out: pts:20736 pts_time:20.736 dts:20736 dts_time:20.736 duration:20736 duration_time:20.736 stream_index:1
in: pts:166912 pts_time:20.864 dts:166912 dts_time:20.864 duration:166912 duration_time:20.864 stream_index:1
out: pts:20864 pts_time:20.864 dts:20864 dts_time:20.864 duration:20864 duration_time:20.864 stream_index:1
in: pts:167936 pts_time:20.992 dts:167936 dts_time:20.992 duration:167936 duration_time:20.992 stream_index:1
out: pts:20992 pts_time:20.992 dts:20992 dts_time:20.992 duration:20992 duration_time:20.992 stream_index:1
in: pts:168960 pts_time:21.12 dts:168960 dts_time:21.12 duration:168960 duration_time:21.12 stream_index:1
out: pts:21120 pts_time:21.12 dts:21120 dts_time:21.12 duration:21120 duration_time:21.12 stream_index:1
in: pts:169984 pts_time:21.248 dts:169984 dts_time:21.248 duration:169984 duration_time:21.248 stream_index:1
out: pts:21248 pts_time:21.248 dts:21248 dts_time:21.248 duration:21248 duration_time:21.248 stream_index:1
in: pts:171008 pts_time:21.376 dts:171008 dts_time:21.376 duration:171008 duration_time:21.376 stream_index:1
out: pts:21376 pts_time:21.376 dts:21376 dts_time:21.376 duration:21376 duration_time:21.376 stream_index:1
in: pts:1852809 pts_time:20.5868 dts:1852809 dts_time:20.5868 duration:1852809 duration_time:20.5868 stream_index:0
out: pts:20587 pts_time:20.587 dts:20587 dts_time:20.587 duration:20587 duration_time:20.587 stream_index:0
in: pts:1856409 pts_time:20.6268 dts:1856409 dts_time:20.6268 duration:1856409 duration_time:20.6268 stream_index:0
out: pts:20627 pts_time:20.627 dts:20627 dts_time:20.627 duration:20627 duration_time:20.627 stream_index:0
in: pts:1860009 pts_time:20.6668 dts:1860009 dts_time:20.6668 duration:1860009 duration_time:20.6668 stream_index:0
out: pts:20667 pts_time:20.667 dts:20667 dts_time:20.667 duration:20667 duration_time:20.667 stream_index:0
in: pts:1863609 pts_time:20.7068 dts:1863609 dts_time:20.7068 duration:1863609 duration_time:20.7068 stream_index:0
out: pts:20707 pts_time:20.707 dts:20707 dts_time:20.707 duration:20707 duration_time:20.707 stream_index:0
in: pts:1867209 pts_time:20.7468 dts:1867209 dts_time:20.7468 duration:1867209 duration_time:20.7468 stream_index:0
out: pts:20747 pts_time:20.747 dts:20747 dts_time:20.747 duration:20747 duration_time:20.747 stream_index:0
in: pts:1870809 pts_time:20.7868 dts:1870809 dts_time:20.7868 duration:1870809 duration_time:20.7868 stream_index:0
out: pts:20787 pts_time:20.787 dts:20787 dts_time:20.787 duration:20787 duration_time:20.787 stream_index:0
in: pts:1874409 pts_time:20.8268 dts:1874409 dts_time:20.8268 duration:1874409 duration_time:20.8268 stream_index:0
out: pts:20827 pts_time:20.827 dts:20827 dts_time:20.827 duration:20827 duration_time:20.827 stream_index:0
in: pts:1878009 pts_time:20.8668 dts:1878009 dts_time:20.8668 duration:1878009 duration_time:20.8668 stream_index:0
out: pts:20867 pts_time:20.867 dts:20867 dts_time:20.867 duration:20867 duration_time:20.867 stream_index:0
in: pts:1881609 pts_time:20.9068 dts:1881609 dts_time:20.9068 duration:1881609 duration_time:20.9068 stream_index:0
out: pts:20907 pts_time:20.907 dts:20907 dts_time:20.907 duration:20907 duration_time:20.907 stream_index:0
in: pts:1885209 pts_time:20.9468 dts:1885209 dts_time:20.9468 duration:1885209 duration_time:20.9468 stream_index:0
out: pts:20947 pts_time:20.947 dts:20947 dts_time:20.947 duration:20947 duration_time:20.947 stream_index:0
in: pts:1888809 pts_time:20.9868 dts:1888809 dts_time:20.9868 duration:1888809 duration_time:20.9868 stream_index:0
out: pts:20987 pts_time:20.987 dts:20987 dts_time:20.987 duration:20987 duration_time:20.987 stream_index:0
in: pts:1892409 pts_time:21.0268 dts:1892409 dts_time:21.0268 duration:1892409 duration_time:21.0268 stream_index:0
out: pts:21027 pts_time:21.027 dts:21027 dts_time:21.027 duration:21027 duration_time:21.027 stream_index:0
in: pts:1896009 pts_time:21.0668 dts:1896009 dts_time:21.0668 duration:1896009 duration_time:21.0668 stream_index:0
out: pts:21067 pts_time:21.067 dts:21067 dts_time:21.067 duration:21067 duration_time:21.067 stream_index:0
in: pts:1899609 pts_time:21.1068 dts:1899609 dts_time:21.1068 duration:1899609 duration_time:21.1068 stream_index:0
out: pts:21107 pts_time:21.107 dts:21107 dts_time:21.107 duration:21107 duration_time:21.107 stream_index:0
in: pts:1903209 pts_time:21.1468 dts:1903209 dts_time:21.1468 duration:1903209 duration_time:21.1468 stream_index:0
out: pts:21147 pts_time:21.147 dts:21147 dts_time:21.147 duration:21147 duration_time:21.147 stream_index:0
in: pts:1907078 pts_time:21.1898 dts:1907078 dts_time:21.1898 duration:1907078 duration_time:21.1898 stream_index:0
out: pts:21190 pts_time:21.19 dts:21190 dts_time:21.19 duration:21190 duration_time:21.19 stream_index:0
in: pts:1910317 pts_time:21.2257 dts:1910317 dts_time:21.2257 duration:1910317 duration_time:21.2257 stream_index:0
out: pts:21226 pts_time:21.226 dts:21226 dts_time:21.226 duration:21226 duration_time:21.226 stream_index:0
in: pts:1914007 pts_time:21.2667 dts:1914007 dts_time:21.2667 duration:1914007 duration_time:21.2667 stream_index:0
out: pts:21267 pts_time:21.267 dts:21267 dts_time:21.267 duration:21267 duration_time:21.267 stream_index:0
in: pts:1917607 pts_time:21.3067 dts:1917607 dts_time:21.3067 duration:1917607 duration_time:21.3067 stream_index:0
out: pts:21307 pts_time:21.307 dts:21307 dts_time:21.307 duration:21307 duration_time:21.307 stream_index:0
in: pts:1921566 pts_time:21.3507 dts:1921566 dts_time:21.3507 duration:1921566 duration_time:21.3507 stream_index:0
out: pts:21351 pts_time:21.351 dts:21351 dts_time:21.351 duration:21351 duration_time:21.351 stream_index:0
in: pts:1924805 pts_time:21.3867 dts:1924805 dts_time:21.3867 duration:1924805 duration_time:21.3867 stream_index:0
out: pts:21387 pts_time:21.387 dts:21387 dts_time:21.387 duration:21387 duration_time:21.387 stream_index:0
in: pts:1928405 pts_time:21.4267 dts:1928405 dts_time:21.4267 duration:1928405 duration_time:21.4267 stream_index:0
out: pts:21427 pts_time:21.427 dts:21427 dts_time:21.427 duration:21427 duration_time:21.427 stream_index:0
in: pts:1931915 pts_time:21.4657 dts:1931915 dts_time:21.4657 duration:1931915 duration_time:21.4657 stream_index:0
out: pts:21466 pts_time:21.466 dts:21466 dts_time:21.466 duration:21466 duration_time:21.466 stream_index:0
in: pts:1935605 pts_time:21.5067 dts:1935605 dts_time:21.5067 duration:1935605 duration_time:21.5067 stream_index:0
out: pts:21507 pts_time:21.507 dts:21507 dts_time:21.507 duration:21507 duration_time:21.507 stream_index:0
in: pts:1939205 pts_time:21.5467 dts:1939205 dts_time:21.5467 duration:1939205 duration_time:21.5467 stream_index:0
out: pts:21547 pts_time:21.547 dts:21547 dts_time:21.547 duration:21547 duration_time:21.547 stream_index:0
in: pts:1942715 pts_time:21.5857 dts:1942715 dts_time:21.5857 duration:1942715 duration_time:21.5857 stream_index:0
out: pts:21586 pts_time:21.586 dts:21586 dts_time:21.586 duration:21586 duration_time:21.586 stream_index:0
in: pts:172032 pts_time:21.504 dts:172032 dts_time:21.504 duration:172032 duration_time:21.504 stream_index:1
out: pts:21504 pts_time:21.504 dts:21504 dts_time:21.504 duration:21504 duration_time:21.504 stream_index:1
in: pts:173056 pts_time:21.632 dts:173056 dts_time:21.632 duration:173056 duration_time:21.632 stream_index:1
out: pts:21632 pts_time:21.632 dts:21632 dts_time:21.632 duration:21632 duration_time:21.632 stream_index:1
in: pts:174080 pts_time:21.76 dts:174080 dts_time:21.76 duration:174080 duration_time:21.76 stream_index:1
out: pts:21760 pts_time:21.76 dts:21760 dts_time:21.76 duration:21760 duration_time:21.76 stream_index:1
in: pts:175104 pts_time:21.888 dts:175104 dts_time:21.888 duration:175104 duration_time:21.888 stream_index:1
out: pts:21888 pts_time:21.888 dts:21888 dts_time:21.888 duration:21888 duration_time:21.888 stream_index:1
in: pts:176128 pts_time:22.016 dts:176128 dts_time:22.016 duration:176128 duration_time:22.016 stream_index:1
out: pts:22016 pts_time:22.016 dts:22016 dts_time:22.016 duration:22016 duration_time:22.016 stream_index:1
in: pts:177152 pts_time:22.144 dts:177152 dts_time:22.144 duration:177152 duration_time:22.144 stream_index:1
out: pts:22144 pts_time:22.144 dts:22144 dts_time:22.144 duration:22144 duration_time:22.144 stream_index:1
in: pts:178176 pts_time:22.272 dts:178176 dts_time:22.272 duration:178176 duration_time:22.272 stream_index:1
out: pts:22272 pts_time:22.272 dts:22272 dts_time:22.272 duration:22272 duration_time:22.272 stream_index:1
in: pts:179200 pts_time:22.4 dts:179200 dts_time:22.4 duration:179200 duration_time:22.4 stream_index:1
out: pts:22400 pts_time:22.4 dts:22400 dts_time:22.4 duration:22400 duration_time:22.4 stream_index:1
in: pts:1946405 pts_time:21.6267 dts:1946405 dts_time:21.6267 duration:1946405 duration_time:21.6267 stream_index:0
out: pts:21627 pts_time:21.627 dts:21627 dts_time:21.627 duration:21627 duration_time:21.627 stream_index:0
in: pts:1949915 pts_time:21.6657 dts:1949915 dts_time:21.6657 duration:1949915 duration_time:21.6657 stream_index:0
out: pts:21666 pts_time:21.666 dts:21666 dts_time:21.666 duration:21666 duration_time:21.666 stream_index:0
in: pts:1953605 pts_time:21.7067 dts:1953605 dts_time:21.7067 duration:1953605 duration_time:21.7067 stream_index:0
out: pts:21707 pts_time:21.707 dts:21707 dts_time:21.707 duration:21707 duration_time:21.707 stream_index:0
in: pts:1957205 pts_time:21.7467 dts:1957205 dts_time:21.7467 duration:1957205 duration_time:21.7467 stream_index:0
out: pts:21747 pts_time:21.747 dts:21747 dts_time:21.747 duration:21747 duration_time:21.747 stream_index:0
in: pts:1960805 pts_time:21.7867 dts:1960805 dts_time:21.7867 duration:1960805 duration_time:21.7867 stream_index:0
out: pts:21787 pts_time:21.787 dts:21787 dts_time:21.787 duration:21787 duration_time:21.787 stream_index:0
in: pts:1964315 pts_time:21.8257 dts:1964315 dts_time:21.8257 duration:1964315 duration_time:21.8257 stream_index:0
out: pts:21826 pts_time:21.826 dts:21826 dts_time:21.826 duration:21826 duration_time:21.826 stream_index:0
in: pts:1968005 pts_time:21.8667 dts:1968005 dts_time:21.8667 duration:1968005 duration_time:21.8667 stream_index:0
out: pts:21867 pts_time:21.867 dts:21867 dts_time:21.867 duration:21867 duration_time:21.867 stream_index:0
in: pts:1971605 pts_time:21.9067 dts:1971605 dts_time:21.9067 duration:1971605 duration_time:21.9067 stream_index:0
out: pts:21907 pts_time:21.907 dts:21907 dts_time:21.907 duration:21907 duration_time:21.907 stream_index:0
in: pts:1975205 pts_time:21.9467 dts:1975205 dts_time:21.9467 duration:1975205 duration_time:21.9467 stream_index:0
out: pts:21947 pts_time:21.947 dts:21947 dts_time:21.947 duration:21947 duration_time:21.947 stream_index:0
in: pts:1978805 pts_time:21.9867 dts:1978805 dts_time:21.9867 duration:1978805 duration_time:21.9867 stream_index:0
out: pts:21987 pts_time:21.987 dts:21987 dts_time:21.987 duration:21987 duration_time:21.987 stream_index:0
in: pts:1982405 pts_time:22.0267 dts:1982405 dts_time:22.0267 duration:1982405 duration_time:22.0267 stream_index:0
out: pts:22027 pts_time:22.027 dts:22027 dts_time:22.027 duration:22027 duration_time:22.027 stream_index:0
in: pts:1986005 pts_time:22.0667 dts:1986005 dts_time:22.0667 duration:1986005 duration_time:22.0667 stream_index:0
out: pts:22067 pts_time:22.067 dts:22067 dts_time:22.067 duration:22067 duration_time:22.067 stream_index:0
in: pts:1989605 pts_time:22.1067 dts:1989605 dts_time:22.1067 duration:1989605 duration_time:22.1067 stream_index:0
out: pts:22107 pts_time:22.107 dts:22107 dts_time:22.107 duration:22107 duration_time:22.107 stream_index:0
in: pts:1993205 pts_time:22.1467 dts:1993205 dts_time:22.1467 duration:1993205 duration_time:22.1467 stream_index:0
out: pts:22147 pts_time:22.147 dts:22147 dts_time:22.147 duration:22147 duration_time:22.147 stream_index:0
in: pts:1996715 pts_time:22.1857 dts:1996715 dts_time:22.1857 duration:1996715 duration_time:22.1857 stream_index:0
out: pts:22186 pts_time:22.186 dts:22186 dts_time:22.186 duration:22186 duration_time:22.186 stream_index:0
in: pts:2000405 pts_time:22.2267 dts:2000405 dts_time:22.2267 duration:2000405 duration_time:22.2267 stream_index:0
out: pts:22227 pts_time:22.227 dts:22227 dts_time:22.227 duration:22227 duration_time:22.227 stream_index:0
in: pts:2003915 pts_time:22.2657 dts:2003915 dts_time:22.2657 duration:2003915 duration_time:22.2657 stream_index:0
out: pts:22266 pts_time:22.266 dts:22266 dts_time:22.266 duration:22266 duration_time:22.266 stream_index:0
in: pts:2007515 pts_time:22.3057 dts:2007515 dts_time:22.3057 duration:2007515 duration_time:22.3057 stream_index:0
out: pts:22306 pts_time:22.306 dts:22306 dts_time:22.306 duration:22306 duration_time:22.306 stream_index:0
in: pts:2011205 pts_time:22.3467 dts:2011205 dts_time:22.3467 duration:2011205 duration_time:22.3467 stream_index:0
out: pts:22347 pts_time:22.347 dts:22347 dts_time:22.347 duration:22347 duration_time:22.347 stream_index:0
in: pts:2014985 pts_time:22.3887 dts:2014985 dts_time:22.3887 duration:2014985 duration_time:22.3887 stream_index:0
out: pts:22389 pts_time:22.389 dts:22389 dts_time:22.389 duration:22389 duration_time:22.389 stream_index:0
in: pts:2018315 pts_time:22.4257 dts:2018315 dts_time:22.4257 duration:2018315 duration_time:22.4257 stream_index:0
out: pts:22426 pts_time:22.426 dts:22426 dts_time:22.426 duration:22426 duration_time:22.426 stream_index:0
in: pts:2021915 pts_time:22.4657 dts:2021915 dts_time:22.4657 duration:2021915 duration_time:22.4657 stream_index:0
out: pts:22466 pts_time:22.466 dts:22466 dts_time:22.466 duration:22466 duration_time:22.466 stream_index:0
in: pts:2025515 pts_time:22.5057 dts:2025515 dts_time:22.5057 duration:2025515 duration_time:22.5057 stream_index:0
out: pts:22506 pts_time:22.506 dts:22506 dts_time:22.506 duration:22506 duration_time:22.506 stream_index:0
in: pts:2029205 pts_time:22.5467 dts:2029205 dts_time:22.5467 duration:2029205 duration_time:22.5467 stream_index:0
out: pts:22547 pts_time:22.547 dts:22547 dts_time:22.547 duration:22547 duration_time:22.547 stream_index:0
in: pts:2032715 pts_time:22.5857 dts:2032715 dts_time:22.5857 duration:2032715 duration_time:22.5857 stream_index:0
out: pts:22586 pts_time:22.586 dts:22586 dts_time:22.586 duration:22586 duration_time:22.586 stream_index:0
in: pts:180224 pts_time:22.528 dts:180224 dts_time:22.528 duration:180224 duration_time:22.528 stream_index:1
out: pts:22528 pts_time:22.528 dts:22528 dts_time:22.528 duration:22528 duration_time:22.528 stream_index:1
in: pts:181248 pts_time:22.656 dts:181248 dts_time:22.656 duration:181248 duration_time:22.656 stream_index:1
out: pts:22656 pts_time:22.656 dts:22656 dts_time:22.656 duration:22656 duration_time:22.656 stream_index:1
in: pts:182272 pts_time:22.784 dts:182272 dts_time:22.784 duration:182272 duration_time:22.784 stream_index:1
out: pts:22784 pts_time:22.784 dts:22784 dts_time:22.784 duration:22784 duration_time:22.784 stream_index:1
in: pts:183296 pts_time:22.912 dts:183296 dts_time:22.912 duration:183296 duration_time:22.912 stream_index:1
out: pts:22912 pts_time:22.912 dts:22912 dts_time:22.912 duration:22912 duration_time:22.912 stream_index:1
in: pts:184320 pts_time:23.04 dts:184320 dts_time:23.04 duration:184320 duration_time:23.04 stream_index:1
out: pts:23040 pts_time:23.04 dts:23040 dts_time:23.04 duration:23040 duration_time:23.04 stream_index:1
in: pts:185344 pts_time:23.168 dts:185344 dts_time:23.168 duration:185344 duration_time:23.168 stream_index:1
out: pts:23168 pts_time:23.168 dts:23168 dts_time:23.168 duration:23168 duration_time:23.168 stream_index:1
in: pts:186368 pts_time:23.296 dts:186368 dts_time:23.296 duration:186368 duration_time:23.296 stream_index:1
out: pts:23296 pts_time:23.296 dts:23296 dts_time:23.296 duration:23296 duration_time:23.296 stream_index:1
in: pts:187392 pts_time:23.424 dts:187392 dts_time:23.424 duration:187392 duration_time:23.424 stream_index:1
out: pts:23424 pts_time:23.424 dts:23424 dts_time:23.424 duration:23424 duration_time:23.424 stream_index:1
in: pts:2036405 pts_time:22.6267 dts:2036405 dts_time:22.6267 duration:2036405 duration_time:22.6267 stream_index:0
out: pts:22627 pts_time:22.627 dts:22627 dts_time:22.627 duration:22627 duration_time:22.627 stream_index:0
in: pts:2040005 pts_time:22.6667 dts:2040005 dts_time:22.6667 duration:2040005 duration_time:22.6667 stream_index:0
out: pts:22667 pts_time:22.667 dts:22667 dts_time:22.667 duration:22667 duration_time:22.667 stream_index:0
in: pts:2043605 pts_time:22.7067 dts:2043605 dts_time:22.7067 duration:2043605 duration_time:22.7067 stream_index:0
out: pts:22707 pts_time:22.707 dts:22707 dts_time:22.707 duration:22707 duration_time:22.707 stream_index:0
in: pts:2047205 pts_time:22.7467 dts:2047205 dts_time:22.7467 duration:2047205 duration_time:22.7467 stream_index:0
out: pts:22747 pts_time:22.747 dts:22747 dts_time:22.747 duration:22747 duration_time:22.747 stream_index:0
in: pts:2050805 pts_time:22.7867 dts:2050805 dts_time:22.7867 duration:2050805 duration_time:22.7867 stream_index:0
out: pts:22787 pts_time:22.787 dts:22787 dts_time:22.787 duration:22787 duration_time:22.787 stream_index:0
in: pts:2054315 pts_time:22.8257 dts:2054315 dts_time:22.8257 duration:2054315 duration_time:22.8257 stream_index:0
out: pts:22826 pts_time:22.826 dts:22826 dts_time:22.826 duration:22826 duration_time:22.826 stream_index:0
in: pts:2058184 pts_time:22.8687 dts:2058184 dts_time:22.8687 duration:2058184 duration_time:22.8687 stream_index:0
out: pts:22869 pts_time:22.869 dts:22869 dts_time:22.869 duration:22869 duration_time:22.869 stream_index:0
in: pts:2061604 pts_time:22.9067 dts:2061604 dts_time:22.9067 duration:2061604 duration_time:22.9067 stream_index:0
out: pts:22907 pts_time:22.907 dts:22907 dts_time:22.907 duration:22907 duration_time:22.907 stream_index:0
in: pts:2065204 pts_time:22.9467 dts:2065204 dts_time:22.9467 duration:2065204 duration_time:22.9467 stream_index:0
out: pts:22947 pts_time:22.947 dts:22947 dts_time:22.947 duration:22947 duration_time:22.947 stream_index:0
in: pts:2068714 pts_time:22.9857 dts:2068714 dts_time:22.9857 duration:2068714 duration_time:22.9857 stream_index:0
out: pts:22986 pts_time:22.986 dts:22986 dts_time:22.986 duration:22986 duration_time:22.986 stream_index:0
in: pts:2072404 pts_time:23.0267 dts:2072404 dts_time:23.0267 duration:2072404 duration_time:23.0267 stream_index:0
out: pts:23027 pts_time:23.027 dts:23027 dts_time:23.027 duration:23027 duration_time:23.027 stream_index:0
in: pts:2076004 pts_time:23.0667 dts:2076004 dts_time:23.0667 duration:2076004 duration_time:23.0667 stream_index:0
out: pts:23067 pts_time:23.067 dts:23067 dts_time:23.067 duration:23067 duration_time:23.067 stream_index:0
in: pts:2079604 pts_time:23.1067 dts:2079604 dts_time:23.1067 duration:2079604 duration_time:23.1067 stream_index:0
out: pts:23107 pts_time:23.107 dts:23107 dts_time:23.107 duration:23107 duration_time:23.107 stream_index:0
in: pts:2083204 pts_time:23.1467 dts:2083204 dts_time:23.1467 duration:2083204 duration_time:23.1467 stream_index:0
out: pts:23147 pts_time:23.147 dts:23147 dts_time:23.147 duration:23147 duration_time:23.147 stream_index:0
in: pts:2086804 pts_time:23.1867 dts:2086804 dts_time:23.1867 duration:2086804 duration_time:23.1867 stream_index:0
out: pts:23187 pts_time:23.187 dts:23187 dts_time:23.187 duration:23187 duration_time:23.187 stream_index:0
in: pts:2090314 pts_time:23.2257 dts:2090314 dts_time:23.2257 duration:2090314 duration_time:23.2257 stream_index:0
out: pts:23226 pts_time:23.226 dts:23226 dts_time:23.226 duration:23226 duration_time:23.226 stream_index:0
in: pts:2094004 pts_time:23.2667 dts:2094004 dts_time:23.2667 duration:2094004 duration_time:23.2667 stream_index:0
out: pts:23267 pts_time:23.267 dts:23267 dts_time:23.267 duration:23267 duration_time:23.267 stream_index:0
in: pts:2097514 pts_time:23.3057 dts:2097514 dts_time:23.3057 duration:2097514 duration_time:23.3057 stream_index:0
out: pts:23306 pts_time:23.306 dts:23306 dts_time:23.306 duration:23306 duration_time:23.306 stream_index:0
in: pts:2101204 pts_time:23.3467 dts:2101204 dts_time:23.3467 duration:2101204 duration_time:23.3467 stream_index:0
out: pts:23347 pts_time:23.347 dts:23347 dts_time:23.347 duration:23347 duration_time:23.347 stream_index:0
in: pts:2104714 pts_time:23.3857 dts:2104714 dts_time:23.3857 duration:2104714 duration_time:23.3857 stream_index:0
out: pts:23386 pts_time:23.386 dts:23386 dts_time:23.386 duration:23386 duration_time:23.386 stream_index:0
in: pts:2108314 pts_time:23.4257 dts:2108314 dts_time:23.4257 duration:2108314 duration_time:23.4257 stream_index:0
out: pts:23426 pts_time:23.426 dts:23426 dts_time:23.426 duration:23426 duration_time:23.426 stream_index:0
in: pts:2111914 pts_time:23.4657 dts:2111914 dts_time:23.4657 duration:2111914 duration_time:23.4657 stream_index:0
out: pts:23466 pts_time:23.466 dts:23466 dts_time:23.466 duration:23466 duration_time:23.466 stream_index:0
in: pts:2115694 pts_time:23.5077 dts:2115694 dts_time:23.5077 duration:2115694 duration_time:23.5077 stream_index:0
out: pts:23508 pts_time:23.508 dts:23508 dts_time:23.508 duration:23508 duration_time:23.508 stream_index:0
in: pts:2119114 pts_time:23.5457 dts:2119114 dts_time:23.5457 duration:2119114 duration_time:23.5457 stream_index:0
out: pts:23546 pts_time:23.546 dts:23546 dts_time:23.546 duration:23546 duration_time:23.546 stream_index:0
in: pts:2123073 pts_time:23.5897 dts:2123073 dts_time:23.5897 duration:2123073 duration_time:23.5897 stream_index:0
out: pts:23590 pts_time:23.59 dts:23590 dts_time:23.59 duration:23590 duration_time:23.59 stream_index:0
in: pts:2126312 pts_time:23.6257 dts:2126312 dts_time:23.6257 duration:2126312 duration_time:23.6257 stream_index:0
out: pts:23626 pts_time:23.626 dts:23626 dts_time:23.626 duration:23626 duration_time:23.626 stream_index:0
in: pts:188416 pts_time:23.552 dts:188416 dts_time:23.552 duration:188416 duration_time:23.552 stream_index:1
out: pts:23552 pts_time:23.552 dts:23552 dts_time:23.552 duration:23552 duration_time:23.552 stream_index:1
in: pts:189440 pts_time:23.68 dts:189440 dts_time:23.68 duration:189440 duration_time:23.68 stream_index:1
out: pts:23680 pts_time:23.68 dts:23680 dts_time:23.68 duration:23680 duration_time:23.68 stream_index:1
in: pts:190464 pts_time:23.808 dts:190464 dts_time:23.808 duration:190464 duration_time:23.808 stream_index:1
out: pts:23808 pts_time:23.808 dts:23808 dts_time:23.808 duration:23808 duration_time:23.808 stream_index:1
in: pts:191488 pts_time:23.936 dts:191488 dts_time:23.936 duration:191488 duration_time:23.936 stream_index:1
out: pts:23936 pts_time:23.936 dts:23936 dts_time:23.936 duration:23936 duration_time:23.936 stream_index:1
in: pts:192512 pts_time:24.064 dts:192512 dts_time:24.064 duration:192512 duration_time:24.064 stream_index:1
out: pts:24064 pts_time:24.064 dts:24064 dts_time:24.064 duration:24064 duration_time:24.064 stream_index:1
in: pts:193536 pts_time:24.192 dts:193536 dts_time:24.192 duration:193536 duration_time:24.192 stream_index:1
out: pts:24192 pts_time:24.192 dts:24192 dts_time:24.192 duration:24192 duration_time:24.192 stream_index:1
in: pts:194560 pts_time:24.32 dts:194560 dts_time:24.32 duration:194560 duration_time:24.32 stream_index:1
out: pts:24320 pts_time:24.32 dts:24320 dts_time:24.32 duration:24320 duration_time:24.32 stream_index:1
in: pts:195584 pts_time:24.448 dts:195584 dts_time:24.448 duration:195584 duration_time:24.448 stream_index:1
out: pts:24448 pts_time:24.448 dts:24448 dts_time:24.448 duration:24448 duration_time:24.448 stream_index:1
in: pts:2129912 pts_time:23.6657 dts:2129912 dts_time:23.6657 duration:2129912 duration_time:23.6657 stream_index:0
out: pts:23666 pts_time:23.666 dts:23666 dts_time:23.666 duration:23666 duration_time:23.666 stream_index:0
in: pts:2133602 pts_time:23.7067 dts:2133602 dts_time:23.7067 duration:2133602 duration_time:23.7067 stream_index:0
out: pts:23707 pts_time:23.707 dts:23707 dts_time:23.707 duration:23707 duration_time:23.707 stream_index:0
in: pts:2137112 pts_time:23.7457 dts:2137112 dts_time:23.7457 duration:2137112 duration_time:23.7457 stream_index:0
out: pts:23746 pts_time:23.746 dts:23746 dts_time:23.746 duration:23746 duration_time:23.746 stream_index:0
in: pts:2140712 pts_time:23.7857 dts:2140712 dts_time:23.7857 duration:2140712 duration_time:23.7857 stream_index:0
out: pts:23786 pts_time:23.786 dts:23786 dts_time:23.786 duration:23786 duration_time:23.786 stream_index:0
in: pts:2144312 pts_time:23.8257 dts:2144312 dts_time:23.8257 duration:2144312 duration_time:23.8257 stream_index:0
out: pts:23826 pts_time:23.826 dts:23826 dts_time:23.826 duration:23826 duration_time:23.826 stream_index:0
in: pts:2147912 pts_time:23.8657 dts:2147912 dts_time:23.8657 duration:2147912 duration_time:23.8657 stream_index:0
out: pts:23866 pts_time:23.866 dts:23866 dts_time:23.866 duration:23866 duration_time:23.866 stream_index:0
in: pts:2151512 pts_time:23.9057 dts:2151512 dts_time:23.9057 duration:2151512 duration_time:23.9057 stream_index:0
out: pts:23906 pts_time:23.906 dts:23906 dts_time:23.906 duration:23906 duration_time:23.906 stream_index:0
in: pts:2155112 pts_time:23.9457 dts:2155112 dts_time:23.9457 duration:2155112 duration_time:23.9457 stream_index:0
out: pts:23946 pts_time:23.946 dts:23946 dts_time:23.946 duration:23946 duration_time:23.946 stream_index:0
in: pts:2158712 pts_time:23.9857 dts:2158712 dts_time:23.9857 duration:2158712 duration_time:23.9857 stream_index:0
out: pts:23986 pts_time:23.986 dts:23986 dts_time:23.986 duration:23986 duration_time:23.986 stream_index:0
in: pts:2162312 pts_time:24.0257 dts:2162312 dts_time:24.0257 duration:2162312 duration_time:24.0257 stream_index:0
out: pts:24026 pts_time:24.026 dts:24026 dts_time:24.026 duration:24026 duration_time:24.026 stream_index:0
in: pts:2165912 pts_time:24.0657 dts:2165912 dts_time:24.0657 duration:2165912 duration_time:24.0657 stream_index:0
out: pts:24066 pts_time:24.066 dts:24066 dts_time:24.066 duration:24066 duration_time:24.066 stream_index:0
in: pts:2169512 pts_time:24.1057 dts:2169512 dts_time:24.1057 duration:2169512 duration_time:24.1057 stream_index:0
out: pts:24106 pts_time:24.106 dts:24106 dts_time:24.106 duration:24106 duration_time:24.106 stream_index:0
in: pts:2173112 pts_time:24.1457 dts:2173112 dts_time:24.1457 duration:2173112 duration_time:24.1457 stream_index:0
out: pts:24146 pts_time:24.146 dts:24146 dts_time:24.146 duration:24146 duration_time:24.146 stream_index:0
in: pts:2176712 pts_time:24.1857 dts:2176712 dts_time:24.1857 duration:2176712 duration_time:24.1857 stream_index:0
out: pts:24186 pts_time:24.186 dts:24186 dts_time:24.186 duration:24186 duration_time:24.186 stream_index:0
in: pts:2180402 pts_time:24.2267 dts:2180402 dts_time:24.2267 duration:2180402 duration_time:24.2267 stream_index:0
out: pts:24227 pts_time:24.227 dts:24227 dts_time:24.227 duration:24227 duration_time:24.227 stream_index:0
in: pts:2183912 pts_time:24.2657 dts:2183912 dts_time:24.2657 duration:2183912 duration_time:24.2657 stream_index:0
out: pts:24266 pts_time:24.266 dts:24266 dts_time:24.266 duration:24266 duration_time:24.266 stream_index:0
in: pts:2187602 pts_time:24.3067 dts:2187602 dts_time:24.3067 duration:2187602 duration_time:24.3067 stream_index:0
out: pts:24307 pts_time:24.307 dts:24307 dts_time:24.307 duration:24307 duration_time:24.307 stream_index:0
in: pts:2191112 pts_time:24.3457 dts:2191112 dts_time:24.3457 duration:2191112 duration_time:24.3457 stream_index:0
out: pts:24346 pts_time:24.346 dts:24346 dts_time:24.346 duration:24346 duration_time:24.346 stream_index:0
in: pts:2194712 pts_time:24.3857 dts:2194712 dts_time:24.3857 duration:2194712 duration_time:24.3857 stream_index:0
out: pts:24386 pts_time:24.386 dts:24386 dts_time:24.386 duration:24386 duration_time:24.386 stream_index:0
in: pts:2198312 pts_time:24.4257 dts:2198312 dts_time:24.4257 duration:2198312 duration_time:24.4257 stream_index:0
out: pts:24426 pts_time:24.426 dts:24426 dts_time:24.426 duration:24426 duration_time:24.426 stream_index:0
in: pts:2202002 pts_time:24.4667 dts:2202002 dts_time:24.4667 duration:2202002 duration_time:24.4667 stream_index:0
out: pts:24467 pts_time:24.467 dts:24467 dts_time:24.467 duration:24467 duration_time:24.467 stream_index:0
in: pts:2205512 pts_time:24.5057 dts:2205512 dts_time:24.5057 duration:2205512 duration_time:24.5057 stream_index:0
out: pts:24506 pts_time:24.506 dts:24506 dts_time:24.506 duration:24506 duration_time:24.506 stream_index:0
in: pts:2209112 pts_time:24.5457 dts:2209112 dts_time:24.5457 duration:2209112 duration_time:24.5457 stream_index:0
out: pts:24546 pts_time:24.546 dts:24546 dts_time:24.546 duration:24546 duration_time:24.546 stream_index:0
in: pts:2212712 pts_time:24.5857 dts:2212712 dts_time:24.5857 duration:2212712 duration_time:24.5857 stream_index:0
out: pts:24586 pts_time:24.586 dts:24586 dts_time:24.586 duration:24586 duration_time:24.586 stream_index:0
in: pts:2216402 pts_time:24.6267 dts:2216402 dts_time:24.6267 duration:2216402 duration_time:24.6267 stream_index:0
out: pts:24627 pts_time:24.627 dts:24627 dts_time:24.627 duration:24627 duration_time:24.627 stream_index:0
in: pts:196608 pts_time:24.576 dts:196608 dts_time:24.576 duration:196608 duration_time:24.576 stream_index:1
out: pts:24576 pts_time:24.576 dts:24576 dts_time:24.576 duration:24576 duration_time:24.576 stream_index:1
in: pts:197632 pts_time:24.704 dts:197632 dts_time:24.704 duration:197632 duration_time:24.704 stream_index:1
out: pts:24704 pts_time:24.704 dts:24704 dts_time:24.704 duration:24704 duration_time:24.704 stream_index:1
in: pts:198656 pts_time:24.832 dts:198656 dts_time:24.832 duration:198656 duration_time:24.832 stream_index:1
out: pts:24832 pts_time:24.832 dts:24832 dts_time:24.832 duration:24832 duration_time:24.832 stream_index:1
in: pts:199680 pts_time:24.96 dts:199680 dts_time:24.96 duration:199680 duration_time:24.96 stream_index:1
out: pts:24960 pts_time:24.96 dts:24960 dts_time:24.96 duration:24960 duration_time:24.96 stream_index:1
in: pts:200704 pts_time:25.088 dts:200704 dts_time:25.088 duration:200704 duration_time:25.088 stream_index:1
out: pts:25088 pts_time:25.088 dts:25088 dts_time:25.088 duration:25088 duration_time:25.088 stream_index:1
in: pts:201728 pts_time:25.216 dts:201728 dts_time:25.216 duration:201728 duration_time:25.216 stream_index:1
out: pts:25216 pts_time:25.216 dts:25216 dts_time:25.216 duration:25216 duration_time:25.216 stream_index:1
in: pts:202752 pts_time:25.344 dts:202752 dts_time:25.344 duration:202752 duration_time:25.344 stream_index:1
out: pts:25344 pts_time:25.344 dts:25344 dts_time:25.344 duration:25344 duration_time:25.344 stream_index:1
in: pts:203776 pts_time:25.472 dts:203776 dts_time:25.472 duration:203776 duration_time:25.472 stream_index:1
out: pts:25472 pts_time:25.472 dts:25472 dts_time:25.472 duration:25472 duration_time:25.472 stream_index:1
in: pts:2220271 pts_time:24.6697 dts:2220271 dts_time:24.6697 duration:2220271 duration_time:24.6697 stream_index:0
out: pts:24670 pts_time:24.67 dts:24670 dts_time:24.67 duration:24670 duration_time:24.67 stream_index:0
in: pts:2223510 pts_time:24.7057 dts:2223510 dts_time:24.7057 duration:2223510 duration_time:24.7057 stream_index:0
out: pts:24706 pts_time:24.706 dts:24706 dts_time:24.706 duration:24706 duration_time:24.706 stream_index:0
in: pts:2227110 pts_time:24.7457 dts:2227110 dts_time:24.7457 duration:2227110 duration_time:24.7457 stream_index:0
out: pts:24746 pts_time:24.746 dts:24746 dts_time:24.746 duration:24746 duration_time:24.746 stream_index:0
in: pts:2230979 pts_time:24.7887 dts:2230979 dts_time:24.7887 duration:2230979 duration_time:24.7887 stream_index:0
out: pts:24789 pts_time:24.789 dts:24789 dts_time:24.789 duration:24789 duration_time:24.789 stream_index:0
in: pts:2234399 pts_time:24.8267 dts:2234399 dts_time:24.8267 duration:2234399 duration_time:24.8267 stream_index:0
out: pts:24827 pts_time:24.827 dts:24827 dts_time:24.827 duration:24827 duration_time:24.827 stream_index:0
in: pts:2237909 pts_time:24.8657 dts:2237909 dts_time:24.8657 duration:2237909 duration_time:24.8657 stream_index:0
out: pts:24866 pts_time:24.866 dts:24866 dts_time:24.866 duration:24866 duration_time:24.866 stream_index:0
in: pts:2241509 pts_time:24.9057 dts:2241509 dts_time:24.9057 duration:2241509 duration_time:24.9057 stream_index:0
out: pts:24906 pts_time:24.906 dts:24906 dts_time:24.906 duration:24906 duration_time:24.906 stream_index:0
in: pts:2245109 pts_time:24.9457 dts:2245109 dts_time:24.9457 duration:2245109 duration_time:24.9457 stream_index:0
out: pts:24946 pts_time:24.946 dts:24946 dts_time:24.946 duration:24946 duration_time:24.946 stream_index:0
in: pts:2248709 pts_time:24.9857 dts:2248709 dts_time:24.9857 duration:2248709 duration_time:24.9857 stream_index:0
out: pts:24986 pts_time:24.986 dts:24986 dts_time:24.986 duration:24986 duration_time:24.986 stream_index:0
in: pts:2252309 pts_time:25.0257 dts:2252309 dts_time:25.0257 duration:2252309 duration_time:25.0257 stream_index:0
out: pts:25026 pts_time:25.026 dts:25026 dts_time:25.026 duration:25026 duration_time:25.026 stream_index:0
in: pts:2255909 pts_time:25.0657 dts:2255909 dts_time:25.0657 duration:2255909 duration_time:25.0657 stream_index:0
out: pts:25066 pts_time:25.066 dts:25066 dts_time:25.066 duration:25066 duration_time:25.066 stream_index:0
in: pts:2259599 pts_time:25.1067 dts:2259599 dts_time:25.1067 duration:2259599 duration_time:25.1067 stream_index:0
out: pts:25107 pts_time:25.107 dts:25107 dts_time:25.107 duration:25107 duration_time:25.107 stream_index:0
in: pts:2263109 pts_time:25.1457 dts:2263109 dts_time:25.1457 duration:2263109 duration_time:25.1457 stream_index:0
out: pts:25146 pts_time:25.146 dts:25146 dts_time:25.146 duration:25146 duration_time:25.146 stream_index:0
in: pts:2266709 pts_time:25.1857 dts:2266709 dts_time:25.1857 duration:2266709 duration_time:25.1857 stream_index:0
out: pts:25186 pts_time:25.186 dts:25186 dts_time:25.186 duration:25186 duration_time:25.186 stream_index:0
in: pts:2270309 pts_time:25.2257 dts:2270309 dts_time:25.2257 duration:2270309 duration_time:25.2257 stream_index:0
out: pts:25226 pts_time:25.226 dts:25226 dts_time:25.226 duration:25226 duration_time:25.226 stream_index:0
in: pts:2273909 pts_time:25.2657 dts:2273909 dts_time:25.2657 duration:2273909 duration_time:25.2657 stream_index:0
out: pts:25266 pts_time:25.266 dts:25266 dts_time:25.266 duration:25266 duration_time:25.266 stream_index:0
in: pts:2277509 pts_time:25.3057 dts:2277509 dts_time:25.3057 duration:2277509 duration_time:25.3057 stream_index:0
out: pts:25306 pts_time:25.306 dts:25306 dts_time:25.306 duration:25306 duration_time:25.306 stream_index:0
in: pts:2281109 pts_time:25.3457 dts:2281109 dts_time:25.3457 duration:2281109 duration_time:25.3457 stream_index:0
out: pts:25346 pts_time:25.346 dts:25346 dts_time:25.346 duration:25346 duration_time:25.346 stream_index:0
in: pts:2284709 pts_time:25.3857 dts:2284709 dts_time:25.3857 duration:2284709 duration_time:25.3857 stream_index:0
out: pts:25386 pts_time:25.386 dts:25386 dts_time:25.386 duration:25386 duration_time:25.386 stream_index:0
in: pts:2288309 pts_time:25.4257 dts:2288309 dts_time:25.4257 duration:2288309 duration_time:25.4257 stream_index:0
out: pts:25426 pts_time:25.426 dts:25426 dts_time:25.426 duration:25426 duration_time:25.426 stream_index:0
in: pts:2291909 pts_time:25.4657 dts:2291909 dts_time:25.4657 duration:2291909 duration_time:25.4657 stream_index:0
out: pts:25466 pts_time:25.466 dts:25466 dts_time:25.466 duration:25466 duration_time:25.466 stream_index:0
in: pts:2295509 pts_time:25.5057 dts:2295509 dts_time:25.5057 duration:2295509 duration_time:25.5057 stream_index:0
out: pts:25506 pts_time:25.506 dts:25506 dts_time:25.506 duration:25506 duration_time:25.506 stream_index:0
in: pts:2299109 pts_time:25.5457 dts:2299109 dts_time:25.5457 duration:2299109 duration_time:25.5457 stream_index:0
out: pts:25546 pts_time:25.546 dts:25546 dts_time:25.546 duration:25546 duration_time:25.546 stream_index:0
in: pts:2302709 pts_time:25.5857 dts:2302709 dts_time:25.5857 duration:2302709 duration_time:25.5857 stream_index:0
out: pts:25586 pts_time:25.586 dts:25586 dts_time:25.586 duration:25586 duration_time:25.586 stream_index:0
in: pts:2306309 pts_time:25.6257 dts:2306309 dts_time:25.6257 duration:2306309 duration_time:25.6257 stream_index:0
out: pts:25626 pts_time:25.626 dts:25626 dts_time:25.626 duration:25626 duration_time:25.626 stream_index:0
in: pts:2309909 pts_time:25.6657 dts:2309909 dts_time:25.6657 duration:2309909 duration_time:25.6657 stream_index:0
out: pts:25666 pts_time:25.666 dts:25666 dts_time:25.666 duration:25666 duration_time:25.666 stream_index:0
in: pts:204800 pts_time:25.6 dts:204800 dts_time:25.6 duration:204800 duration_time:25.6 stream_index:1
out: pts:25600 pts_time:25.6 dts:25600 dts_time:25.6 duration:25600 duration_time:25.6 stream_index:1
in: pts:205824 pts_time:25.728 dts:205824 dts_time:25.728 duration:205824 duration_time:25.728 stream_index:1
out: pts:25728 pts_time:25.728 dts:25728 dts_time:25.728 duration:25728 duration_time:25.728 stream_index:1
in: pts:206848 pts_time:25.856 dts:206848 dts_time:25.856 duration:206848 duration_time:25.856 stream_index:1
out: pts:25856 pts_time:25.856 dts:25856 dts_time:25.856 duration:25856 duration_time:25.856 stream_index:1
in: pts:207872 pts_time:25.984 dts:207872 dts_time:25.984 duration:207872 duration_time:25.984 stream_index:1
out: pts:25984 pts_time:25.984 dts:25984 dts_time:25.984 duration:25984 duration_time:25.984 stream_index:1
in: pts:208896 pts_time:26.112 dts:208896 dts_time:26.112 duration:208896 duration_time:26.112 stream_index:1
out: pts:26112 pts_time:26.112 dts:26112 dts_time:26.112 duration:26112 duration_time:26.112 stream_index:1
in: pts:209920 pts_time:26.24 dts:209920 dts_time:26.24 duration:209920 duration_time:26.24 stream_index:1
out: pts:26240 pts_time:26.24 dts:26240 dts_time:26.24 duration:26240 duration_time:26.24 stream_index:1
in: pts:210944 pts_time:26.368 dts:210944 dts_time:26.368 duration:210944 duration_time:26.368 stream_index:1
out: pts:26368 pts_time:26.368 dts:26368 dts_time:26.368 duration:26368 duration_time:26.368 stream_index:1
in: pts:211968 pts_time:26.496 dts:211968 dts_time:26.496 duration:211968 duration_time:26.496 stream_index:1
out: pts:26496 pts_time:26.496 dts:26496 dts_time:26.496 duration:26496 duration_time:26.496 stream_index:1
in: pts:2313509 pts_time:25.7057 dts:2313509 dts_time:25.7057 duration:2313509 duration_time:25.7057 stream_index:0
out: pts:25706 pts_time:25.706 dts:25706 dts_time:25.706 duration:25706 duration_time:25.706 stream_index:0
in: pts:2317109 pts_time:25.7457 dts:2317109 dts_time:25.7457 duration:2317109 duration_time:25.7457 stream_index:0
out: pts:25746 pts_time:25.746 dts:25746 dts_time:25.746 duration:25746 duration_time:25.746 stream_index:0
in: pts:2320709 pts_time:25.7857 dts:2320709 dts_time:25.7857 duration:2320709 duration_time:25.7857 stream_index:0
out: pts:25786 pts_time:25.786 dts:25786 dts_time:25.786 duration:25786 duration_time:25.786 stream_index:0
in: pts:2324309 pts_time:25.8257 dts:2324309 dts_time:25.8257 duration:2324309 duration_time:25.8257 stream_index:0
out: pts:25826 pts_time:25.826 dts:25826 dts_time:25.826 duration:25826 duration_time:25.826 stream_index:0
in: pts:2327999 pts_time:25.8667 dts:2327999 dts_time:25.8667 duration:2327999 duration_time:25.8667 stream_index:0
out: pts:25867 pts_time:25.867 dts:25867 dts_time:25.867 duration:25867 duration_time:25.867 stream_index:0
in: pts:2331509 pts_time:25.9057 dts:2331509 dts_time:25.9057 duration:2331509 duration_time:25.9057 stream_index:0
out: pts:25906 pts_time:25.906 dts:25906 dts_time:25.906 duration:25906 duration_time:25.906 stream_index:0
in: pts:2335109 pts_time:25.9457 dts:2335109 dts_time:25.9457 duration:2335109 duration_time:25.9457 stream_index:0
out: pts:25946 pts_time:25.946 dts:25946 dts_time:25.946 duration:25946 duration_time:25.946 stream_index:0
in: pts:2338978 pts_time:25.9886 dts:2338978 dts_time:25.9886 duration:2338978 duration_time:25.9886 stream_index:0
out: pts:25989 pts_time:25.989 dts:25989 dts_time:25.989 duration:25989 duration_time:25.989 stream_index:0
in: pts:2342308 pts_time:26.0256 dts:2342308 dts_time:26.0256 duration:2342308 duration_time:26.0256 stream_index:0
out: pts:26026 pts_time:26.026 dts:26026 dts_time:26.026 duration:26026 duration_time:26.026 stream_index:0
in: pts:2345908 pts_time:26.0656 dts:2345908 dts_time:26.0656 duration:2345908 duration_time:26.0656 stream_index:0
out: pts:26066 pts_time:26.066 dts:26066 dts_time:26.066 duration:26066 duration_time:26.066 stream_index:0
in: pts:2349508 pts_time:26.1056 dts:2349508 dts_time:26.1056 duration:2349508 duration_time:26.1056 stream_index:0
out: pts:26106 pts_time:26.106 dts:26106 dts_time:26.106 duration:26106 duration_time:26.106 stream_index:0
in: pts:2353108 pts_time:26.1456 dts:2353108 dts_time:26.1456 duration:2353108 duration_time:26.1456 stream_index:0
out: pts:26146 pts_time:26.146 dts:26146 dts_time:26.146 duration:26146 duration_time:26.146 stream_index:0
in: pts:2356708 pts_time:26.1856 dts:2356708 dts_time:26.1856 duration:2356708 duration_time:26.1856 stream_index:0
out: pts:26186 pts_time:26.186 dts:26186 dts_time:26.186 duration:26186 duration_time:26.186 stream_index:0
in: pts:2360308 pts_time:26.2256 dts:2360308 dts_time:26.2256 duration:2360308 duration_time:26.2256 stream_index:0
out: pts:26226 pts_time:26.226 dts:26226 dts_time:26.226 duration:26226 duration_time:26.226 stream_index:0
in: pts:2363908 pts_time:26.2656 dts:2363908 dts_time:26.2656 duration:2363908 duration_time:26.2656 stream_index:0
out: pts:26266 pts_time:26.266 dts:26266 dts_time:26.266 duration:26266 duration_time:26.266 stream_index:0
in: pts:2367508 pts_time:26.3056 dts:2367508 dts_time:26.3056 duration:2367508 duration_time:26.3056 stream_index:0
out: pts:26306 pts_time:26.306 dts:26306 dts_time:26.306 duration:26306 duration_time:26.306 stream_index:0
in: pts:2371108 pts_time:26.3456 dts:2371108 dts_time:26.3456 duration:2371108 duration_time:26.3456 stream_index:0
out: pts:26346 pts_time:26.346 dts:26346 dts_time:26.346 duration:26346 duration_time:26.346 stream_index:0
in: pts:2374708 pts_time:26.3856 dts:2374708 dts_time:26.3856 duration:2374708 duration_time:26.3856 stream_index:0
out: pts:26386 pts_time:26.386 dts:26386 dts_time:26.386 duration:26386 duration_time:26.386 stream_index:0
in: pts:2378308 pts_time:26.4256 dts:2378308 dts_time:26.4256 duration:2378308 duration_time:26.4256 stream_index:0
out: pts:26426 pts_time:26.426 dts:26426 dts_time:26.426 duration:26426 duration_time:26.426 stream_index:0
in: pts:2381908 pts_time:26.4656 dts:2381908 dts_time:26.4656 duration:2381908 duration_time:26.4656 stream_index:0
out: pts:26466 pts_time:26.466 dts:26466 dts_time:26.466 duration:26466 duration_time:26.466 stream_index:0
in: pts:2385598 pts_time:26.5066 dts:2385598 dts_time:26.5066 duration:2385598 duration_time:26.5066 stream_index:0
out: pts:26507 pts_time:26.507 dts:26507 dts_time:26.507 duration:26507 duration_time:26.507 stream_index:0
in: pts:2389198 pts_time:26.5466 dts:2389198 dts_time:26.5466 duration:2389198 duration_time:26.5466 stream_index:0
out: pts:26547 pts_time:26.547 dts:26547 dts_time:26.547 duration:26547 duration_time:26.547 stream_index:0
in: pts:2392708 pts_time:26.5856 dts:2392708 dts_time:26.5856 duration:2392708 duration_time:26.5856 stream_index:0
out: pts:26586 pts_time:26.586 dts:26586 dts_time:26.586 duration:26586 duration_time:26.586 stream_index:0
in: pts:2396308 pts_time:26.6256 dts:2396308 dts_time:26.6256 duration:2396308 duration_time:26.6256 stream_index:0
out: pts:26626 pts_time:26.626 dts:26626 dts_time:26.626 duration:26626 duration_time:26.626 stream_index:0
in: pts:2399908 pts_time:26.6656 dts:2399908 dts_time:26.6656 duration:2399908 duration_time:26.6656 stream_index:0
out: pts:26666 pts_time:26.666 dts:26666 dts_time:26.666 duration:26666 duration_time:26.666 stream_index:0
in: pts:212992 pts_time:26.624 dts:212992 dts_time:26.624 duration:212992 duration_time:26.624 stream_index:1
out: pts:26624 pts_time:26.624 dts:26624 dts_time:26.624 duration:26624 duration_time:26.624 stream_index:1
in: pts:214016 pts_time:26.752 dts:214016 dts_time:26.752 duration:214016 duration_time:26.752 stream_index:1
out: pts:26752 pts_time:26.752 dts:26752 dts_time:26.752 duration:26752 duration_time:26.752 stream_index:1
in: pts:215040 pts_time:26.88 dts:215040 dts_time:26.88 duration:215040 duration_time:26.88 stream_index:1
out: pts:26880 pts_time:26.88 dts:26880 dts_time:26.88 duration:26880 duration_time:26.88 stream_index:1
in: pts:216064 pts_time:27.008 dts:216064 dts_time:27.008 duration:216064 duration_time:27.008 stream_index:1
out: pts:27008 pts_time:27.008 dts:27008 dts_time:27.008 duration:27008 duration_time:27.008 stream_index:1
in: pts:217088 pts_time:27.136 dts:217088 dts_time:27.136 duration:217088 duration_time:27.136 stream_index:1
out: pts:27136 pts_time:27.136 dts:27136 dts_time:27.136 duration:27136 duration_time:27.136 stream_index:1
in: pts:218112 pts_time:27.264 dts:218112 dts_time:27.264 duration:218112 duration_time:27.264 stream_index:1
out: pts:27264 pts_time:27.264 dts:27264 dts_time:27.264 duration:27264 duration_time:27.264 stream_index:1
in: pts:219136 pts_time:27.392 dts:219136 dts_time:27.392 duration:219136 duration_time:27.392 stream_index:1
out: pts:27392 pts_time:27.392 dts:27392 dts_time:27.392 duration:27392 duration_time:27.392 stream_index:1
in: pts:220160 pts_time:27.52 dts:220160 dts_time:27.52 duration:220160 duration_time:27.52 stream_index:1
out: pts:27520 pts_time:27.52 dts:27520 dts_time:27.52 duration:27520 duration_time:27.52 stream_index:1
in: pts:2403598 pts_time:26.7066 dts:2403598 dts_time:26.7066 duration:2403598 duration_time:26.7066 stream_index:0
out: pts:26707 pts_time:26.707 dts:26707 dts_time:26.707 duration:26707 duration_time:26.707 stream_index:0
in: pts:2407108 pts_time:26.7456 dts:2407108 dts_time:26.7456 duration:2407108 duration_time:26.7456 stream_index:0
out: pts:26746 pts_time:26.746 dts:26746 dts_time:26.746 duration:26746 duration_time:26.746 stream_index:0
in: pts:2410708 pts_time:26.7856 dts:2410708 dts_time:26.7856 duration:2410708 duration_time:26.7856 stream_index:0
out: pts:26786 pts_time:26.786 dts:26786 dts_time:26.786 duration:26786 duration_time:26.786 stream_index:0
in: pts:2414308 pts_time:26.8256 dts:2414308 dts_time:26.8256 duration:2414308 duration_time:26.8256 stream_index:0
out: pts:26826 pts_time:26.826 dts:26826 dts_time:26.826 duration:26826 duration_time:26.826 stream_index:0
in: pts:2417908 pts_time:26.8656 dts:2417908 dts_time:26.8656 duration:2417908 duration_time:26.8656 stream_index:0
out: pts:26866 pts_time:26.866 dts:26866 dts_time:26.866 duration:26866 duration_time:26.866 stream_index:0
in: pts:2421508 pts_time:26.9056 dts:2421508 dts_time:26.9056 duration:2421508 duration_time:26.9056 stream_index:0
out: pts:26906 pts_time:26.906 dts:26906 dts_time:26.906 duration:26906 duration_time:26.906 stream_index:0
in: pts:2425108 pts_time:26.9456 dts:2425108 dts_time:26.9456 duration:2425108 duration_time:26.9456 stream_index:0
out: pts:26946 pts_time:26.946 dts:26946 dts_time:26.946 duration:26946 duration_time:26.946 stream_index:0
in: pts:2428708 pts_time:26.9856 dts:2428708 dts_time:26.9856 duration:2428708 duration_time:26.9856 stream_index:0
out: pts:26986 pts_time:26.986 dts:26986 dts_time:26.986 duration:26986 duration_time:26.986 stream_index:0
in: pts:2432308 pts_time:27.0256 dts:2432308 dts_time:27.0256 duration:2432308 duration_time:27.0256 stream_index:0
out: pts:27026 pts_time:27.026 dts:27026 dts_time:27.026 duration:27026 duration_time:27.026 stream_index:0
in: pts:2435908 pts_time:27.0656 dts:2435908 dts_time:27.0656 duration:2435908 duration_time:27.0656 stream_index:0
out: pts:27066 pts
_time:27.066 dts:27066 dts_time:27.066 duration:27066 duration_time:27.066 stream_index:0
in: pts:2439508 pts_time:27.1056 dts:2439508 dts_time:27.1056 duration:2439508 duration_time:27.1056 stream_index:0
out: pts:27106 pts_time:27.106 dts:27106 dts_time:27.106 duration:27106 duration_time:27.106 stream_index:0
in: pts:2443108 pts_time:27.1456 dts:2443108 dts_time:27.1456 duration:2443108 duration_time:27.1456 stream_index:0
out: pts:27146 pts_time:27.146 dts:27146 dts_time:27.146 duration:27146 duration_time:27.146 stream_index:0
in: pts:2446977 pts_time:27.1886 dts:2446977 dts_time:27.1886 duration:2446977 duration_time:27.1886 stream_index:0
out: pts:27189 pts_time:27.189 dts:27189 dts_time:27.189 duration:27189 duration_time:27.189 stream_index:0
in: pts:2450307 pts_time:27.2256 dts:2450307 dts_time:27.2256 duration:2450307 duration_time:27.2256 stream_index:0
out: pts:27226 pts_time:27.226 dts:27226 dts_time:27.226 duration:27226 duration_time:27.226 stream_index:0
in: pts:2453907 pts_time:27.2656 dts:2453907 dts_time:27.2656 duration:2453907 duration_time:27.2656 stream_index:0
out: pts:27266 pts_time:27.266 dts:27266 dts_time:27.266 duration:27266 duration_time:27.266 stream_index:0
in: pts:2457417 pts_time:27.3046 dts:2457417 dts_time:27.3046 duration:2457417 duration_time:27.3046 stream_index:0
out: pts:27305 pts_time:27.305 dts:27305 dts_time:27.305 duration:27305 duration_time:27.305 stream_index:0
in: pts:2461107 pts_time:27.3456 dts:2461107 dts_time:27.3456 duration:2461107 duration_time:27.3456 stream_index:0
out: pts:27346 pts_time:27.346 dts:27346 dts_time:27.346 duration:27346 duration_time:27.346 stream_index:0
in: pts:2464707 pts_time:27.3856 dts:2464707 dts_time:27.3856 duration:2464707 duration_time:27.3856 stream_index:0
out: pts:27386 pts_time:27.386 dts:27386 dts_time:27.386 duration:27386 duration_time:27.386 stream_index:0
in: pts:2468307 pts_time:27.4256 dts:2468307 dts_time:27.4256 duration:2468307 duration_time:27.4256 stream_index:0
out: pts:27426 pts_time:27.426 dts:27426 dts_time:27.426 duration:27426 duration_time:27.426 stream_index:0
in: pts:2471907 pts_time:27.4656 dts:2471907 dts_time:27.4656 duration:2471907 duration_time:27.4656 stream_index:0
out: pts:27466 pts_time:27.466 dts:27466 dts_time:27.466 duration:27466 duration_time:27.466 stream_index:0
in: pts:2475507 pts_time:27.5056 dts:2475507 dts_time:27.5056 duration:2475507 duration_time:27.5056 stream_index:0
out: pts:27506 pts_time:27.506 dts:27506 dts_time:27.506 duration:27506 duration_time:27.506 stream_index:0
in: pts:2479017 pts_time:27.5446 dts:2479017 dts_time:27.5446 duration:2479017 duration_time:27.5446 stream_index:0
out: pts:27545 pts_time:27.545 dts:27545 dts_time:27.545 duration:27545 duration_time:27.545 stream_index:0
in: pts:2482707 pts_time:27.5856 dts:2482707 dts_time:27.5856 duration:2482707 duration_time:27.5856 stream_index:0
out: pts:27586 pts_time:27.586 dts:27586 dts_time:27.586 duration:27586 duration_time:27.586 stream_index:0
in: pts:2486307 pts_time:27.6256 dts:2486307 dts_time:27.6256 duration:2486307 duration_time:27.6256 stream_index:0
out: pts:27626 pts_time:27.626 dts:27626 dts_time:27.626 duration:27626 duration_time:27.626 stream_index:0
in: pts:2489907 pts_time:27.6656 dts:2489907 dts_time:27.6656 duration:2489907 duration_time:27.6656 stream_index:0
out: pts:27666 pts_time:27.666 dts:27666 dts_time:27.666 duration:27666 duration_time:27.666 stream_index:0
in: pts:2493507 pts_time:27.7056 dts:2493507 dts_time:27.7056 duration:2493507 duration_time:27.7056 stream_index:0
out: pts:27706 pts_time:27.706 dts:27706 dts_time:27.706 duration:27706 duration_time:27.706 stream_index:0
in: pts:221184 pts_time:27.648 dts:221184 dts_time:27.648 duration:221184 duration_time:27.648 stream_index:1
out: pts:27648 pts_time:27.648 dts:27648 dts_time:27.648 duration:27648 duration_time:27.648 stream_index:1
in: pts:222208 pts_time:27.776 dts:222208 dts_time:27.776 duration:222208 duration_time:27.776 stream_index:1
out: pts:27776 pts_time:27.776 dts:27776 dts_time:27.776 duration:27776 duration_time:27.776 stream_index:1
in: pts:223232 pts_time:27.904 dts:223232 dts_time:27.904 duration:223232 duration_time:27.904 stream_index:1
out: pts:27904 pts_time:27.904 dts:27904 dts_time:27.904 duration:27904 duration_time:27.904 stream_index:1
in: pts:224256 pts_time:28.032 dts:224256 dts_time:28.032 duration:224256 duration_time:28.032 stream_index:1
out: pts:28032 pts_time:28.032 dts:28032 dts_time:28.032 duration:28032 duration_time:28.032 stream_index:1
in: pts:225280 pts_time:28.16 dts:225280 dts_time:28.16 duration:225280 duration_time:28.16 stream_index:1
out: pts:28160 pts_time:28.16 dts:28160 dts_time:28.16 duration:28160 duration_time:28.16 stream_index:1
in: pts:226304 pts_time:28.288 dts:226304 dts_time:28.288 duration:226304 duration_time:28.288 stream_index:1
out: pts:28288 pts_time:28.288 dts:28288 dts_time:28.288 duration:28288 duration_time:28.288 stream_index:1
in: pts:227328 pts_time:28.416 dts:227328 dts_time:28.416 duration:227328 duration_time:28.416 stream_index:1
out: pts:28416 pts_time:28.416 dts:28416 dts_time:28.416 duration:28416 duration_time:28.416 stream_index:1
in: pts:228352 pts_time:28.544 dts:228352 dts_time:28.544 duration:228352 duration_time:28.544 stream_index:1
out: pts:28544 pts_time:28.544 dts:28544 dts_time:28.544 duration:28544 duration_time:28.544 stream_index:1
in: pts:2497107 pts_time:27.7456 dts:2497107 dts_time:27.7456 duration:2497107 duration_time:27.7456 stream_index:0
out: pts:27746 pts_time:27.746 dts:27746 dts_time:27.746 duration:27746 duration_time:27.746 stream_index:0
in: pts:2500707 pts_time:27.7856 dts:2500707 dts_time:27.7856 duration:2500707 duration_time:27.7856 stream_index:0
out: pts:27786 pts_time:27.786 dts:27786 dts_time:27.786 duration:27786 duration_time:27.786 stream_index:0
in: pts:2504576 pts_time:27.8286 dts:2504576 dts_time:27.8286 duration:2504576 duration_time:27.8286 stream_index:0
out: pts:27829 pts_time:27.829 dts:27829 dts_time:27.829 duration:27829 duration_time:27.829 stream_index:0
in: pts:2507906 pts_time:27.8656 dts:2507906 dts_time:27.8656 duration:2507906 duration_time:27.8656 stream_index:0
out: pts:27866 pts_time:27.866 dts:27866 dts_time:27.866 duration:27866 duration_time:27.866 stream_index:0
in: pts:2511416 pts_time:27.9046 dts:2511416 dts_time:27.9046 duration:2511416 duration_time:27.9046 stream_index:0
out: pts:27905 pts_time:27.905 dts:27905 dts_time:27.905 duration:27905 duration_time:27.905 stream_index:0
in: pts:2515106 pts_time:27.9456 dts:2515106 dts_time:27.9456 duration:2515106 duration_time:27.9456 stream_index:0
out: pts:27946 pts_time:27.946 dts:27946 dts_time:27.946 duration:27946 duration_time:27.946 stream_index:0
in: pts:2518706 pts_time:27.9856 dts:2518706 dts_time:27.9856 duration:2518706 duration_time:27.9856 stream_index:0
out: pts:27986 pts_time:27.986 dts:27986 dts_time:27.986 duration:27986 duration_time:27.986 stream_index:0
in: pts:2522306 pts_time:28.0256 dts:2522306 dts_time:28.0256 duration:2522306 duration_time:28.0256 stream_index:0
out: pts:28026 pts_time:28.026 dts:28026 dts_time:28.026 duration:28026 duration_time:28.026 stream_index:0
in: pts:2525906 pts_time:28.0656 dts:2525906 dts_time:28.0656 duration:2525906 duration_time:28.0656 stream_index:0
out: pts:28066 pts_time:28.066 dts:28066 dts_time:28.066 duration:28066 duration_time:28.066 stream_index:0
in: pts:2529506 pts_time:28.1056 dts:2529506 dts_time:28.1056 duration:2529506 duration_time:28.1056 stream_index:0
out: pts:28106 pts_time:28.106 dts:28106 dts_time:28.106 duration:28106 duration_time:28.106 stream_index:0
in: pts:2533016 pts_time:28.1446 dts:2533016 dts_time:28.1446 duration:2533016 duration_time:28.1446 stream_index:0
out: pts:28145 pts_time:28.145 dts:28145 dts_time:28.145 duration:28145 duration_time:28.145 stream_index:0
in: pts:2536706 pts_time:28.1856 dts:2536706 dts_time:28.1856 duration:2536706 duration_time:28.1856 stream_index:0
out: pts:28186 pts_time:28.186 dts:28186 dts_time:28.186 duration:28186 duration_time:28.186 stream_index:0
in: pts:2540216 pts_time:28.2246 dts:2540216 dts_time:28.2246 duration:2540216 duration_time:28.2246 stream_index:0
out: pts:28225 pts_time:28.225 dts:28225 dts_time:28.225 duration:28225 duration_time:28.225 stream_index:0
in: pts:2543906 pts_time:28.2656 dts:2543906 dts_time:28.2656 duration:2543906 duration_time:28.2656 stream_index:0
out: pts:28266 pts_time:28.266 dts:28266 dts_time:28.266 duration:28266 duration_time:28.266 stream_index:0
in: pts:2547416 pts_time:28.3046 dts:2547416 dts_time:28.3046 duration:2547416 duration_time:28.3046 stream_index:0
out: pts:28305 pts_time:28.305 dts:28305 dts_time:28.305 duration:28305 duration_time:28.305 stream_index:0
in: pts:2551016 pts_time:28.3446 dts:2551016 dts_time:28.3446 duration:2551016 duration_time:28.3446 stream_index:0
out: pts:28345 pts_time:28.345 dts:28345 dts_time:28.345 duration:28345 duration_time:28.345 stream_index:0
in: pts:2554885 pts_time:28.3876 dts:2554885 dts_time:28.3876 duration:2554885 duration_time:28.3876 stream_index:0
out: pts:28388 pts_time:28.388 dts:28388 dts_time:28.388 duration:28388 duration_time:28.388 stream_index:0
in: pts:2558305 pts_time:28.4256 dts:2558305 dts_time:28.4256 duration:2558305 duration_time:28.4256 stream_index:0
out: pts:28426 pts_time:28.426 dts:28426 dts_time:28.426 duration:28426 duration_time:28.426 stream_index:0
in: pts:2561905 pts_time:28.4656 dts:2561905 dts_time:28.4656 duration:2561905 duration_time:28.4656 stream_index:0
out: pts:28466 pts_time:28.466 dts:28466 dts_time:28.466 duration:28466 duration_time:28.466 stream_index:0
in: pts:2565505 pts_time:28.5056 dts:2565505 dts_time:28.5056 duration:2565505 duration_time:28.5056 stream_index:0
out: pts:28506 pts_time:28.506 dts:28506 dts_time:28.506 duration:28506 duration_time:28.506 stream_index:0
in: pts:2569105 pts_time:28.5456 dts:2569105 dts_time:28.5456 duration:2569105 duration_time:28.5456 stream_index:0
out: pts:28546 pts_time:28.546 dts:28546 dts_time:28.546 duration:28546 duration_time:28.546 stream_index:0
in: pts:2572705 pts_time:28.5856 dts:2572705 dts_time:28.5856 duration:2572705 duration_time:28.5856 stream_index:0
out: pts:28586 pts_time:28.586 dts:28586 dts_time:28.586 duration:28586 duration_time:28.586 stream_index:0
in: pts:2576215 pts_time:28.6246 dts:2576215 dts_time:28.6246 duration:2576215 duration_time:28.6246 stream_index:0
out: pts:28625 pts_time:28.625 dts:28625 dts_time:28.625 duration:28625 duration_time:28.625 stream_index:0
in: pts:2579815 pts_time:28.6646 dts:2579815 dts_time:28.6646 duration:2579815 duration_time:28.6646 stream_index:0
out: pts:28665 pts_time:28.665 dts:28665 dts_time:28.665 duration:28665 duration_time:28.665 stream_index:0
in: pts:2583505 pts_time:28.7056 dts:2583505 dts_time:28.7056 duration:2583505 duration_time:28.7056 stream_index:0
out: pts:28706 pts_time:28.706 dts:28706 dts_time:28.706 duration:28706 duration_time:28.706 stream_index:0
in: pts:2587015 pts_time:28.7446 dts:2587015 dts_time:28.7446 duration:2587015 duration_time:28.7446 stream_index:0
out: pts:28745 pts_time:28.745 dts:28745 dts_time:28.745 duration:28745 duration_time:28.745 stream_index:0
in: pts:229376 pts_time:28.672 dts:229376 dts_time:28.672 duration:229376 duration_time:28.672 stream_index:1
out: pts:28672 pts_time:28.672 dts:28672 dts_time:28.672 duration:28672 duration_time:28.672 stream_index:1
in: pts:230400 pts_time:28.8 dts:230400 dts_time:28.8 duration:230400 duration_time:28.8 stream_index:1
out: pts:28800 pts_time:28.8 dts:28800 dts_time:28.8 duration:28800 duration_time:28.8 stream_index:1
in: pts:231424 pts_time:28.928 dts:231424 dts_time:28.928 duration:231424 duration_time:28.928 stream_index:1
out: pts:28928 pts_time:28.928 dts:28928 dts_time:28.928 duration:28928 duration_time:28.928 stream_index:1
in: pts:232448 pts_time:29.056 dts:232448 dts_time:29.056 duration:232448 duration_time:29.056 stream_index:1
out: pts:29056 pts_time:29.056 dts:29056 dts_time:29.056 duration:29056 duration_time:29.056 stream_index:1
in: pts:233472 pts_time:29.184 dts:233472 dts_time:29.184 duration:233472 duration_time:29.184 stream_index:1
out: pts:29184 pts_time:29.184 dts:29184 dts_time:29.184 duration:29184 duration_time:29.184 stream_index:1
in: pts:234496 pts_time:29.312 dts:234496 dts_time:29.312 duration:234496 duration_time:29.312 stream_index:1
out: pts:29312 pts_time:29.312 dts:29312 dts_time:29.312 duration:29312 duration_time:29.312 stream_index:1
in: pts:235520 pts_time:29.44 dts:235520 dts_time:29.44 duration:235520 duration_time:29.44 stream_index:1
out: pts:29440 pts_time:29.44 dts:29440 dts_time:29.44 duration:29440 duration_time:29.44 stream_index:1
in: pts:236544 pts_time:29.568 dts:236544 dts_time:29.568 duration:236544 duration_time:29.568 stream_index:1
out: pts:29568 pts_time:29.568 dts:29568 dts_time:29.568 duration:29568 duration_time:29.568 stream_index:1
in: pts:2590705 pts_time:28.7856 dts:2590705 dts_time:28.7856 duration:2590705 duration_time:28.7856 stream_index:0
out: pts:28786 pts_time:28.786 dts:28786 dts_time:28.786 duration:28786 duration_time:28.786 stream_index:0
in: pts:2594215 pts_time:28.8246 dts:2594215 dts_time:28.8246 duration:2594215 duration_time:28.8246 stream_index:0
out: pts:28825 pts_time:28.825 dts:28825 dts_time:28.825 duration:28825 duration_time:28.825 stream_index:0
in: pts:2597905 pts_time:28.8656 dts:2597905 dts_time:28.8656 duration:2597905 duration_time:28.8656 stream_index:0
out: pts:28866 pts_time:28.866 dts:28866 dts_time:28.866 duration:28866 duration_time:28.866 stream_index:0
in: pts:2601415 pts_time:28.9046 dts:2601415 dts_time:28.9046 duration:2601415 duration_time:28.9046 stream_index:0
out: pts:28905 pts_time:28.905 dts:28905 dts_time:28.905 duration:28905 duration_time:28.905 stream_index:0
in: pts:2605105 pts_time:28.9456 dts:2605105 dts_time:28.9456 duration:2605105 duration_time:28.9456 stream_index:0
out: pts:28946 pts_time:28.946 dts:28946 dts_time:28.946 duration:28946 duration_time:28.946 stream_index:0
in: pts:2608705 pts_time:28.9856 dts:2608705 dts_time:28.9856 duration:2608705 duration_time:28.9856 stream_index:0
out: pts:28986 pts_time:28.986 dts:28986 dts_time:28.986 duration:28986 duration_time:28.986 stream_index:0
in: pts:2612305 pts_time:29.0256 dts:2612305 dts_time:29.0256 duration:2612305 duration_time:29.0256 stream_index:0
out: pts:29026 pts_time:29.026 dts:29026 dts_time:29.026 duration:29026 duration_time:29.026 stream_index:0
in: pts:2615905 pts_time:29.0656 dts:2615905 dts_time:29.0656 duration:2615905 duration_time:29.0656 stream_index:0
out: pts:29066 pts_time:29.066 dts:29066 dts_time:29.066 duration:29066 duration_time:29.066 stream_index:0
in: pts:2619505 pts_time:29.1056 dts:2619505 dts_time:29.1056 duration:2619505 duration_time:29.1056 stream_index:0
out: pts:29106 pts_time:29.106 dts:29106 dts_time:29.106 duration:29106 duration_time:29.106 stream_index:0
in: pts:2623105 pts_time:29.1456 dts:2623105 dts_time:29.1456 duration:2623105 duration_time:29.1456 stream_index:0
out: pts:29146 pts_time:29.146 dts:29146 dts_time:29.146 duration:29146 duration_time:29.146 stream_index:0
in: pts:2626615 pts_time:29.1846 dts:2626615 dts_time:29.1846 duration:2626615 duration_time:29.1846 stream_index:0
out: pts:29185 pts_time:29.185 dts:29185 dts_time:29.185 duration:29185 duration_time:29.185 stream_index:0
in: pts:2630305 pts_time:29.2256 dts:2630305 dts_time:29.2256 duration:2630305 duration_time:29.2256 stream_index:0
out: pts:29226 pts_time:29.226 dts:29226 dts_time:29.226 duration:29226 duration_time:29.226 stream_index:0
in: pts:2634085 pts_time:29.2676 dts:2634085 dts_time:29.2676 duration:2634085 duration_time:29.2676 stream_index:0
out: pts:29268 pts_time:29.268 dts:29268 dts_time:29.268 duration:29268 duration_time:29.268 stream_index:0
in: pts:2637505 pts_time:29.3056 dts:2637505 dts_time:29.3056 duration:2637505 duration_time:29.3056 stream_index:0
out: pts:29306 pts_time:29.306 dts:29306 dts_time:29.306 duration:29306 duration_time:29.306 stream_index:0
in: pts:2641105 pts_time:29.3456 dts:2641105 dts_time:29.3456 duration:2641105 duration_time:29.3456 stream_index:0
out: pts:29346 pts_time:29.346 dts:29346 dts_time:29.346 duration:29346 duration_time:29.346 stream_index:0
in: pts:2644705 pts_time:29.3856 dts:2644705 dts_time:29.3856 duration:2644705 duration_time:29.3856 stream_index:0
out: pts:29386 pts_time:29.386 dts:29386 dts_time:29.386 duration:29386 duration_time:29.386 stream_index:0
in: pts:2648215 pts_time:29.4246 dts:2648215 dts_time:29.4246 duration:2648215 duration_time:29.4246 stream_index:0
out: pts:29425 pts_time:29.425 dts:29425 dts_time:29.425 duration:29425 duration_time:29.425 stream_index:0
in: pts:2651905 pts_time:29.4656 dts:2651905 dts_time:29.4656 duration:2651905 duration_time:29.4656 stream_index:0
out: pts:29466 pts_time:29.466 dts:29466 dts_time:29.466 duration:29466 duration_time:29.466 stream_index:0
in: pts:2655505 pts_time:29.5056 dts:2655505 dts_time:29.5056 duration:2655505 duration_time:29.5056 stream_index:0
out: pts:29506 pts_time:29.506 dts:29506 dts_time:29.506 duration:29506 duration_time:29.506 stream_index:0
in: pts:2659195 pts_time:29.5466 dts:2659195 dts_time:29.5466 duration:2659195 duration_time:29.5466 stream_index:0
out: pts:29547 pts_time:29.547 dts:29547 dts_time:29.547 duration:29547 duration_time:29.547 stream_index:0
in: pts:2662975 pts_time:29.5886 dts:2662975 dts_time:29.5886 duration:2662975 duration_time:29.5886 stream_index:0
out: pts:29589 pts_time:29.589 dts:29589 dts_time:29.589 duration:29589 duration_time:29.589 stream_index:0
in: pts:2666305 pts_time:29.6256 dts:2666305 dts_time:29.6256 duration:2666305 duration_time:29.6256 stream_index:0
out: pts:29626 pts_time:29.626 dts:29626 dts_time:29.626 duration:29626 duration_time:29.626 stream_index:0
in: pts:2669815 pts_time:29.6646 dts:2669815 dts_time:29.6646 duration:2669815 duration_time:29.6646 stream_index:0
out: pts:29665 pts_time:29.665 dts:29665 dts_time:29.665 duration:29665 duration_time:29.665 stream_index:0
in: pts:2673505 pts_time:29.7056 dts:2673505 dts_time:29.7056 duration:2673505 duration_time:29.7056 stream_index:0
out: pts:29706 pts_time:29.706 dts:29706 dts_time:29.706 duration:29706 duration_time:29.706 stream_index:0
in: pts:2677015 pts_time:29.7446 dts:2677015 dts_time:29.7446 duration:2677015 duration_time:29.7446 stream_index:0
out: pts:29745 pts_time:29.745 dts:29745 dts_time:29.745 duration:29745 duration_time:29.745 stream_index:0
in: pts:2680615 pts_time:29.7846 dts:2680615 dts_time:29.7846 duration:2680615 duration_time:29.7846 stream_index:0
out: pts:29785 pts_time:29.785 dts:29785 dts_time:29.785 duration:29785 duration_time:29.785 stream_index:0
in: pts:237568 pts_time:29.696 dts:237568 dts_time:29.696 duration:237568 duration_time:29.696 stream_index:1
out: pts:29696 pts_time:29.696 dts:29696 dts_time:29.696 duration:29696 duration_time:29.696 stream_index:1
in: pts:238592 pts_time:29.824 dts:238592 dts_time:29.824 duration:238592 duration_time:29.824 stream_index:1
out: pts:29824 pts_time:29.824 dts:29824 dts_time:29.824 duration:29824 duration_time:29.824 stream_index:1
in: pts:239616 pts_time:29.952 dts:239616 dts_time:29.952 duration:239616 duration_time:29.952 stream_index:1
out: pts:29952 pts_time:29.952 dts:29952 dts_time:29.952 duration:29952 duration_time:29.952 stream_index:1
in: pts:240640 pts_time:30.08 dts:240640 dts_time:30.08 duration:240640 duration_time:30.08 stream_index:1
out: pts:30080 pts_time:30.08 dts:30080 dts_time:30.08 duration:30080 duration_time:30.08 stream_index:1
in: pts:241664 pts_time:30.208 dts:241664 dts_time:30.208 duration:241664 duration_time:30.208 stream_index:1
out: pts:30208 pts_time:30.208 dts:30208 dts_time:30.208 duration:30208 duration_time:30.208 stream_index:1
in: pts:242688 pts_time:30.336 dts:242688 dts_time:30.336 duration:242688 duration_time:30.336 stream_index:1
out: pts:30336 pts_time:30.336 dts:30336 dts_time:30.336 duration:30336 duration_time:30.336 stream_index:1
in: pts:243712 pts_time:30.464 dts:243712 dts_time:30.464 duration:243712 duration_time:30.464 stream_index:1
out: pts:30464 pts_time:30.464 dts:30464 dts_time:30.464 duration:30464 duration_time:30.464 stream_index:1
in: pts:244736 pts_time:30.592 dts:244736 dts_time:30.592 duration:244736 duration_time:30.592 stream_index:1
out: pts:30592 pts_time:30.592 dts:30592 dts_time:30.592 duration:30592 duration_time:30.592 stream_index:1
in: pts:2684305 pts_time:29.8256 dts:2684305 dts_time:29.8256 duration:2684305 duration_time:29.8256 stream_index:0
out: pts:29826 pts_time:29.826 dts:29826 dts_time:29.826 duration:29826 duration_time:29.826 stream_index:0
in: pts:2687905 pts_time:29.8656 dts:2687905 dts_time:29.8656 duration:2687905 duration_time:29.8656 stream_index:0
out: pts:29866 pts_time:29.866 dts:29866 dts_time:29.866 duration:29866 duration_time:29.866 stream_index:0
in: pts:2691505 pts_time:29.9056 dts:2691505 dts_time:29.9056 duration:2691505 duration_time:29.9056 stream_index:0
out: pts:29906 pts_time:29.906 dts:29906 dts_time:29.906 duration:29906 duration_time:29.906 stream_index:0
in: pts:2695105 pts_time:29.9456 dts:2695105 dts_time:29.9456 duration:2695105 duration_time:29.9456 stream_index:0
out: pts:29946 pts_time:29.946 dts:29946 dts_time:29.946 duration:29946 duration_time:29.946 stream_index:0
in: pts:2698705 pts_time:29.9856 dts:2698705 dts_time:29.9856 duration:2698705 duration_time:29.9856 stream_index:0
out: pts:29986 pts_time:29.986 dts:29986 dts_time:29.986 duration:29986 duration_time:29.986 stream_index:0
in: pts:2702215 pts_time:30.0246 d
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值