[FFmpeg-trac] #9322(undetermined:new): -r flag produces vfr mp4 and drops frames

FFmpeg trac at avcodec.org
Wed Jul 7 19:34:51 EEST 2021


#9322: -r flag produces vfr mp4 and drops frames
-------------------------------------+-------------------------------------
             Reporter:  oba          |                     Type:  defect
               Status:  new          |                 Priority:  normal
            Component:               |                  Version:  git-
  undetermined                       |  master
             Keywords:               |               Blocked By:
             Blocking:               |  Reproduced by developer:  0
Analyzed by developer:  0            |
-------------------------------------+-------------------------------------
 I observe the following on git master:
 {{{
 ffmpeg version N-102852-g758e2da289 Copyright (c) 2000-2021 the FFmpeg
 developers
   built with gcc 8 (Ubuntu 8.4.0-3ubuntu2)
   configuration: --enable-libx264 --enable-gpl
 }}}

 The following procedure yields errors and unexpected behavior:
 1. generate a black dummy h264 stream
 2. put it into an mp4 via the copy codec
 3. check for vfr


 {{{
 $ ffmpeg -hide_banner -f lavfi -i color=size=1280x720:rate=40:color=black
 -t 10 black.h264
 Input #0, lavfi, from 'color=size=1280x720:rate=40:color=black':
   Duration: N/A, start: 0.000000, bitrate: N/A
   Stream #0:0: Video: rawvideo (I420 / 0x30323449), yuv420p, 1280x720 [SAR
 1:1 DAR 16:9], 40 tbr, 40 tbn
 Stream mapping:
   Stream #0:0 -> #0:0 (rawvideo (native) -> h264 (libx264))
 Press [q] to stop, [?] for help
 [libx264 @ 0x55764fce6900] using SAR=1/1
 [libx264 @ 0x55764fce6900] using cpu capabilities: MMX2 SSE2Fast SSSE3
 SSE4.2 AVX FMA3 BMI2 AVX2
 [libx264 @ 0x55764fce6900] profile High, level 3.2
 Output #0, h264, to 'black.h264':
   Metadata:
     encoder         : Lavf59.4.100
   Stream #0:0: Video: h264, yuv420p(progressive), 1280x720 [SAR 1:1 DAR
 16:9], q=2-31, 40 fps, 40 tbn
     Metadata:
       encoder         : Lavc59.3.101 libx264
     Side data:
       cpb: bitrate max/min/avg: 0/0/0 buffer size: 0 vbv_delay: N/A
 frame=  400 fps=0.0 q=-1.0 Lsize=      17kB time=00:00:09.95 bitrate=
 13.7kbits/s speed=12.2x
 video:17kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB
 muxing overhead: 0.000000%
 [libx264 @ 0x55764fce6900] frame I:2     Avg QP: 9.50  size:   598
 [libx264 @ 0x55764fce6900] frame P:101   Avg QP:11.12  size:    46
 [libx264 @ 0x55764fce6900] frame B:297   Avg QP:14.67  size:    38
 [libx264 @ 0x55764fce6900] consecutive B-frames:  1.0%  0.0%  0.0% 99.0%
 [libx264 @ 0x55764fce6900] mb I  I16..4: 100.0%  0.0%  0.0%
 [libx264 @ 0x55764fce6900] mb P  I16..4:  0.0%  0.0%  0.0%  P16..4:  0.0%
 0.0%  0.0%  0.0%  0.0%    skip:100.0%
 [libx264 @ 0x55764fce6900] mb B  I16..4:  0.0%  0.0%  0.0%  B16..8:  0.0%
 0.0%  0.0%  direct: 0.0%  skip:100.0%
 [libx264 @ 0x55764fce6900] 8x8 transform intra:0.0%
 [libx264 @ 0x55764fce6900] coded y,uvDC,uvAC intra: 0.0% 0.0% 0.0% inter:
 0.0% 0.0% 0.0%
 [libx264 @ 0x55764fce6900] i16 v,h,dc,p: 98%  0%  2%  0%
 [libx264 @ 0x55764fce6900] i8c dc,h,v,p: 100%  0%  0%  0%
 [libx264 @ 0x55764fce6900] Weighted P-Frames: Y:0.0% UV:0.0%
 [libx264 @ 0x55764fce6900] kb/s:13.61
 }}}

 {{{
 $ ffmpeg -hide_banner -i black.h264 -c copy -r 40 black.mp4
 Input #0, h264, from 'black.h264':
   Duration: N/A, bitrate: N/A
   Stream #0:0: Video: h264 (High), yuv420p(progressive), 1280x720 [SAR 1:1
 DAR 16:9], 40 fps, 40 tbr, 1200k tbn
 Output #0, mp4, to 'black.mp4':
   Metadata:
     encoder         : Lavf59.4.100
   Stream #0:0: Video: h264 (High) (avc1 / 0x31637661),
 yuv420p(progressive), 1280x720 [SAR 1:1 DAR 16:9], q=2-31, 40 fps, 40 tbr,
 10240 tbn
 Stream mapping:
   Stream #0:0 -> #0:0 (copy)
 Press [q] to stop, [?] for help
 [mp4 @ 0x55b480a2b0c0] Timestamps are unset in a packet for stream 0. This
 is deprecated and will stop working in the future. Fix your code to set
 the timestamps properly
 [mp4 @ 0x55b480a2b0c0] pts has no value
 [mp4 @ 0x55b480a2b0c0] pts has no value0kB time=-00:00:00.04 bitrate=N/A
 speed=N/A
     Last message repeated 398 times
 frame=  400 fps=0.0 q=-1.0 Lsize=      19kB time=00:00:09.95 bitrate=
 15.7kbits/s speed=1.86e+03x
 video:17kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB
 muxing overhead: 14.586395%
 }}}

 {{{
 $ ffmpeg -hide_banner -i black.mp4 -vf vfrdet -an -f null
 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'black.mp4':
   Metadata:
     major_brand     : isom
     minor_version   : 512
     compatible_brands: isomiso2avc1mp41
     encoder         : Lavf59.4.100
   Duration: 00:00:09.98, start: 0.000000, bitrate: 15 kb/s
   Stream #0:0(und): Video: h264 (High) (avc1 / 0x31637661), yuv420p,
 1280x720 [SAR 1:1 DAR 16:9], 13 kb/s, 39.88 fps, 40 tbr, 10240 tbn
 (default)
     Metadata:
       handler_name    : VideoHandler
       vendor_id       : [0][0][0][0]
 Stream mapping:
   Stream #0:0 -> #0:0 (h264 (native) -> wrapped_avframe (native))
 Press [q] to stop, [?] for help
 Output #0, null, to 'pipe:':
   Metadata:
     major_brand     : isom
     minor_version   : 512
     compatible_brands: isomiso2avc1mp41
     encoder         : Lavf59.4.100
   Stream #0:0(und): Video: wrapped_avframe, yuv420p(progressive), 1280x720
 [SAR 1:1 DAR 16:9], q=2-31, 200 kb/s, 40 fps, 40 tbn (default)
     Metadata:
       handler_name    : VideoHandler
       vendor_id       : [0][0][0][0]
       encoder         : Lavc59.3.101 wrapped_avframe
 [null @ 0x562850e63780] Application provided invalid, non monotonically
 increasing dts to muxer in stream 0: 397 >= 393
 [null @ 0x562850e63780] Application provided invalid, non monotonically
 increasing dts to muxer in stream 0: 397 >= 397
 frame=  398 fps=0.0 q=-0.0 Lsize=N/A time=00:00:09.95 bitrate=N/A
 speed=59.1x
 video:171kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB
 muxing overhead: unknown
 [Parsed_vfrdet_0 @ 0x56285120c440] VFR:0.010076 (4/393) min: -1024 max:
 1024 avg: 192
 }}}

 The first command produces the dummy file as expected.
 The second command already produces warnings:
 {{{
 [mp4 @ 0x55b480a2b0c0] Timestamps are unset in a packet for stream 0. This
 is deprecated and will stop working in the future. Fix your code to set
 the timestamps properly
 [mp4 @ 0x55b480a2b0c0] pts has no value
 }}}
 They indicate that there are no time stamps, adding `-fflags +genpts` does
 not help either.

 The third step (vfr detection) then does not produce the expected output:
 {{{
 [null @ 0x55f8f2167780] Application provided invalid, non monotonically
 increasing dts to muxer in stream 0: 397 >= 393
 [null @ 0x55f8f2167780] Application provided invalid, non monotonically
 increasing dts to muxer in stream 0: 397 >= 397
 ...
 [Parsed_vfrdet_0 @ 0x55f8f2510440] VFR:0.010076 (4/393) min: -1024 max:
 1024 avg: 192
 }}}
 It states that there are VFR frames, and also somehow the frame number is
 not correct. It also states that the input stream fps is 39.88.

 I would expect a pure CFR video with 400 frames at 40 fps. The
 documentation also states that:
 https://trac.ffmpeg.org/wiki/ChangingFrameRate
 `For an output format like MP4, which defaults to constant frame rate
 (CFR), -r will generate a CFR stream.`

 The background is that we have thousands of hours of raw .h264 streams
 that should be wrapped in mp4 containers. Digesting those containers into
 some programs results in failures due to the malformed streams (vfr and
 missing frames)

 I am not an expert with ffmpeg, so I might be abusing some options. Is
 there a simple way to reliably wrap h264 streams into mp4?

 Also here is the auxiliary data requested in the bug report manual:
 {{{
 $ ffmpeg -v 9 -loglevel 99 -i black.h264
 ffmpeg version N-102852-g758e2da289 Copyright (c) 2000-2021 the FFmpeg
 developers
   built with gcc 8 (Ubuntu 8.4.0-3ubuntu2)
   configuration: --enable-libx264 --enable-gpl
   libavutil      57.  0.100 / 57.  0.100
   libavcodec     59.  3.101 / 59.  3.101
   libavformat    59.  4.100 / 59.  4.100
   libavdevice    59.  0.100 / 59.  0.100
   libavfilter     8.  0.103 /  8.  0.103
   libswscale      6.  0.100 /  6.  0.100
   libswresample   4.  0.100 /  4.  0.100
   libpostproc    56.  0.100 / 56.  0.100
 Splitting the commandline.
 Reading option '-v' ... matched as option 'v' (set logging level) with
 argument '9'.
 Reading option '-loglevel' ... matched as option 'loglevel' (set logging
 level) with argument '99'.
 Reading option '-i' ... matched as input url with argument 'black.h264'.
 Finished splitting the commandline.
 Parsing a group of options: global .
 Applying option v (set logging level) with argument 9.
 Successfully parsed a group of options.
 Parsing a group of options: input url black.h264.
 Successfully parsed a group of options.
 Opening an input file: black.h264.
 [NULL @ 0x5595aac9f640] Opening 'black.h264' for reading
 [file @ 0x5595aac9ff40] Setting default whitelist 'file,crypto,data'
 Probing h264 score:51 size:2048
 Probing mp3 score:1 size:2048
 [h264 @ 0x5595aac9f640] Format h264 probed with size=2048 and score=51
 [h264 @ 0x5595aac9f640] Before avformat_find_stream_info() pos: 0 bytes
 read:17009 seeks:0 nb_streams:1
 [extract_extradata @ 0x5595aaca4500] nal_unit_type: 7(SPS), nal_ref_idc: 3
 [extract_extradata @ 0x5595aaca4500] nal_unit_type: 8(PPS), nal_ref_idc: 3
 [extract_extradata @ 0x5595aaca4500] nal_unit_type: 6(SEI), nal_ref_idc: 0
 [extract_extradata @ 0x5595aaca4500] nal_unit_type: 5(IDR), nal_ref_idc: 3
 [h264 @ 0x5595aaca0c00] nal_unit_type: 7(SPS), nal_ref_idc: 3
 [h264 @ 0x5595aaca0c00] nal_unit_type: 8(PPS), nal_ref_idc: 3
 [h264 @ 0x5595aaca0c00] nal_unit_type: 6(SEI), nal_ref_idc: 0
 [h264 @ 0x5595aaca0c00] nal_unit_type: 5(IDR), nal_ref_idc: 3
 [h264 @ 0x5595aaca0c00] Format yuv420p chosen by get_format().
 [h264 @ 0x5595aaca0c00] Reinit context to 1280x720, pix_fmt: yuv420p
 [h264 @ 0x5595aaca0c00] no picture
 [h264 @ 0x5595aac9f640] max_analyze_duration 5000000 reached at 5000000
 microseconds st:0
 [h264 @ 0x5595aac9f640] stream 0: start_time: NOPTS duration: NOPTS
 [h264 @ 0x5595aac9f640] format: start_time: NOPTS duration: NOPTS
 (estimate from bit rate) bitrate=0 kb/s
 [h264 @ 0x5595aac9f640] After avformat_find_stream_info() pos: 9216 bytes
 read:17009 seeks:0 frames:202
 Input #0, h264, from 'black.h264':
   Duration: N/A, bitrate: N/A
   Stream #0:0, 202, 1/1200000: Video: h264 (High), 1 reference frame,
 yuv420p(progressive, left), 1280x720 [SAR 1:1 DAR 16:9], 0/1, 40 fps, 40
 tbr, 1200k tbn
 Successfully opened the file.
 At least one output file must be specified
 [AVIOContext @ 0x5595aaca8300] Statistics: 17009 bytes read, 0 seeks
 }}}

 {{{
 $ ffmpeg -v 9 -loglevel 99 -i black.mp4
 ffmpeg version N-102852-g758e2da289 Copyright (c) 2000-2021 the FFmpeg
 developers
   built with gcc 8 (Ubuntu 8.4.0-3ubuntu2)
   configuration: --enable-libx264 --enable-gpl
   libavutil      57.  0.100 / 57.  0.100
   libavcodec     59.  3.101 / 59.  3.101
   libavformat    59.  4.100 / 59.  4.100
   libavdevice    59.  0.100 / 59.  0.100
   libavfilter     8.  0.103 /  8.  0.103
   libswscale      6.  0.100 /  6.  0.100
   libswresample   4.  0.100 /  4.  0.100
   libpostproc    56.  0.100 / 56.  0.100
 Splitting the commandline.
 Reading option '-v' ... matched as option 'v' (set logging level) with
 argument '9'.
 Reading option '-loglevel' ... matched as option 'loglevel' (set logging
 level) with argument '99'.
 Reading option '-i' ... matched as input url with argument 'black.mp4'.
 Finished splitting the commandline.
 Parsing a group of options: global .
 Applying option v (set logging level) with argument 9.
 Successfully parsed a group of options.
 Parsing a group of options: input url black.mp4.
 Successfully parsed a group of options.
 Opening an input file: black.mp4.
 [NULL @ 0x55a0d0d81640] Opening 'black.mp4' for reading
 [file @ 0x55a0d0d81f40] Setting default whitelist 'file,crypto,data'
 Probing mov,mp4,m4a,3gp,3g2,mj2 score:100 size:2048
 Probing mp3 score:1 size:2048
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] Format mov,mp4,m4a,3gp,3g2,mj2
 probed with size=2048 and score=100
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'ftyp' parent:'root' sz:
 32 8 19490
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] ISO: File Type Major Brand:
 isom
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'free' parent:'root' sz: 8
 40 19490
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'mdat' parent:'root' sz:
 17020 48 19490
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'moov' parent:'root' sz:
 2430 17068 19490
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'mvhd' parent:'moov' sz:
 108 8 2422
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] time scale = 1000
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'trak' parent:'moov' sz:
 2217 116 2422
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'tkhd' parent:'trak' sz:
 92 8 2209
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'edts' parent:'trak' sz:
 36 100 2209
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'elst' parent:'edts' sz:
 28 8 28
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] track[0].edit_count = 1
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] duration=9980 time=512
 rate=1.000000
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'mdia' parent:'trak' sz:
 2081 136 2209
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'mdhd' parent:'mdia' sz:
 32 8 2073
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'hdlr' parent:'mdia' sz:
 45 40 2073
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] ctype=[0][0][0][0]
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] stype=vide
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'minf' parent:'mdia' sz:
 1996 85 2073
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'vmhd' parent:'minf' sz:
 20 8 1988
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'dinf' parent:'minf' sz:
 36 28 1988
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'dref' parent:'dinf' sz:
 28 8 28
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] Unknown dref type 0x206c7275
 size 12
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'stbl' parent:'minf' sz:
 1932 64 1988
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'stsd' parent:'stbl' sz:
 192 8 1924
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] size=176 4CC=avc1 codec_type=0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'avcC' parent:'stsd' sz:
 54 8 90
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'pasp' parent:'stsd' sz:
 16 62 90
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'btrt' parent:'stsd' sz:
 20 78 90
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'stts' parent:'stbl' sz:
 40 200 1924
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] track[0].stts.entries = 3
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] sample_count=1,
 sample_duration=410
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] sample_count=1,
 sample_duration=409
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] sample_count=398,
 sample_duration=256
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'stss' parent:'stbl' sz:
 24 240 1924
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] keyframe_count = 2
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'stsc' parent:'stbl' sz:
 28 264 1924
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] track[0].stsc.entries = 1
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'stsz' parent:'stbl' sz:
 1620 292 1924
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] sample_size = 0 sample_count =
 400
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'stco' parent:'stbl' sz:
 20 1912 1924
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 0,
 offset 30, dts 0, size 944, distance 0, keyframe 1
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 1,
 offset 3e0, dts 410, size 40, distance 1, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 2,
 offset 408, dts 819, size 37, distance 2, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 3,
 offset 42d, dts 1075, size 37, distance 3, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 4,
 offset 452, dts 1331, size 37, distance 4, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 5,
 offset 477, dts 1587, size 46, distance 5, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 6,
 offset 4a5, dts 1843, size 39, distance 6, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 7,
 offset 4cc, dts 2099, size 37, distance 7, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 8,
 offset 4f1, dts 2355, size 37, distance 8, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 9,
 offset 516, dts 2611, size 46, distance 9, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 10,
 offset 544, dts 2867, size 39, distance 10, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 11,
 offset 56b, dts 3123, size 37, distance 11, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 12,
 offset 590, dts 3379, size 37, distance 12, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 13,
 offset 5b5, dts 3635, size 46, distance 13, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 14,
 offset 5e3, dts 3891, size 39, distance 14, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 15,
 offset 60a, dts 4147, size 37, distance 15, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 16,
 offset 62f, dts 4403, size 37, distance 16, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 17,
 offset 654, dts 4659, size 46, distance 17, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 18,
 offset 682, dts 4915, size 39, distance 18, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 19,
 offset 6a9, dts 5171, size 37, distance 19, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 20,
 offset 6ce, dts 5427, size 37, distance 20, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 21,
 offset 6f3, dts 5683, size 46, distance 21, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 22,
 offset 721, dts 5939, size 39, distance 22, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 23,
 offset 748, dts 6195, size 37, distance 23, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 24,
 offset 76d, dts 6451, size 37, distance 24, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 25,
 offset 792, dts 6707, size 46, distance 25, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 26,
 offset 7c0, dts 6963, size 39, distance 26, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 27,
 offset 7e7, dts 7219, size 37, distance 27, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 28,
 offset 80c, dts 7475, size 37, distance 28, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 29,
 offset 831, dts 7731, size 46, distance 29, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 30,
 offset 85f, dts 7987, size 39, distance 30, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 31,
 offset 886, dts 8243, size 37, distance 31, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 32,
 offset 8ab, dts 8499, size 37, distance 32, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 33,
 offset 8d0, dts 8755, size 46, distance 33, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 34,
 offset 8fe, dts 9011, size 39, distance 34, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 35,
 offset 925, dts 9267, size 37, distance 35, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 36,
 offset 94a, dts 9523, size 37, distance 36, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 37,
 offset 96f, dts 9779, size 46, distance 37, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 38,
 offset 99d, dts 10035, size 39, distance 38, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 39,
 offset 9c4, dts 10291, size 37, distance 39, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 40,
 offset 9e9, dts 10547, size 37, distance 40, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 41,
 offset a0e, dts 10803, size 46, distance 41, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 42,
 offset a3c, dts 11059, size 39, distance 42, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 43,
 offset a63, dts 11315, size 37, distance 43, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 44,
 offset a88, dts 11571, size 37, distance 44, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 45,
 offset aad, dts 11827, size 46, distance 45, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 46,
 offset adb, dts 12083, size 39, distance 46, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 47,
 offset b02, dts 12339, size 37, distance 47, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 48,
 offset b27, dts 12595, size 37, distance 48, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 49,
 offset b4c, dts 12851, size 46, distance 49, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 50,
 offset b7a, dts 13107, size 39, distance 50, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 51,
 offset ba1, dts 13363, size 37, distance 51, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 52,
 offset bc6, dts 13619, size 37, distance 52, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 53,
 offset beb, dts 13875, size 46, distance 53, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 54,
 offset c19, dts 14131, size 39, distance 54, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 55,
 offset c40, dts 14387, size 37, distance 55, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 56,
 offset c65, dts 14643, size 37, distance 56, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 57,
 offset c8a, dts 14899, size 46, distance 57, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 58,
 offset cb8, dts 15155, size 39, distance 58, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 59,
 offset cdf, dts 15411, size 37, distance 59, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 60,
 offset d04, dts 15667, size 37, distance 60, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 61,
 offset d29, dts 15923, size 46, distance 61, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 62,
 offset d57, dts 16179, size 39, distance 62, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 63,
 offset d7e, dts 16435, size 37, distance 63, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 64,
 offset da3, dts 16691, size 37, distance 64, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 65,
 offset dc8, dts 16947, size 46, distance 65, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 66,
 offset df6, dts 17203, size 39, distance 66, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 67,
 offset e1d, dts 17459, size 37, distance 67, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 68,
 offset e42, dts 17715, size 37, distance 68, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 69,
 offset e67, dts 17971, size 46, distance 69, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 70,
 offset e95, dts 18227, size 39, distance 70, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 71,
 offset ebc, dts 18483, size 37, distance 71, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 72,
 offset ee1, dts 18739, size 37, distance 72, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 73,
 offset f06, dts 18995, size 46, distance 73, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 74,
 offset f34, dts 19251, size 39, distance 74, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 75,
 offset f5b, dts 19507, size 37, distance 75, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 76,
 offset f80, dts 19763, size 37, distance 76, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 77,
 offset fa5, dts 20019, size 46, distance 77, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 78,
 offset fd3, dts 20275, size 39, distance 78, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 79,
 offset ffa, dts 20531, size 37, distance 79, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 80,
 offset 101f, dts 20787, size 37, distance 80, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 81,
 offset 1044, dts 21043, size 46, distance 81, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 82,
 offset 1072, dts 21299, size 39, distance 82, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 83,
 offset 1099, dts 21555, size 37, distance 83, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 84,
 offset 10be, dts 21811, size 37, distance 84, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 85,
 offset 10e3, dts 22067, size 46, distance 85, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 86,
 offset 1111, dts 22323, size 39, distance 86, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 87,
 offset 1138, dts 22579, size 37, distance 87, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 88,
 offset 115d, dts 22835, size 37, distance 88, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 89,
 offset 1182, dts 23091, size 46, distance 89, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 90,
 offset 11b0, dts 23347, size 39, distance 90, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 91,
 offset 11d7, dts 23603, size 37, distance 91, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 92,
 offset 11fc, dts 23859, size 37, distance 92, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 93,
 offset 1221, dts 24115, size 46, distance 93, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 94,
 offset 124f, dts 24371, size 39, distance 94, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 95,
 offset 1276, dts 24627, size 37, distance 95, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 96,
 offset 129b, dts 24883, size 37, distance 96, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 97,
 offset 12c0, dts 25139, size 46, distance 97, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 98,
 offset 12ee, dts 25395, size 39, distance 98, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 99,
 offset 1315, dts 25651, size 37, distance 99, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 100,
 offset 133a, dts 25907, size 37, distance 100, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 101,
 offset 135f, dts 26163, size 46, distance 101, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 102,
 offset 138d, dts 26419, size 39, distance 102, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 103,
 offset 13b4, dts 26675, size 37, distance 103, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 104,
 offset 13d9, dts 26931, size 37, distance 104, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 105,
 offset 13fe, dts 27187, size 46, distance 105, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 106,
 offset 142c, dts 27443, size 39, distance 106, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 107,
 offset 1453, dts 27699, size 37, distance 107, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 108,
 offset 1478, dts 27955, size 37, distance 108, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 109,
 offset 149d, dts 28211, size 46, distance 109, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 110,
 offset 14cb, dts 28467, size 39, distance 110, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 111,
 offset 14f2, dts 28723, size 37, distance 111, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 112,
 offset 1517, dts 28979, size 37, distance 112, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 113,
 offset 153c, dts 29235, size 46, distance 113, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 114,
 offset 156a, dts 29491, size 39, distance 114, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 115,
 offset 1591, dts 29747, size 37, distance 115, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 116,
 offset 15b6, dts 30003, size 37, distance 116, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 117,
 offset 15db, dts 30259, size 46, distance 117, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 118,
 offset 1609, dts 30515, size 39, distance 118, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 119,
 offset 1630, dts 30771, size 37, distance 119, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 120,
 offset 1655, dts 31027, size 37, distance 120, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 121,
 offset 167a, dts 31283, size 46, distance 121, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 122,
 offset 16a8, dts 31539, size 39, distance 122, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 123,
 offset 16cf, dts 31795, size 37, distance 123, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 124,
 offset 16f4, dts 32051, size 37, distance 124, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 125,
 offset 1719, dts 32307, size 46, distance 125, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 126,
 offset 1747, dts 32563, size 39, distance 126, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 127,
 offset 176e, dts 32819, size 37, distance 127, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 128,
 offset 1793, dts 33075, size 37, distance 128, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 129,
 offset 17b8, dts 33331, size 46, distance 129, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 130,
 offset 17e6, dts 33587, size 39, distance 130, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 131,
 offset 180d, dts 33843, size 37, distance 131, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 132,
 offset 1832, dts 34099, size 37, distance 132, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 133,
 offset 1857, dts 34355, size 46, distance 133, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 134,
 offset 1885, dts 34611, size 39, distance 134, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 135,
 offset 18ac, dts 34867, size 37, distance 135, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 136,
 offset 18d1, dts 35123, size 37, distance 136, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 137,
 offset 18f6, dts 35379, size 46, distance 137, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 138,
 offset 1924, dts 35635, size 39, distance 138, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 139,
 offset 194b, dts 35891, size 37, distance 139, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 140,
 offset 1970, dts 36147, size 37, distance 140, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 141,
 offset 1995, dts 36403, size 46, distance 141, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 142,
 offset 19c3, dts 36659, size 39, distance 142, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 143,
 offset 19ea, dts 36915, size 37, distance 143, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 144,
 offset 1a0f, dts 37171, size 37, distance 144, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 145,
 offset 1a34, dts 37427, size 46, distance 145, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 146,
 offset 1a62, dts 37683, size 39, distance 146, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 147,
 offset 1a89, dts 37939, size 37, distance 147, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 148,
 offset 1aae, dts 38195, size 37, distance 148, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 149,
 offset 1ad3, dts 38451, size 46, distance 149, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 150,
 offset 1b01, dts 38707, size 39, distance 150, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 151,
 offset 1b28, dts 38963, size 37, distance 151, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 152,
 offset 1b4d, dts 39219, size 37, distance 152, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 153,
 offset 1b72, dts 39475, size 46, distance 153, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 154,
 offset 1ba0, dts 39731, size 39, distance 154, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 155,
 offset 1bc7, dts 39987, size 37, distance 155, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 156,
 offset 1bec, dts 40243, size 37, distance 156, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 157,
 offset 1c11, dts 40499, size 46, distance 157, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 158,
 offset 1c3f, dts 40755, size 39, distance 158, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 159,
 offset 1c66, dts 41011, size 37, distance 159, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 160,
 offset 1c8b, dts 41267, size 37, distance 160, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 161,
 offset 1cb0, dts 41523, size 46, distance 161, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 162,
 offset 1cde, dts 41779, size 39, distance 162, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 163,
 offset 1d05, dts 42035, size 37, distance 163, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 164,
 offset 1d2a, dts 42291, size 37, distance 164, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 165,
 offset 1d4f, dts 42547, size 46, distance 165, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 166,
 offset 1d7d, dts 42803, size 39, distance 166, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 167,
 offset 1da4, dts 43059, size 37, distance 167, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 168,
 offset 1dc9, dts 43315, size 37, distance 168, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 169,
 offset 1dee, dts 43571, size 46, distance 169, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 170,
 offset 1e1c, dts 43827, size 39, distance 170, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 171,
 offset 1e43, dts 44083, size 37, distance 171, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 172,
 offset 1e68, dts 44339, size 37, distance 172, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 173,
 offset 1e8d, dts 44595, size 46, distance 173, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 174,
 offset 1ebb, dts 44851, size 39, distance 174, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 175,
 offset 1ee2, dts 45107, size 37, distance 175, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 176,
 offset 1f07, dts 45363, size 37, distance 176, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 177,
 offset 1f2c, dts 45619, size 46, distance 177, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 178,
 offset 1f5a, dts 45875, size 39, distance 178, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 179,
 offset 1f81, dts 46131, size 37, distance 179, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 180,
 offset 1fa6, dts 46387, size 37, distance 180, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 181,
 offset 1fcb, dts 46643, size 46, distance 181, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 182,
 offset 1ff9, dts 46899, size 39, distance 182, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 183,
 offset 2020, dts 47155, size 37, distance 183, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 184,
 offset 2045, dts 47411, size 37, distance 184, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 185,
 offset 206a, dts 47667, size 46, distance 185, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 186,
 offset 2098, dts 47923, size 39, distance 186, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 187,
 offset 20bf, dts 48179, size 37, distance 187, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 188,
 offset 20e4, dts 48435, size 37, distance 188, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 189,
 offset 2109, dts 48691, size 46, distance 189, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 190,
 offset 2137, dts 48947, size 39, distance 190, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 191,
 offset 215e, dts 49203, size 37, distance 191, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 192,
 offset 2183, dts 49459, size 37, distance 192, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 193,
 offset 21a8, dts 49715, size 46, distance 193, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 194,
 offset 21d6, dts 49971, size 39, distance 194, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 195,
 offset 21fd, dts 50227, size 37, distance 195, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 196,
 offset 2222, dts 50483, size 37, distance 196, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 197,
 offset 2247, dts 50739, size 46, distance 197, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 198,
 offset 2275, dts 50995, size 39, distance 198, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 199,
 offset 229c, dts 51251, size 37, distance 199, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 200,
 offset 22c1, dts 51507, size 37, distance 200, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 201,
 offset 22e6, dts 51763, size 46, distance 201, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 202,
 offset 2314, dts 52019, size 39, distance 202, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 203,
 offset 233b, dts 52275, size 37, distance 203, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 204,
 offset 2360, dts 52531, size 37, distance 204, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 205,
 offset 2385, dts 52787, size 46, distance 205, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 206,
 offset 23b3, dts 53043, size 39, distance 206, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 207,
 offset 23da, dts 53299, size 37, distance 207, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 208,
 offset 23ff, dts 53555, size 37, distance 208, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 209,
 offset 2424, dts 53811, size 46, distance 209, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 210,
 offset 2452, dts 54067, size 39, distance 210, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 211,
 offset 2479, dts 54323, size 37, distance 211, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 212,
 offset 249e, dts 54579, size 37, distance 212, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 213,
 offset 24c3, dts 54835, size 46, distance 213, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 214,
 offset 24f1, dts 55091, size 39, distance 214, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 215,
 offset 2518, dts 55347, size 37, distance 215, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 216,
 offset 253d, dts 55603, size 37, distance 216, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 217,
 offset 2562, dts 55859, size 46, distance 217, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 218,
 offset 2590, dts 56115, size 39, distance 218, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 219,
 offset 25b7, dts 56371, size 37, distance 219, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 220,
 offset 25dc, dts 56627, size 37, distance 220, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 221,
 offset 2601, dts 56883, size 46, distance 221, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 222,
 offset 262f, dts 57139, size 39, distance 222, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 223,
 offset 2656, dts 57395, size 37, distance 223, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 224,
 offset 267b, dts 57651, size 37, distance 224, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 225,
 offset 26a0, dts 57907, size 46, distance 225, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 226,
 offset 26ce, dts 58163, size 39, distance 226, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 227,
 offset 26f5, dts 58419, size 37, distance 227, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 228,
 offset 271a, dts 58675, size 37, distance 228, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 229,
 offset 273f, dts 58931, size 46, distance 229, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 230,
 offset 276d, dts 59187, size 39, distance 230, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 231,
 offset 2794, dts 59443, size 37, distance 231, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 232,
 offset 27b9, dts 59699, size 37, distance 232, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 233,
 offset 27de, dts 59955, size 46, distance 233, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 234,
 offset 280c, dts 60211, size 39, distance 234, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 235,
 offset 2833, dts 60467, size 37, distance 235, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 236,
 offset 2858, dts 60723, size 37, distance 236, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 237,
 offset 287d, dts 60979, size 46, distance 237, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 238,
 offset 28ab, dts 61235, size 39, distance 238, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 239,
 offset 28d2, dts 61491, size 37, distance 239, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 240,
 offset 28f7, dts 61747, size 37, distance 240, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 241,
 offset 291c, dts 62003, size 46, distance 241, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 242,
 offset 294a, dts 62259, size 39, distance 242, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 243,
 offset 2971, dts 62515, size 37, distance 243, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 244,
 offset 2996, dts 62771, size 37, distance 244, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 245,
 offset 29bb, dts 63027, size 46, distance 245, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 246,
 offset 29e9, dts 63283, size 39, distance 246, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 247,
 offset 2a10, dts 63539, size 37, distance 247, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 248,
 offset 2a35, dts 63795, size 37, distance 248, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 249,
 offset 2a5a, dts 64051, size 45, distance 249, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 250,
 offset 2a87, dts 64307, size 254, distance 0, keyframe 1
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 251,
 offset 2b85, dts 64563, size 40, distance 1, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 252,
 offset 2bad, dts 64819, size 37, distance 2, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 253,
 offset 2bd2, dts 65075, size 37, distance 3, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 254,
 offset 2bf7, dts 65331, size 37, distance 4, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 255,
 offset 2c1c, dts 65587, size 46, distance 5, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 256,
 offset 2c4a, dts 65843, size 39, distance 6, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 257,
 offset 2c71, dts 66099, size 37, distance 7, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 258,
 offset 2c96, dts 66355, size 37, distance 8, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 259,
 offset 2cbb, dts 66611, size 46, distance 9, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 260,
 offset 2ce9, dts 66867, size 39, distance 10, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 261,
 offset 2d10, dts 67123, size 37, distance 11, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 262,
 offset 2d35, dts 67379, size 37, distance 12, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 263,
 offset 2d5a, dts 67635, size 46, distance 13, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 264,
 offset 2d88, dts 67891, size 39, distance 14, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 265,
 offset 2daf, dts 68147, size 37, distance 15, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 266,
 offset 2dd4, dts 68403, size 37, distance 16, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 267,
 offset 2df9, dts 68659, size 46, distance 17, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 268,
 offset 2e27, dts 68915, size 39, distance 18, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 269,
 offset 2e4e, dts 69171, size 37, distance 19, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 270,
 offset 2e73, dts 69427, size 37, distance 20, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 271,
 offset 2e98, dts 69683, size 46, distance 21, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 272,
 offset 2ec6, dts 69939, size 39, distance 22, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 273,
 offset 2eed, dts 70195, size 37, distance 23, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 274,
 offset 2f12, dts 70451, size 37, distance 24, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 275,
 offset 2f37, dts 70707, size 46, distance 25, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 276,
 offset 2f65, dts 70963, size 39, distance 26, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 277,
 offset 2f8c, dts 71219, size 37, distance 27, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 278,
 offset 2fb1, dts 71475, size 37, distance 28, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 279,
 offset 2fd6, dts 71731, size 46, distance 29, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 280,
 offset 3004, dts 71987, size 39, distance 30, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 281,
 offset 302b, dts 72243, size 37, distance 31, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 282,
 offset 3050, dts 72499, size 37, distance 32, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 283,
 offset 3075, dts 72755, size 46, distance 33, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 284,
 offset 30a3, dts 73011, size 39, distance 34, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 285,
 offset 30ca, dts 73267, size 37, distance 35, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 286,
 offset 30ef, dts 73523, size 37, distance 36, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 287,
 offset 3114, dts 73779, size 46, distance 37, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 288,
 offset 3142, dts 74035, size 39, distance 38, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 289,
 offset 3169, dts 74291, size 37, distance 39, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 290,
 offset 318e, dts 74547, size 37, distance 40, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 291,
 offset 31b3, dts 74803, size 46, distance 41, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 292,
 offset 31e1, dts 75059, size 39, distance 42, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 293,
 offset 3208, dts 75315, size 37, distance 43, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 294,
 offset 322d, dts 75571, size 37, distance 44, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 295,
 offset 3252, dts 75827, size 46, distance 45, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 296,
 offset 3280, dts 76083, size 39, distance 46, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 297,
 offset 32a7, dts 76339, size 37, distance 47, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 298,
 offset 32cc, dts 76595, size 37, distance 48, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 299,
 offset 32f1, dts 76851, size 46, distance 49, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 300,
 offset 331f, dts 77107, size 39, distance 50, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 301,
 offset 3346, dts 77363, size 37, distance 51, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 302,
 offset 336b, dts 77619, size 37, distance 52, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 303,
 offset 3390, dts 77875, size 46, distance 53, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 304,
 offset 33be, dts 78131, size 39, distance 54, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 305,
 offset 33e5, dts 78387, size 37, distance 55, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 306,
 offset 340a, dts 78643, size 37, distance 56, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 307,
 offset 342f, dts 78899, size 46, distance 57, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 308,
 offset 345d, dts 79155, size 39, distance 58, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 309,
 offset 3484, dts 79411, size 37, distance 59, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 310,
 offset 34a9, dts 79667, size 37, distance 60, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 311,
 offset 34ce, dts 79923, size 46, distance 61, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 312,
 offset 34fc, dts 80179, size 39, distance 62, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 313,
 offset 3523, dts 80435, size 37, distance 63, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 314,
 offset 3548, dts 80691, size 37, distance 64, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 315,
 offset 356d, dts 80947, size 46, distance 65, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 316,
 offset 359b, dts 81203, size 39, distance 66, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 317,
 offset 35c2, dts 81459, size 37, distance 67, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 318,
 offset 35e7, dts 81715, size 37, distance 68, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 319,
 offset 360c, dts 81971, size 46, distance 69, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 320,
 offset 363a, dts 82227, size 39, distance 70, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 321,
 offset 3661, dts 82483, size 37, distance 71, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 322,
 offset 3686, dts 82739, size 37, distance 72, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 323,
 offset 36ab, dts 82995, size 46, distance 73, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 324,
 offset 36d9, dts 83251, size 39, distance 74, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 325,
 offset 3700, dts 83507, size 37, distance 75, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 326,
 offset 3725, dts 83763, size 37, distance 76, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 327,
 offset 374a, dts 84019, size 46, distance 77, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 328,
 offset 3778, dts 84275, size 39, distance 78, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 329,
 offset 379f, dts 84531, size 37, distance 79, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 330,
 offset 37c4, dts 84787, size 37, distance 80, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 331,
 offset 37e9, dts 85043, size 46, distance 81, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 332,
 offset 3817, dts 85299, size 39, distance 82, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 333,
 offset 383e, dts 85555, size 37, distance 83, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 334,
 offset 3863, dts 85811, size 37, distance 84, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 335,
 offset 3888, dts 86067, size 46, distance 85, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 336,
 offset 38b6, dts 86323, size 39, distance 86, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 337,
 offset 38dd, dts 86579, size 37, distance 87, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 338,
 offset 3902, dts 86835, size 37, distance 88, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 339,
 offset 3927, dts 87091, size 46, distance 89, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 340,
 offset 3955, dts 87347, size 39, distance 90, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 341,
 offset 397c, dts 87603, size 37, distance 91, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 342,
 offset 39a1, dts 87859, size 37, distance 92, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 343,
 offset 39c6, dts 88115, size 46, distance 93, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 344,
 offset 39f4, dts 88371, size 39, distance 94, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 345,
 offset 3a1b, dts 88627, size 37, distance 95, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 346,
 offset 3a40, dts 88883, size 37, distance 96, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 347,
 offset 3a65, dts 89139, size 46, distance 97, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 348,
 offset 3a93, dts 89395, size 39, distance 98, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 349,
 offset 3aba, dts 89651, size 37, distance 99, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 350,
 offset 3adf, dts 89907, size 37, distance 100, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 351,
 offset 3b04, dts 90163, size 46, distance 101, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 352,
 offset 3b32, dts 90419, size 39, distance 102, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 353,
 offset 3b59, dts 90675, size 37, distance 103, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 354,
 offset 3b7e, dts 90931, size 37, distance 104, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 355,
 offset 3ba3, dts 91187, size 46, distance 105, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 356,
 offset 3bd1, dts 91443, size 39, distance 106, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 357,
 offset 3bf8, dts 91699, size 37, distance 107, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 358,
 offset 3c1d, dts 91955, size 37, distance 108, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 359,
 offset 3c42, dts 92211, size 46, distance 109, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 360,
 offset 3c70, dts 92467, size 39, distance 110, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 361,
 offset 3c97, dts 92723, size 37, distance 111, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 362,
 offset 3cbc, dts 92979, size 37, distance 112, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 363,
 offset 3ce1, dts 93235, size 46, distance 113, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 364,
 offset 3d0f, dts 93491, size 39, distance 114, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 365,
 offset 3d36, dts 93747, size 37, distance 115, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 366,
 offset 3d5b, dts 94003, size 37, distance 116, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 367,
 offset 3d80, dts 94259, size 46, distance 117, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 368,
 offset 3dae, dts 94515, size 39, distance 118, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 369,
 offset 3dd5, dts 94771, size 37, distance 119, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 370,
 offset 3dfa, dts 95027, size 37, distance 120, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 371,
 offset 3e1f, dts 95283, size 46, distance 121, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 372,
 offset 3e4d, dts 95539, size 39, distance 122, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 373,
 offset 3e74, dts 95795, size 37, distance 123, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 374,
 offset 3e99, dts 96051, size 37, distance 124, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 375,
 offset 3ebe, dts 96307, size 46, distance 125, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 376,
 offset 3eec, dts 96563, size 39, distance 126, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 377,
 offset 3f13, dts 96819, size 37, distance 127, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 378,
 offset 3f38, dts 97075, size 37, distance 128, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 379,
 offset 3f5d, dts 97331, size 46, distance 129, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 380,
 offset 3f8b, dts 97587, size 39, distance 130, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 381,
 offset 3fb2, dts 97843, size 37, distance 131, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 382,
 offset 3fd7, dts 98099, size 37, distance 132, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 383,
 offset 3ffc, dts 98355, size 46, distance 133, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 384,
 offset 402a, dts 98611, size 39, distance 134, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 385,
 offset 4051, dts 98867, size 37, distance 135, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 386,
 offset 4076, dts 99123, size 37, distance 136, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 387,
 offset 409b, dts 99379, size 46, distance 137, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 388,
 offset 40c9, dts 99635, size 39, distance 138, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 389,
 offset 40f0, dts 99891, size 37, distance 139, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 390,
 offset 4115, dts 100147, size 37, distance 140, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 391,
 offset 413a, dts 100403, size 46, distance 141, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 392,
 offset 4168, dts 100659, size 39, distance 142, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 393,
 offset 418f, dts 100915, size 37, distance 143, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 394,
 offset 41b4, dts 101171, size 37, distance 144, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 395,
 offset 41d9, dts 101427, size 45, distance 145, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 396,
 offset 4206, dts 101683, size 39, distance 146, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 397,
 offset 422d, dts 101939, size 37, distance 147, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 398,
 offset 4252, dts 102195, size 37, distance 148, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] AVIndex stream 0, sample 399,
 offset 4277, dts 102451, size 45, distance 149, keyframe 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] Processing st: 0, edit list 0 -
 media time: 512, duration: 102195
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] drop a frame at curr_cts: 0 @ 0
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] drop a frame at curr_cts: 410 @
 1
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'udta' parent:'moov' sz:
 97 2333 2422
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'meta' parent:'udta' sz:
 89 8 89
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'hdlr' parent:'meta' sz:
 33 8 77
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] ctype=[0][0][0][0]
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] stype=mdir
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'ilst' parent:'meta' sz:
 44 41 77
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] type:'[169]too' parent:'ilst'
 sz: 36 8 36
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] on_parse_exit_offset=19490
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] Before
 avformat_find_stream_info() pos: 19490 bytes read:19490 seeks:0
 nb_streams:1
 [h264 @ 0x55a0d0d82d80] nal_unit_type: 7(SPS), nal_ref_idc: 3
 [h264 @ 0x55a0d0d82d80] nal_unit_type: 8(PPS), nal_ref_idc: 3
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] stream 0, sample 0, dts -79980
 [h264 @ 0x55a0d0d82d80] nal_unit_type: 7(SPS), nal_ref_idc: 3
 [h264 @ 0x55a0d0d82d80] nal_unit_type: 8(PPS), nal_ref_idc: 3
 [h264 @ 0x55a0d0d82d80] nal_unit_type: 6(SEI), nal_ref_idc: 0
 [h264 @ 0x55a0d0d82d80] nal_unit_type: 5(IDR), nal_ref_idc: 3
 [h264 @ 0x55a0d0d82d80] Format yuv420p chosen by get_format().
 [h264 @ 0x55a0d0d82d80] Reinit context to 1280x720, pix_fmt: yuv420p
 [h264 @ 0x55a0d0d82d80] no picture
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] All info found
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] stream 0: start_time: 0
 duration: 9.97998
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] format: start_time: 0 duration:
 9.98 (estimate from stream) bitrate=15 kb/s
 [mov,mp4,m4a,3gp,3g2,mj2 @ 0x55a0d0d81640] After
 avformat_find_stream_info() pos: 992 bytes read:19490 seeks:0 frames:1
 Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'black.mp4':
   Metadata:
     major_brand     : isom
     minor_version   : 512
     compatible_brands: isomiso2avc1mp41
     encoder         : Lavf59.4.100
   Duration: 00:00:09.98, start: 0.000000, bitrate: 15 kb/s
   Stream #0:0(und), 1, 1/10240: Video: h264 (High), 1 reference frame
 (avc1 / 0x31637661), yuv420p(left), 1280x720 [SAR 1:1 DAR 16:9], 0/1, 13
 kb/s, 39.88 fps, 40 tbr, 10240 tbn (default)
     Metadata:
       handler_name    : VideoHandler
       vendor_id       : [0][0][0][0]
 Successfully opened the file.
 At least one output file must be specified
 [AVIOContext @ 0x55a0d0d8a300] Statistics: 19490 bytes read, 0 seeks


 }}}
-- 
Ticket URL: <https://trac.ffmpeg.org/ticket/9322>
FFmpeg <https://ffmpeg.org>
FFmpeg issue tracker


More information about the FFmpeg-trac mailing list