[PR] Parse iTunrs gapless info in mp3 files (PR #23985)

Romain Beauxis via ffmpeg-devel <[email protected]> Sun, 02 Aug 2026 17:07:12 -0000
Newsgroups gmane.comp.video.ffmpeg.devel
Message-ID <178569043272.59.17991812674162324534@29965ddac10e>
PR #23985 opened by Romain Beauxis (toots)
URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/23985
Patch URL: https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/23985.patch

This PRs is a reboot of https://code.ffmpeg.org/FFmpeg/FFmpeg/pulls/21082
1. Factor out `iTunSMPB` parsing
2. Implement mp3 demuxer logic

Follow-up candidates: the mp3 demuxer is limited to one packet only for discarded padding samples but reminders can span more than one.


>From 8f96de766f09b3e5f4c1796f03170fa27fa45ebc Mon Sep 17 00:00:00 2001
From: Romain Beauxis <[email protected]>
Date: Sun, 2 Aug 2026 11:40:58 -0500
Subject: [PATCH 1/2] avformat: factor out iTunSMPB parsing

Apple encoders store gapless playback information in this tag, in the
metadata of mp4 files and, as an ID3v2 comment, of mp3 files. Move the
parsing to a helper so that both demuxers read it the same way.

The sample counts are widened to 64 bits on the way: the valid sample
count field is 16 hexadecimal digits and did not fit the int it was
scanned into.
---
 libavformat/demux.h       | 18 ++++++++++++++++++
 libavformat/demux_utils.c | 12 ++++++++++++
 libavformat/mov.c         |  7 ++++---
 3 files changed, 34 insertions(+), 3 deletions(-)

diff --git a/libavformat/demux.h b/libavformat/demux.h
index f09afc849f..7284dbba4a 100644
--- a/libavformat/demux.h
+++ b/libavformat/demux.h
@@ -384,6 +384,24 @@ int ff_get_extradata(void *logctx, AVCodecParameters *par, AVIOContext *pb, int
  */
 int ff_find_stream_index(const AVFormatContext *s, int id);
 
+/**
+ * Parse the gapless playback information Apple encoders store in an iTunSMPB
+ * tag. The tag is a list of hexadecimal fields; the ones of interest are
+ *
+ *   <reserved> <priming> <remainder> <valid samples>
+ *
+ * The decoded stream holds the three sample counts back to back, the priming
+ * and remainder samples being encoder artifacts.
+ *
+ * @param value     tag contents
+ * @param priming   number of samples to discard at the start of the stream
+ * @param remainder number of samples to discard at the end of the stream
+ * @param samples   number of valid samples between the two
+ * @return >= 0 if OK, AVERROR_INVALIDDATA if the tag could not be parsed
+ */
+int ff_itunes_parse_smpb(const char *value, int64_t *priming,
+                         int64_t *remainder, int64_t *samples);
+
 int ff_buffer_packet(AVFormatContext *s, AVPacket *pkt);
 
 #endif /* AVFORMAT_DEMUX_H */
diff --git a/libavformat/demux_utils.c b/libavformat/demux_utils.c
index 0f22304e56..190ec7a0ce 100644
--- a/libavformat/demux_utils.c
+++ b/libavformat/demux_utils.c
@@ -19,6 +19,8 @@
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
+#include <inttypes.h>
+
 #include "libavutil/mem.h"
 
 #include "libavutil/avassert.h"
@@ -360,3 +362,13 @@ int ff_find_stream_index(const AVFormatContext *s, int id)
             return i;
     return -1;
 }
+
+int ff_itunes_parse_smpb(const char *value, int64_t *priming,
+                         int64_t *remainder, int64_t *samples)
+{
+    if (sscanf(value, "%*"SCNx64" %"SCNx64" %"SCNx64" %"SCNx64,
+               priming, remainder, samples) != 3)
+        return AVERROR_INVALIDDATA;
+
+    return 0;
+}
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 5a66d572ee..b9cf9994f0 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -5819,8 +5819,8 @@ static int mov_read_custom(MOVContext *c, AVIOContext *pb, MOVAtom atom)
 
     if (mean && key && val) {
         if (strcmp(key, "iTunSMPB") == 0) {
-            int priming, remainder, samples;
-            if(sscanf(val, "%*X %X %X %X", &priming, &remainder, &samples) == 3){
+            int64_t priming, remainder, samples;
+            if (ff_itunes_parse_smpb(val, &priming, &remainder, &samples) >= 0) {
                 if(priming>0 && priming<16384)
                     st->codecpar->initial_padding = priming = av_rescale_q(priming, st->time_base,
                                                                            (AVRational){ 1, st->codecpar->sample_rate });
@@ -5836,7 +5836,8 @@ static int mov_read_custom(MOVContext *c, AVIOContext *pb, MOVAtom atom)
                         ffstream(st)->last_discard_sample = duration;
                     }
                 }
-                av_log(c->fc, AV_LOG_DEBUG, "Parsed iTunSMPB: priming %d, remainder %d samples %d\n",
+                av_log(c->fc, AV_LOG_DEBUG, "Parsed iTunSMPB: priming %"PRId64", "
+                       "remainder %"PRId64" samples %"PRId64"\n",
                        priming, remainder, samples);
             }
         }
-- 
2.52.0


>From 6529cf5f442a9758a1fd1d1f74563e969a933cf4 Mon Sep 17 00:00:00 2001
From: Romain Beauxis <[email protected]>
Date: Sun, 2 Aug 2026 11:47:08 -0500
Subject: [PATCH 2/2] avformat/mp3dec: parse iTunes gapless info

Apple encoders do not write the LAME extension of the Xing tag, so the
files they produce currently get no gapless handling at all, and no exact
duration either: the sample used here carries no VBR tag whatsoever and
falls back to estimating its duration from the bitrate.

Contrary to the LAME tag, the priming count of iTunSMPB covers the 528 + 1
samples of decoder delay, which is how the mov demuxer already reads it.
The three sample counts add up to what the frames decode to, so use that
identity to validate the tag whenever the frame count is known.

The id3v2 reencoding references change accordingly, they transcode the
very sample this trims.
---
 libavformat/mp3dec.c                          |  48 ++-
 tests/fate/gapless.mak                        |   6 +
 tests/ref/fate/gapless-mp3-itunes             |   5 +
 tests/ref/fate/gapless-mp3-itunes-side-data   | 368 ++++++++++++++++++
 tests/ref/fate/id3v2-reenc-delete-metadata    |   4 +-
 .../ref/fate/id3v2-reenc-delete-metadata-keep |   4 +-
 .../id3v2-reenc-delete-metadata-keep-format   |   4 +-
 .../id3v2-reenc-delete-metadata-keep-stream   |   4 +-
 .../id3v2-reenc-delete-metadata-map-metadata  |   4 +-
 tests/ref/fate/id3v2-reenc-remux-keep         |   2 +-
 10 files changed, 435 insertions(+), 14 deletions(-)
 create mode 100644 tests/ref/fate/gapless-mp3-itunes
 create mode 100644 tests/ref/fate/gapless-mp3-itunes-side-data

diff --git a/libavformat/mp3dec.c b/libavformat/mp3dec.c
index bc1c927d80..1997f85392 100644
--- a/libavformat/mp3dec.c
+++ b/libavformat/mp3dec.c
@@ -315,6 +315,46 @@ static void mp3_parse_vbri_tag(AVFormatContext *s, AVStream *st, int64_t base)
     }
 }
 
+/**
+ * Parse the gapless playback information Apple encoders store in an iTunSMPB
+ * comment instead of in the LAME extension of the Xing tag.
+ */
+static void mp3_parse_itunes_smpb(AVFormatContext *s, AVStream *st,
+                                  const MPADecodeHeader *c, uint32_t spf)
+{
+    FFStream *const sti = ffstream(st);
+    MP3DecContext *mp3 = s->priv_data;
+    const AVDictionaryEntry *de;
+    int64_t priming, remainder, samples;
+
+    /* A LAME tag, if any, already described the padding. */
+    if (sti->start_skip_samples)
+        return;
+
+    if (!(de = av_dict_get(s->metadata, "comment-iTunSMPB-eng", NULL, 0)) &&
+        !(de = av_dict_get(s->metadata, "iTunSMPB", NULL, 0)))
+        return;
+
+    if (ff_itunes_parse_smpb(de->value, &priming, &remainder, &samples) < 0)
+        return;
+
+    if (priming < 0 || priming > 16384 || remainder < 0 || samples <= 0)
+        return;
+
+    /* The three counts must add up to what the frames actually decode to. */
+    if (mp3->frames &&
+        priming + samples + remainder != mp3->frames * (int64_t)spf)
+        return;
+
+    /* Contrary to the LAME tag, the priming count covers the decoder delay. */
+    sti->start_skip_samples   = priming;
+    sti->first_discard_sample = priming + samples;
+    sti->last_discard_sample  = priming + samples + remainder;
+
+    st->duration = av_rescale_q(samples, (AVRational){ 1, c->sample_rate },
+                                st->time_base);
+}
+
 /**
  * Try to find Xing/Info/VBRI tags and compute duration from info therein
  */
@@ -346,6 +386,7 @@ static int mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, int64_t base)
 
     mp3_parse_info_tag(s, st, &c, spf);
     mp3_parse_vbri_tag(s, st, base);
+    mp3_parse_itunes_smpb(s, st, &c, spf);
 
     if (!mp3->frames && !mp3->header_filesize)
         return -1;
@@ -357,9 +398,10 @@ static int mp3_parse_vbr_tags(AVFormatContext *s, AVStream *st, int64_t base)
         int64_t full_duration_samples;
 
         full_duration_samples = mp3->frames * (int64_t)spf;
-        st->duration = av_rescale_q(full_duration_samples - mp3->start_pad - mp3->end_pad,
-                                    (AVRational){1, c.sample_rate},
-                                    st->time_base);
+        if (st->duration == AV_NOPTS_VALUE)
+            st->duration = av_rescale_q(full_duration_samples - mp3->start_pad - mp3->end_pad,
+                                        (AVRational){1, c.sample_rate},
+                                        st->time_base);
 
         if (mp3->header_filesize && !mp3->is_cbr)
             st->codecpar->bit_rate = av_rescale(mp3->header_filesize, 8 * c.sample_rate,
diff --git a/tests/fate/gapless.mak b/tests/fate/gapless.mak
index c5addeebba..25a13eb1cc 100644
--- a/tests/fate/gapless.mak
+++ b/tests/fate/gapless.mak
@@ -4,6 +4,12 @@ fate-gapless-mp3: CMD = gapless $(TARGET_SAMPLES)/gapless/gapless.mp3 "-c:a mp3"
 FATE_GAPLESSINFO_PROBE-$(CONFIG_MP3_DEMUXER) += fate-gapless-mp3-side-data
 fate-gapless-mp3-side-data: CMD = ffprobe_demux $(TARGET_SAMPLES)/gapless/gapless.mp3
 
+FATE_GAPLESS-$(call FRAMECRC, MP3, MP3, ARESAMPLE_FILTER) += fate-gapless-mp3-itunes
+fate-gapless-mp3-itunes: CMD = gapless $(TARGET_SAMPLES)/gapless/gapless-itunes.mp3 "-c:a mp3"
+
+FATE_GAPLESSINFO_PROBE-$(CONFIG_MP3_DEMUXER) += fate-gapless-mp3-itunes-side-data
+fate-gapless-mp3-itunes-side-data: CMD = ffprobe_demux $(TARGET_SAMPLES)/gapless/gapless-itunes.mp3
+
 FATE_GAPLESS-$(call DEMDEC, MP3, MP3, ARESAMPLE_FILTER WAV_MUXER) += fate-audiomatch-square-mp3
 fate-audiomatch-square-mp3: CMD = audio_match $(TARGET_SAMPLES)/audiomatch/square3.mp3 $(SAMPLES)/audiomatch/square3.wav
 
diff --git a/tests/ref/fate/gapless-mp3-itunes b/tests/ref/fate/gapless-mp3-itunes
new file mode 100644
index 0000000000..c829c397b8
--- /dev/null
+++ b/tests/ref/fate/gapless-mp3-itunes
@@ -0,0 +1,5 @@
+b9c05e4d68c1b435611e798aff2aeac0 *tests/data/fate/gapless-mp3-itunes.out-1
+81cf1a5d04e513c4f17fffa6c0427665
+b9c05e4d68c1b435611e798aff2aeac0 *tests/data/fate/gapless-mp3-itunes.out-2
+81cf1a5d04e513c4f17fffa6c0427665
+749b5b5b9ff0cc42e6a776639c2c9675 *tests/data/fate/gapless-mp3-itunes.out-3
diff --git a/tests/ref/fate/gapless-mp3-itunes-side-data b/tests/ref/fate/gapless-mp3-itunes-side-data
new file mode 100644
index 0000000000..5899f48a02
--- /dev/null
+++ b/tests/ref/fate/gapless-mp3-itunes-side-data
@@ -0,0 +1,368 @@
+packet|codec_type=audio|stream_index=0|pts=0|pts_time=0.000000|dts=0|dts_time=0.000000|duration=368640|duration_time=0.026122|size=522|pos=2116|flags=K__|data_hash=CRC32:cb8bf0d2|side_datum/skip_samples:side_data_type=Skip Samples|side_datum/skip_samples:skip_samples=528|side_datum/skip_samples:discard_padding=0|side_datum/skip_samples:skip_reason=0|side_datum/skip_samples:discard_reason=0
+packet|codec_type=audio|stream_index=0|pts=368640|pts_time=0.026122|dts=368640|dts_time=0.026122|duration=368640|duration_time=0.026122|size=523|pos=2638|flags=K__|data_hash=CRC32:b5f6b3d9
+packet|codec_type=audio|stream_index=0|pts=737280|pts_time=0.052245|dts=737280|dts_time=0.052245|duration=368640|duration_time=0.026122|size=522|pos=3161|flags=K__|data_hash=CRC32:cfcf2233
+packet|codec_type=audio|stream_index=0|pts=1105920|pts_time=0.078367|dts=1105920|dts_time=0.078367|duration=368640|duration_time=0.026122|size=523|pos=3683|flags=K__|data_hash=CRC32:cd17b8d3
+packet|codec_type=audio|stream_index=0|pts=1474560|pts_time=0.104490|dts=1474560|dts_time=0.104490|duration=368640|duration_time=0.026122|size=522|pos=4206|flags=K__|data_hash=CRC32:c2691fca
+packet|codec_type=audio|stream_index=0|pts=1843200|pts_time=0.130612|dts=1843200|dts_time=0.130612|duration=368640|duration_time=0.026122|size=523|pos=4728|flags=K__|data_hash=CRC32:c6e24549
+packet|codec_type=audio|stream_index=0|pts=2211840|pts_time=0.156735|dts=2211840|dts_time=0.156735|duration=368640|duration_time=0.026122|size=522|pos=5251|flags=K__|data_hash=CRC32:c8f82421
+packet|codec_type=audio|stream_index=0|pts=2580480|pts_time=0.182857|dts=2580480|dts_time=0.182857|duration=368640|duration_time=0.026122|size=523|pos=5773|flags=K__|data_hash=CRC32:7426fb62
+packet|codec_type=audio|stream_index=0|pts=2949120|pts_time=0.208980|dts=2949120|dts_time=0.208980|duration=368640|duration_time=0.026122|size=522|pos=6296|flags=K__|data_hash=CRC32:980748ed
+packet|codec_type=audio|stream_index=0|pts=3317760|pts_time=0.235102|dts=3317760|dts_time=0.235102|duration=368640|duration_time=0.026122|size=522|pos=6818|flags=K__|data_hash=CRC32:3119010b
+packet|codec_type=audio|stream_index=0|pts=3686400|pts_time=0.261224|dts=3686400|dts_time=0.261224|duration=368640|duration_time=0.026122|size=523|pos=7340|flags=K__|data_hash=CRC32:5dd00a29
+packet|codec_type=audio|stream_index=0|pts=4055040|pts_time=0.287347|dts=4055040|dts_time=0.287347|duration=368640|duration_time=0.026122|size=522|pos=7863|flags=K__|data_hash=CRC32:13f3c116
+packet|codec_type=audio|stream_index=0|pts=4423680|pts_time=0.313469|dts=4423680|dts_time=0.313469|duration=368640|duration_time=0.026122|size=523|pos=8385|flags=K__|data_hash=CRC32:9ed8e083
+packet|codec_type=audio|stream_index=0|pts=4792320|pts_time=0.339592|dts=4792320|dts_time=0.339592|duration=368640|duration_time=0.026122|size=522|pos=8908|flags=K__|data_hash=CRC32:40fe2cc3
+packet|codec_type=audio|stream_index=0|pts=5160960|pts_time=0.365714|dts=5160960|dts_time=0.365714|duration=368640|duration_time=0.026122|size=523|pos=9430|flags=K__|data_hash=CRC32:84ece2d4
+packet|codec_type=audio|stream_index=0|pts=5529600|pts_time=0.391837|dts=5529600|dts_time=0.391837|duration=368640|duration_time=0.026122|size=522|pos=9953|flags=K__|data_hash=CRC32:6885bde4
+packet|codec_type=audio|stream_index=0|pts=5898240|pts_time=0.417959|dts=5898240|dts_time=0.417959|duration=368640|duration_time=0.026122|size=523|pos=10475|flags=K__|data_hash=CRC32:26ef62bd
+packet|codec_type=audio|stream_index=0|pts=6266880|pts_time=0.444082|dts=6266880|dts_time=0.444082|duration=368640|duration_time=0.026122|size=522|pos=10998|flags=K__|data_hash=CRC32:160ffade
+packet|codec_type=audio|stream_index=0|pts=6635520|pts_time=0.470204|dts=6635520|dts_time=0.470204|duration=368640|duration_time=0.026122|size=522|pos=11520|flags=K__|data_hash=CRC32:02534b59
+packet|codec_type=audio|stream_index=0|pts=7004160|pts_time=0.496327|dts=7004160|dts_time=0.496327|duration=368640|duration_time=0.026122|size=523|pos=12042|flags=K__|data_hash=CRC32:f18bf4ba
+packet|codec_type=audio|stream_index=0|pts=7372800|pts_time=0.522449|dts=7372800|dts_time=0.522449|duration=368640|duration_time=0.026122|size=522|pos=12565|flags=K__|data_hash=CRC32:37288bec
+packet|codec_type=audio|stream_index=0|pts=7741440|pts_time=0.548571|dts=7741440|dts_time=0.548571|duration=368640|duration_time=0.026122|size=523|pos=13087|flags=K__|data_hash=CRC32:b65ef421
+packet|codec_type=audio|stream_index=0|pts=8110080|pts_time=0.574694|dts=8110080|dts_time=0.574694|duration=368640|duration_time=0.026122|size=522|pos=13610|flags=K__|data_hash=CRC32:3c4a2b0d
+packet|codec_type=audio|stream_index=0|pts=8478720|pts_time=0.600816|dts=8478720|dts_time=0.600816|duration=368640|duration_time=0.026122|size=523|pos=14132|flags=K__|data_hash=CRC32:a8be8245
+packet|codec_type=audio|stream_index=0|pts=8847360|pts_time=0.626939|dts=8847360|dts_time=0.626939|duration=368640|duration_time=0.026122|size=522|pos=14655|flags=K__|data_hash=CRC32:73ac52ca
+packet|codec_type=audio|stream_index=0|pts=9216000|pts_time=0.653061|dts=9216000|dts_time=0.653061|duration=368640|duration_time=0.026122|size=523|pos=15177|flags=K__|data_hash=CRC32:093d9fd7
+packet|codec_type=audio|stream_index=0|pts=9584640|pts_time=0.679184|dts=9584640|dts_time=0.679184|duration=368640|duration_time=0.026122|size=522|pos=15700|flags=K__|data_hash=CRC32:2823e67d
+packet|codec_type=audio|stream_index=0|pts=9953280|pts_time=0.705306|dts=9953280|dts_time=0.705306|duration=368640|duration_time=0.026122|size=523|pos=16222|flags=K__|data_hash=CRC32:f8cb7baa
+packet|codec_type=audio|stream_index=0|pts=10321920|pts_time=0.731429|dts=10321920|dts_time=0.731429|duration=368640|duration_time=0.026122|size=522|pos=16745|flags=K__|data_hash=CRC32:7167d856
+packet|codec_type=audio|stream_index=0|pts=10690560|pts_time=0.757551|dts=10690560|dts_time=0.757551|duration=368640|duration_time=0.026122|size=522|pos=17267|flags=K__|data_hash=CRC32:8e5c25c3
+packet|codec_type=audio|stream_index=0|pts=11059200|pts_time=0.783673|dts=11059200|dts_time=0.783673|duration=368640|duration_time=0.026122|size=523|pos=17789|flags=K__|data_hash=CRC32:2dcba5b2
+packet|codec_type=audio|stream_index=0|pts=11427840|pts_time=0.809796|dts=11427840|dts_time=0.809796|duration=368640|duration_time=0.026122|size=522|pos=18312|flags=K__|data_hash=CRC32:85f09207
+packet|codec_type=audio|stream_index=0|pts=11796480|pts_time=0.835918|dts=11796480|dts_time=0.835918|duration=368640|duration_time=0.026122|size=523|pos=18834|flags=K__|data_hash=CRC32:0dae0e5f
+packet|codec_type=audio|stream_index=0|pts=12165120|pts_time=0.862041|dts=12165120|dts_time=0.862041|duration=368640|duration_time=0.026122|size=522|pos=19357|flags=K__|data_hash=CRC32:c57269ae
+packet|codec_type=audio|stream_index=0|pts=12533760|pts_time=0.888163|dts=12533760|dts_time=0.888163|duration=368640|duration_time=0.026122|size=523|pos=19879|flags=K__|data_hash=CRC32:cf221b52
+packet|codec_type=audio|stream_index=0|pts=12902400|pts_time=0.914286|dts=12902400|dts_time=0.914286|duration=368640|duration_time=0.026122|size=522|pos=20402|flags=K__|data_hash=CRC32:07fa45d0
+packet|codec_type=audio|stream_index=0|pts=13271040|pts_time=0.940408|dts=13271040|dts_time=0.940408|duration=368640|duration_time=0.026122|size=523|pos=20924|flags=K__|data_hash=CRC32:5c5c1897
+packet|codec_type=audio|stream_index=0|pts=13639680|pts_time=0.966531|dts=13639680|dts_time=0.966531|duration=368640|duration_time=0.026122|size=522|pos=21447|flags=K__|data_hash=CRC32:9b3c9488
+packet|codec_type=audio|stream_index=0|pts=14008320|pts_time=0.992653|dts=14008320|dts_time=0.992653|duration=368640|duration_time=0.026122|size=522|pos=21969|flags=K__|data_hash=CRC32:e3231f54
+packet|codec_type=audio|stream_index=0|pts=14376960|pts_time=1.018776|dts=14376960|dts_time=1.018776|duration=368640|duration_time=0.026122|size=523|pos=22491|flags=K__|data_hash=CRC32:672005e4
+packet|codec_type=audio|stream_index=0|pts=14745600|pts_time=1.044898|dts=14745600|dts_time=1.044898|duration=368640|duration_time=0.026122|size=522|pos=23014|flags=K__|data_hash=CRC32:b47e12ce
+packet|codec_type=audio|stream_index=0|pts=15114240|pts_time=1.071020|dts=15114240|dts_time=1.071020|duration=368640|duration_time=0.026122|size=523|pos=23536|flags=K__|data_hash=CRC32:3c0951f9
+packet|codec_type=audio|stream_index=0|pts=15482880|pts_time=1.097143|dts=15482880|dts_time=1.097143|duration=368640|duration_time=0.026122|size=522|pos=24059|flags=K__|data_hash=CRC32:b87f4667
+packet|codec_type=audio|stream_index=0|pts=15851520|pts_time=1.123265|dts=15851520|dts_time=1.123265|duration=368640|duration_time=0.026122|size=523|pos=24581|flags=K__|data_hash=CRC32:4f589fc9
+packet|codec_type=audio|stream_index=0|pts=16220160|pts_time=1.149388|dts=16220160|dts_time=1.149388|duration=368640|duration_time=0.026122|size=522|pos=25104|flags=K__|data_hash=CRC32:0fd9d610
+packet|codec_type=audio|stream_index=0|pts=16588800|pts_time=1.175510|dts=16588800|dts_time=1.175510|duration=368640|duration_time=0.026122|size=523|pos=25626|flags=K__|data_hash=CRC32:03635db2
+packet|codec_type=audio|stream_index=0|pts=16957440|pts_time=1.201633|dts=16957440|dts_time=1.201633|duration=368640|duration_time=0.026122|size=522|pos=26149|flags=K__|data_hash=CRC32:a798749c
+packet|codec_type=audio|stream_index=0|pts=17326080|pts_time=1.227755|dts=17326080|dts_time=1.227755|duration=368640|duration_time=0.026122|size=522|pos=26671|flags=K__|data_hash=CRC32:1aab55e8
+packet|codec_type=audio|stream_index=0|pts=17694720|pts_time=1.253878|dts=17694720|dts_time=1.253878|duration=368640|duration_time=0.026122|size=523|pos=27193|flags=K__|data_hash=CRC32:2f981136
+packet|codec_type=audio|stream_index=0|pts=18063360|pts_time=1.280000|dts=18063360|dts_time=1.280000|duration=368640|duration_time=0.026122|size=522|pos=27716|flags=K__|data_hash=CRC32:964271ce
+packet|codec_type=audio|stream_index=0|pts=18432000|pts_time=1.306122|dts=18432000|dts_time=1.306122|duration=368640|duration_time=0.026122|size=523|pos=28238|flags=K__|data_hash=CRC32:f34c55e7
+packet|codec_type=audio|stream_index=0|pts=18800640|pts_time=1.332245|dts=18800640|dts_time=1.332245|duration=368640|duration_time=0.026122|size=522|pos=28761|flags=K__|data_hash=CRC32:1556912d
+packet|codec_type=audio|stream_index=0|pts=19169280|pts_time=1.358367|dts=19169280|dts_time=1.358367|duration=368640|duration_time=0.026122|size=523|pos=29283|flags=K__|data_hash=CRC32:de160c14
+packet|codec_type=audio|stream_index=0|pts=19537920|pts_time=1.384490|dts=19537920|dts_time=1.384490|duration=368640|duration_time=0.026122|size=522|pos=29806|flags=K__|data_hash=CRC32:7a4c6e83
+packet|codec_type=audio|stream_index=0|pts=19906560|pts_time=1.410612|dts=19906560|dts_time=1.410612|duration=368640|duration_time=0.026122|size=523|pos=30328|flags=K__|data_hash=CRC32:8321b347
+packet|codec_type=audio|stream_index=0|pts=20275200|pts_time=1.436735|dts=20275200|dts_time=1.436735|duration=368640|duration_time=0.026122|size=522|pos=30851|flags=K__|data_hash=CRC32:ed6bcf3e
+packet|codec_type=audio|stream_index=0|pts=20643840|pts_time=1.462857|dts=20643840|dts_time=1.462857|duration=368640|duration_time=0.026122|size=523|pos=31373|flags=K__|data_hash=CRC32:24f0a9b0
+packet|codec_type=audio|stream_index=0|pts=21012480|pts_time=1.488980|dts=21012480|dts_time=1.488980|duration=368640|duration_time=0.026122|size=522|pos=31896|flags=K__|data_hash=CRC32:02613bb2
+packet|codec_type=audio|stream_index=0|pts=21381120|pts_time=1.515102|dts=21381120|dts_time=1.515102|duration=368640|duration_time=0.026122|size=522|pos=32418|flags=K__|data_hash=CRC32:aff42c84
+packet|codec_type=audio|stream_index=0|pts=21749760|pts_time=1.541224|dts=21749760|dts_time=1.541224|duration=368640|duration_time=0.026122|size=523|pos=32940|flags=K__|data_hash=CRC32:f8dc6c42
+packet|codec_type=audio|stream_index=0|pts=22118400|pts_time=1.567347|dts=22118400|dts_time=1.567347|duration=368640|duration_time=0.026122|size=522|pos=33463|flags=K__|data_hash=CRC32:fa95b288
+packet|codec_type=audio|stream_index=0|pts=22487040|pts_time=1.593469|dts=22487040|dts_time=1.593469|duration=368640|duration_time=0.026122|size=523|pos=33985|flags=K__|data_hash=CRC32:4a1e419f
+packet|codec_type=audio|stream_index=0|pts=22855680|pts_time=1.619592|dts=22855680|dts_time=1.619592|duration=368640|duration_time=0.026122|size=522|pos=34508|flags=K__|data_hash=CRC32:b077f800
+packet|codec_type=audio|stream_index=0|pts=23224320|pts_time=1.645714|dts=23224320|dts_time=1.645714|duration=368640|duration_time=0.026122|size=523|pos=35030|flags=K__|data_hash=CRC32:bf24f390
+packet|codec_type=audio|stream_index=0|pts=23592960|pts_time=1.671837|dts=23592960|dts_time=1.671837|duration=368640|duration_time=0.026122|size=522|pos=35553|flags=K__|data_hash=CRC32:fa84d487
+packet|codec_type=audio|stream_index=0|pts=23961600|pts_time=1.697959|dts=23961600|dts_time=1.697959|duration=368640|duration_time=0.026122|size=523|pos=36075|flags=K__|data_hash=CRC32:7055844e
+packet|codec_type=audio|stream_index=0|pts=24330240|pts_time=1.724082|dts=24330240|dts_time=1.724082|duration=368640|duration_time=0.026122|size=522|pos=36598|flags=K__|data_hash=CRC32:21977bc0
+packet|codec_type=audio|stream_index=0|pts=24698880|pts_time=1.750204|dts=24698880|dts_time=1.750204|duration=368640|duration_time=0.026122|size=522|pos=37120|flags=K__|data_hash=CRC32:9c2f02e4
+packet|codec_type=audio|stream_index=0|pts=25067520|pts_time=1.776327|dts=25067520|dts_time=1.776327|duration=368640|duration_time=0.026122|size=523|pos=37642|flags=K__|data_hash=CRC32:b0bdbe66
+packet|codec_type=audio|stream_index=0|pts=25436160|pts_time=1.802449|dts=25436160|dts_time=1.802449|duration=368640|duration_time=0.026122|size=522|pos=38165|flags=K__|data_hash=CRC32:d338244c
+packet|codec_type=audio|stream_index=0|pts=25804800|pts_time=1.828571|dts=25804800|dts_time=1.828571|duration=368640|duration_time=0.026122|size=523|pos=38687|flags=K__|data_hash=CRC32:c8749604
+packet|codec_type=audio|stream_index=0|pts=26173440|pts_time=1.854694|dts=26173440|dts_time=1.854694|duration=368640|duration_time=0.026122|size=522|pos=39210|flags=K__|data_hash=CRC32:2b80cb38
+packet|codec_type=audio|stream_index=0|pts=26542080|pts_time=1.880816|dts=26542080|dts_time=1.880816|duration=368640|duration_time=0.026122|size=523|pos=39732|flags=K__|data_hash=CRC32:593259c9
+packet|codec_type=audio|stream_index=0|pts=26910720|pts_time=1.906939|dts=26910720|dts_time=1.906939|duration=368640|duration_time=0.026122|size=522|pos=40255|flags=K__|data_hash=CRC32:bd5410b9
+packet|codec_type=audio|stream_index=0|pts=27279360|pts_time=1.933061|dts=27279360|dts_time=1.933061|duration=368640|duration_time=0.026122|size=523|pos=40777|flags=K__|data_hash=CRC32:3c0d3cfa
+packet|codec_type=audio|stream_index=0|pts=27648000|pts_time=1.959184|dts=27648000|dts_time=1.959184|duration=368640|duration_time=0.026122|size=522|pos=41300|flags=K__|data_hash=CRC32:dd635edd
+packet|codec_type=audio|stream_index=0|pts=28016640|pts_time=1.985306|dts=28016640|dts_time=1.985306|duration=368640|duration_time=0.026122|size=523|pos=41822|flags=K__|data_hash=CRC32:06cd8977
+packet|codec_type=audio|stream_index=0|pts=28385280|pts_time=2.011429|dts=28385280|dts_time=2.011429|duration=368640|duration_time=0.026122|size=522|pos=42345|flags=K__|data_hash=CRC32:4cbd3489
+packet|codec_type=audio|stream_index=0|pts=28753920|pts_time=2.037551|dts=28753920|dts_time=2.037551|duration=368640|duration_time=0.026122|size=522|pos=42867|flags=K__|data_hash=CRC32:72ca6e30
+packet|codec_type=audio|stream_index=0|pts=29122560|pts_time=2.063673|dts=29122560|dts_time=2.063673|duration=368640|duration_time=0.026122|size=523|pos=43389|flags=K__|data_hash=CRC32:caac52b8
+packet|codec_type=audio|stream_index=0|pts=29491200|pts_time=2.089796|dts=29491200|dts_time=2.089796|duration=368640|duration_time=0.026122|size=522|pos=43912|flags=K__|data_hash=CRC32:22aa0a09
+packet|codec_type=audio|stream_index=0|pts=29859840|pts_time=2.115918|dts=29859840|dts_time=2.115918|duration=368640|duration_time=0.026122|size=523|pos=44434|flags=K__|data_hash=CRC32:55f3f3fc
+packet|codec_type=audio|stream_index=0|pts=30228480|pts_time=2.142041|dts=30228480|dts_time=2.142041|duration=368640|duration_time=0.026122|size=522|pos=44957|flags=K__|data_hash=CRC32:8f29e9e6
+packet|codec_type=audio|stream_index=0|pts=30597120|pts_time=2.168163|dts=30597120|dts_time=2.168163|duration=368640|duration_time=0.026122|size=523|pos=45479|flags=K__|data_hash=CRC32:7ad560c3
+packet|codec_type=audio|stream_index=0|pts=30965760|pts_time=2.194286|dts=30965760|dts_time=2.194286|duration=368640|duration_time=0.026122|size=522|pos=46002|flags=K__|data_hash=CRC32:b39f073f
+packet|codec_type=audio|stream_index=0|pts=31334400|pts_time=2.220408|dts=31334400|dts_time=2.220408|duration=368640|duration_time=0.026122|size=523|pos=46524|flags=K__|data_hash=CRC32:18a375cd
+packet|codec_type=audio|stream_index=0|pts=31703040|pts_time=2.246531|dts=31703040|dts_time=2.246531|duration=368640|duration_time=0.026122|size=522|pos=47047|flags=K__|data_hash=CRC32:bb54d016
+packet|codec_type=audio|stream_index=0|pts=32071680|pts_time=2.272653|dts=32071680|dts_time=2.272653|duration=368640|duration_time=0.026122|size=522|pos=47569|flags=K__|data_hash=CRC32:10b81331
+packet|codec_type=audio|stream_index=0|pts=32440320|pts_time=2.298776|dts=32440320|dts_time=2.298776|duration=368640|duration_time=0.026122|size=523|pos=48091|flags=K__|data_hash=CRC32:0c323216
+packet|codec_type=audio|stream_index=0|pts=32808960|pts_time=2.324898|dts=32808960|dts_time=2.324898|duration=368640|duration_time=0.026122|size=522|pos=48614|flags=K__|data_hash=CRC32:c2273299
+packet|codec_type=audio|stream_index=0|pts=33177600|pts_time=2.351020|dts=33177600|dts_time=2.351020|duration=368640|duration_time=0.026122|size=523|pos=49136|flags=K__|data_hash=CRC32:4218ec79
+packet|codec_type=audio|stream_index=0|pts=33546240|pts_time=2.377143|dts=33546240|dts_time=2.377143|duration=368640|duration_time=0.026122|size=522|pos=49659|flags=K__|data_hash=CRC32:b3dc5b94
+packet|codec_type=audio|stream_index=0|pts=33914880|pts_time=2.403265|dts=33914880|dts_time=2.403265|duration=368640|duration_time=0.026122|size=523|pos=50181|flags=K__|data_hash=CRC32:55419393
+packet|codec_type=audio|stream_index=0|pts=34283520|pts_time=2.429388|dts=34283520|dts_time=2.429388|duration=368640|duration_time=0.026122|size=522|pos=50704|flags=K__|data_hash=CRC32:dd926bf7
+packet|codec_type=audio|stream_index=0|pts=34652160|pts_time=2.455510|dts=34652160|dts_time=2.455510|duration=368640|duration_time=0.026122|size=523|pos=51226|flags=K__|data_hash=CRC32:a954bb90
+packet|codec_type=audio|stream_index=0|pts=35020800|pts_time=2.481633|dts=35020800|dts_time=2.481633|duration=368640|duration_time=0.026122|size=522|pos=51749|flags=K__|data_hash=CRC32:5c2f9999
+packet|codec_type=audio|stream_index=0|pts=35389440|pts_time=2.507755|dts=35389440|dts_time=2.507755|duration=368640|duration_time=0.026122|size=522|pos=52271|flags=K__|data_hash=CRC32:3fa7a10d
+packet|codec_type=audio|stream_index=0|pts=35758080|pts_time=2.533878|dts=35758080|dts_time=2.533878|duration=368640|duration_time=0.026122|size=523|pos=52793|flags=K__|data_hash=CRC32:31efbe34
+packet|codec_type=audio|stream_index=0|pts=36126720|pts_time=2.560000|dts=36126720|dts_time=2.560000|duration=368640|duration_time=0.026122|size=522|pos=53316|flags=K__|data_hash=CRC32:d88237d7
+packet|codec_type=audio|stream_index=0|pts=36495360|pts_time=2.586122|dts=36495360|dts_time=2.586122|duration=368640|duration_time=0.026122|size=523|pos=53838|flags=K__|data_hash=CRC32:47dc06c7
+packet|codec_type=audio|stream_index=0|pts=36864000|pts_time=2.612245|dts=36864000|dts_time=2.612245|duration=368640|duration_time=0.026122|size=522|pos=54361|flags=K__|data_hash=CRC32:db6c817e
+packet|codec_type=audio|stream_index=0|pts=37232640|pts_time=2.638367|dts=37232640|dts_time=2.638367|duration=368640|duration_time=0.026122|size=523|pos=54883|flags=K__|data_hash=CRC32:7739b740
+packet|codec_type=audio|stream_index=0|pts=37601280|pts_time=2.664490|dts=37601280|dts_time=2.664490|duration=368640|duration_time=0.026122|size=522|pos=55406|flags=K__|data_hash=CRC32:549aad27
+packet|codec_type=audio|stream_index=0|pts=37969920|pts_time=2.690612|dts=37969920|dts_time=2.690612|duration=368640|duration_time=0.026122|size=523|pos=55928|flags=K__|data_hash=CRC32:f2183d8a
+packet|codec_type=audio|stream_index=0|pts=38338560|pts_time=2.716735|dts=38338560|dts_time=2.716735|duration=368640|duration_time=0.026122|size=522|pos=56451|flags=K__|data_hash=CRC32:06217fc9
+packet|codec_type=audio|stream_index=0|pts=38707200|pts_time=2.742857|dts=38707200|dts_time=2.742857|duration=368640|duration_time=0.026122|size=523|pos=56973|flags=K__|data_hash=CRC32:fd91ac57
+packet|codec_type=audio|stream_index=0|pts=39075840|pts_time=2.768980|dts=39075840|dts_time=2.768980|duration=368640|duration_time=0.026122|size=522|pos=57496|flags=K__|data_hash=CRC32:a225ca84
+packet|codec_type=audio|stream_index=0|pts=39444480|pts_time=2.795102|dts=39444480|dts_time=2.795102|duration=368640|duration_time=0.026122|size=522|pos=58018|flags=K__|data_hash=CRC32:879fe1d1
+packet|codec_type=audio|stream_index=0|pts=39813120|pts_time=2.821224|dts=39813120|dts_time=2.821224|duration=368640|duration_time=0.026122|size=523|pos=58540|flags=K__|data_hash=CRC32:d92747b5
+packet|codec_type=audio|stream_index=0|pts=40181760|pts_time=2.847347|dts=40181760|dts_time=2.847347|duration=368640|duration_time=0.026122|size=522|pos=59063|flags=K__|data_hash=CRC32:fe632336
+packet|codec_type=audio|stream_index=0|pts=40550400|pts_time=2.873469|dts=40550400|dts_time=2.873469|duration=368640|duration_time=0.026122|size=523|pos=59585|flags=K__|data_hash=CRC32:2c40b0a3
+packet|codec_type=audio|stream_index=0|pts=40919040|pts_time=2.899592|dts=40919040|dts_time=2.899592|duration=368640|duration_time=0.026122|size=522|pos=60108|flags=K__|data_hash=CRC32:06995561
+packet|codec_type=audio|stream_index=0|pts=41287680|pts_time=2.925714|dts=41287680|dts_time=2.925714|duration=368640|duration_time=0.026122|size=523|pos=60630|flags=K__|data_hash=CRC32:0ac0393e
+packet|codec_type=audio|stream_index=0|pts=41656320|pts_time=2.951837|dts=41656320|dts_time=2.951837|duration=368640|duration_time=0.026122|size=522|pos=61153|flags=K__|data_hash=CRC32:6222e587
+packet|codec_type=audio|stream_index=0|pts=42024960|pts_time=2.977959|dts=42024960|dts_time=2.977959|duration=368640|duration_time=0.026122|size=523|pos=61675|flags=K__|data_hash=CRC32:24feb0d1
+packet|codec_type=audio|stream_index=0|pts=42393600|pts_time=3.004082|dts=42393600|dts_time=3.004082|duration=368640|duration_time=0.026122|size=522|pos=62198|flags=K__|data_hash=CRC32:9d7b8c78
+packet|codec_type=audio|stream_index=0|pts=42762240|pts_time=3.030204|dts=42762240|dts_time=3.030204|duration=368640|duration_time=0.026122|size=522|pos=62720|flags=K__|data_hash=CRC32:4b5789c1
+packet|codec_type=audio|stream_index=0|pts=43130880|pts_time=3.056327|dts=43130880|dts_time=3.056327|duration=368640|duration_time=0.026122|size=523|pos=63242|flags=K__|data_hash=CRC32:a2260583
+packet|codec_type=audio|stream_index=0|pts=43499520|pts_time=3.082449|dts=43499520|dts_time=3.082449|duration=368640|duration_time=0.026122|size=522|pos=63765|flags=K__|data_hash=CRC32:0e01d2c0
+packet|codec_type=audio|stream_index=0|pts=43868160|pts_time=3.108571|dts=43868160|dts_time=3.108571|duration=368640|duration_time=0.026122|size=523|pos=64287|flags=K__|data_hash=CRC32:f000f761
+packet|codec_type=audio|stream_index=0|pts=44236800|pts_time=3.134694|dts=44236800|dts_time=3.134694|duration=368640|duration_time=0.026122|size=522|pos=64810|flags=K__|data_hash=CRC32:ae12f271
+packet|codec_type=audio|stream_index=0|pts=44605440|pts_time=3.160816|dts=44605440|dts_time=3.160816|duration=368640|duration_time=0.026122|size=523|pos=65332|flags=K__|data_hash=CRC32:9760f211
+packet|codec_type=audio|stream_index=0|pts=44974080|pts_time=3.186939|dts=44974080|dts_time=3.186939|duration=368640|duration_time=0.026122|size=522|pos=65855|flags=K__|data_hash=CRC32:4f9f27fc
+packet|codec_type=audio|stream_index=0|pts=45342720|pts_time=3.213061|dts=45342720|dts_time=3.213061|duration=368640|duration_time=0.026122|size=523|pos=66377|flags=K__|data_hash=CRC32:95681051
+packet|codec_type=audio|stream_index=0|pts=45711360|pts_time=3.239184|dts=45711360|dts_time=3.239184|duration=368640|duration_time=0.026122|size=522|pos=66900|flags=K__|data_hash=CRC32:3c19afd9
+packet|codec_type=audio|stream_index=0|pts=46080000|pts_time=3.265306|dts=46080000|dts_time=3.265306|duration=368640|duration_time=0.026122|size=523|pos=67422|flags=K__|data_hash=CRC32:e63dbbb5
+packet|codec_type=audio|stream_index=0|pts=46448640|pts_time=3.291429|dts=46448640|dts_time=3.291429|duration=368640|duration_time=0.026122|size=522|pos=67945|flags=K__|data_hash=CRC32:c1d49b97
+packet|codec_type=audio|stream_index=0|pts=46817280|pts_time=3.317551|dts=46817280|dts_time=3.317551|duration=368640|duration_time=0.026122|size=522|pos=68467|flags=K__|data_hash=CRC32:c35d2c0c
+packet|codec_type=audio|stream_index=0|pts=47185920|pts_time=3.343673|dts=47185920|dts_time=3.343673|duration=368640|duration_time=0.026122|size=523|pos=68989|flags=K__|data_hash=CRC32:26783872
+packet|codec_type=audio|stream_index=0|pts=47554560|pts_time=3.369796|dts=47554560|dts_time=3.369796|duration=368640|duration_time=0.026122|size=522|pos=69512|flags=K__|data_hash=CRC32:69cf11cf
+packet|codec_type=audio|stream_index=0|pts=47923200|pts_time=3.395918|dts=47923200|dts_time=3.395918|duration=368640|duration_time=0.026122|size=523|pos=70034|flags=K__|data_hash=CRC32:9affb0f0
+packet|codec_type=audio|stream_index=0|pts=48291840|pts_time=3.422041|dts=48291840|dts_time=3.422041|duration=368640|duration_time=0.026122|size=522|pos=70557|flags=K__|data_hash=CRC32:e21c0e41
+packet|codec_type=audio|stream_index=0|pts=48660480|pts_time=3.448163|dts=48660480|dts_time=3.448163|duration=368640|duration_time=0.026122|size=523|pos=71079|flags=K__|data_hash=CRC32:b0275566
+packet|codec_type=audio|stream_index=0|pts=49029120|pts_time=3.474286|dts=49029120|dts_time=3.474286|duration=368640|duration_time=0.026122|size=522|pos=71602|flags=K__|data_hash=CRC32:283c06dc
+packet|codec_type=audio|stream_index=0|pts=49397760|pts_time=3.500408|dts=49397760|dts_time=3.500408|duration=368640|duration_time=0.026122|size=523|pos=72124|flags=K__|data_hash=CRC32:00d1419c
+packet|codec_type=audio|stream_index=0|pts=49766400|pts_time=3.526531|dts=49766400|dts_time=3.526531|duration=368640|duration_time=0.026122|size=522|pos=72647|flags=K__|data_hash=CRC32:460bbb8a
+packet|codec_type=audio|stream_index=0|pts=50135040|pts_time=3.552653|dts=50135040|dts_time=3.552653|duration=368640|duration_time=0.026122|size=522|pos=73169|flags=K__|data_hash=CRC32:c924479d
+packet|codec_type=audio|stream_index=0|pts=50503680|pts_time=3.578776|dts=50503680|dts_time=3.578776|duration=368640|duration_time=0.026122|size=523|pos=73691|flags=K__|data_hash=CRC32:40650a93
+packet|codec_type=audio|stream_index=0|pts=50872320|pts_time=3.604898|dts=50872320|dts_time=3.604898|duration=368640|duration_time=0.026122|size=522|pos=74214|flags=K__|data_hash=CRC32:9fe46736
+packet|codec_type=audio|stream_index=0|pts=51240960|pts_time=3.631020|dts=51240960|dts_time=3.631020|duration=368640|duration_time=0.026122|size=523|pos=74736|flags=K__|data_hash=CRC32:8cb9e816
+packet|codec_type=audio|stream_index=0|pts=51609600|pts_time=3.657143|dts=51609600|dts_time=3.657143|duration=368640|duration_time=0.026122|size=522|pos=75259|flags=K__|data_hash=CRC32:0745570f
+packet|codec_type=audio|stream_index=0|pts=51978240|pts_time=3.683265|dts=51978240|dts_time=3.683265|duration=368640|duration_time=0.026122|size=523|pos=75781|flags=K__|data_hash=CRC32:ce6d99da
+packet|codec_type=audio|stream_index=0|pts=52346880|pts_time=3.709388|dts=52346880|dts_time=3.709388|duration=368640|duration_time=0.026122|size=522|pos=76304|flags=K__|data_hash=CRC32:b7f202d1
+packet|codec_type=audio|stream_index=0|pts=52715520|pts_time=3.735510|dts=52715520|dts_time=3.735510|duration=368640|duration_time=0.026122|size=523|pos=76826|flags=K__|data_hash=CRC32:0d82937e
+packet|codec_type=audio|stream_index=0|pts=53084160|pts_time=3.761633|dts=53084160|dts_time=3.761633|duration=368640|duration_time=0.026122|size=522|pos=77349|flags=K__|data_hash=CRC32:e598e1ea
+packet|codec_type=audio|stream_index=0|pts=53452800|pts_time=3.787755|dts=53452800|dts_time=3.787755|duration=368640|duration_time=0.026122|size=522|pos=77871|flags=K__|data_hash=CRC32:71da9c4a
+packet|codec_type=audio|stream_index=0|pts=53821440|pts_time=3.813878|dts=53821440|dts_time=3.813878|duration=368640|duration_time=0.026122|size=523|pos=78393|flags=K__|data_hash=CRC32:fbf84d1e
+packet|codec_type=audio|stream_index=0|pts=54190080|pts_time=3.840000|dts=54190080|dts_time=3.840000|duration=368640|duration_time=0.026122|size=522|pos=78916|flags=K__|data_hash=CRC32:4db169ac
+packet|codec_type=audio|stream_index=0|pts=54558720|pts_time=3.866122|dts=54558720|dts_time=3.866122|duration=368640|duration_time=0.026122|size=523|pos=79438|flags=K__|data_hash=CRC32:37ed490f
+packet|codec_type=audio|stream_index=0|pts=54927360|pts_time=3.892245|dts=54927360|dts_time=3.892245|duration=368640|duration_time=0.026122|size=522|pos=79961|flags=K__|data_hash=CRC32:37177f92
+packet|codec_type=audio|stream_index=0|pts=55296000|pts_time=3.918367|dts=55296000|dts_time=3.918367|duration=368640|duration_time=0.026122|size=523|pos=80483|flags=K__|data_hash=CRC32:f65141c6
+packet|codec_type=audio|stream_index=0|pts=55664640|pts_time=3.944490|dts=55664640|dts_time=3.944490|duration=368640|duration_time=0.026122|size=522|pos=81006|flags=K__|data_hash=CRC32:1352ead1
+packet|codec_type=audio|stream_index=0|pts=56033280|pts_time=3.970612|dts=56033280|dts_time=3.970612|duration=368640|duration_time=0.026122|size=523|pos=81528|flags=K__|data_hash=CRC32:9065a0d8
+packet|codec_type=audio|stream_index=0|pts=56401920|pts_time=3.996735|dts=56401920|dts_time=3.996735|duration=368640|duration_time=0.026122|size=522|pos=82051|flags=K__|data_hash=CRC32:4f43032d
+packet|codec_type=audio|stream_index=0|pts=56770560|pts_time=4.022857|dts=56770560|dts_time=4.022857|duration=368640|duration_time=0.026122|size=523|pos=82573|flags=K__|data_hash=CRC32:de9c89c9
+packet|codec_type=audio|stream_index=0|pts=57139200|pts_time=4.048980|dts=57139200|dts_time=4.048980|duration=368640|duration_time=0.026122|size=522|pos=83096|flags=K__|data_hash=CRC32:bae5a654
+packet|codec_type=audio|stream_index=0|pts=57507840|pts_time=4.075102|dts=57507840|dts_time=4.075102|duration=368640|duration_time=0.026122|size=522|pos=83618|flags=K__|data_hash=CRC32:07ce2c80
+packet|codec_type=audio|stream_index=0|pts=57876480|pts_time=4.101224|dts=57876480|dts_time=4.101224|duration=368640|duration_time=0.026122|size=523|pos=84140|flags=K__|data_hash=CRC32:945ff2e0
+packet|codec_type=audio|stream_index=0|pts=58245120|pts_time=4.127347|dts=58245120|dts_time=4.127347|duration=368640|duration_time=0.026122|size=522|pos=84663|flags=K__|data_hash=CRC32:0fc085cb
+packet|codec_type=audio|stream_index=0|pts=58613760|pts_time=4.153469|dts=58613760|dts_time=4.153469|duration=368640|duration_time=0.026122|size=523|pos=85185|flags=K__|data_hash=CRC32:d6eac056
+packet|codec_type=audio|stream_index=0|pts=58982400|pts_time=4.179592|dts=58982400|dts_time=4.179592|duration=368640|duration_time=0.026122|size=522|pos=85708|flags=K__|data_hash=CRC32:7bd716eb
+packet|codec_type=audio|stream_index=0|pts=59351040|pts_time=4.205714|dts=59351040|dts_time=4.205714|duration=368640|duration_time=0.026122|size=523|pos=86230|flags=K__|data_hash=CRC32:258bb171
+packet|codec_type=audio|stream_index=0|pts=59719680|pts_time=4.231837|dts=59719680|dts_time=4.231837|duration=368640|duration_time=0.026122|size=522|pos=86753|flags=K__|data_hash=CRC32:404d7998
+packet|codec_type=audio|stream_index=0|pts=60088320|pts_time=4.257959|dts=60088320|dts_time=4.257959|duration=368640|duration_time=0.026122|size=523|pos=87275|flags=K__|data_hash=CRC32:5e5d077e
+packet|codec_type=audio|stream_index=0|pts=60456960|pts_time=4.284082|dts=60456960|dts_time=4.284082|duration=368640|duration_time=0.026122|size=522|pos=87798|flags=K__|data_hash=CRC32:b6b732a0
+packet|codec_type=audio|stream_index=0|pts=60825600|pts_time=4.310204|dts=60825600|dts_time=4.310204|duration=368640|duration_time=0.026122|size=522|pos=88320|flags=K__|data_hash=CRC32:06433cf8
+packet|codec_type=audio|stream_index=0|pts=61194240|pts_time=4.336327|dts=61194240|dts_time=4.336327|duration=368640|duration_time=0.026122|size=523|pos=88842|flags=K__|data_hash=CRC32:7565b128
+packet|codec_type=audio|stream_index=0|pts=61562880|pts_time=4.362449|dts=61562880|dts_time=4.362449|duration=368640|duration_time=0.026122|size=522|pos=89365|flags=K__|data_hash=CRC32:15970859
+packet|codec_type=audio|stream_index=0|pts=61931520|pts_time=4.388571|dts=61931520|dts_time=4.388571|duration=368640|duration_time=0.026122|size=523|pos=89887|flags=K__|data_hash=CRC32:b66db5d9
+packet|codec_type=audio|stream_index=0|pts=62300160|pts_time=4.414694|dts=62300160|dts_time=4.414694|duration=368640|duration_time=0.026122|size=522|pos=90410|flags=K__|data_hash=CRC32:53b2e9fe
+packet|codec_type=audio|stream_index=0|pts=62668800|pts_time=4.440816|dts=62668800|dts_time=4.440816|duration=368640|duration_time=0.026122|size=523|pos=90932|flags=K__|data_hash=CRC32:9fa67eb0
+packet|codec_type=audio|stream_index=0|pts=63037440|pts_time=4.466939|dts=63037440|dts_time=4.466939|duration=368640|duration_time=0.026122|size=522|pos=91455|flags=K__|data_hash=CRC32:5b44886e
+packet|codec_type=audio|stream_index=0|pts=63406080|pts_time=4.493061|dts=63406080|dts_time=4.493061|duration=368640|duration_time=0.026122|size=523|pos=91977|flags=K__|data_hash=CRC32:daf1afb4
+packet|codec_type=audio|stream_index=0|pts=63774720|pts_time=4.519184|dts=63774720|dts_time=4.519184|duration=368640|duration_time=0.026122|size=522|pos=92500|flags=K__|data_hash=CRC32:6ac33258
+packet|codec_type=audio|stream_index=0|pts=64143360|pts_time=4.545306|dts=64143360|dts_time=4.545306|duration=368640|duration_time=0.026122|size=523|pos=93022|flags=K__|data_hash=CRC32:cc9a1046
+packet|codec_type=audio|stream_index=0|pts=64512000|pts_time=4.571429|dts=64512000|dts_time=4.571429|duration=368640|duration_time=0.026122|size=522|pos=93545|flags=K__|data_hash=CRC32:7f8df7cf
+packet|codec_type=audio|stream_index=0|pts=64880640|pts_time=4.597551|dts=64880640|dts_time=4.597551|duration=368640|duration_time=0.026122|size=522|pos=94067|flags=K__|data_hash=CRC32:7d3e61ed
+packet|codec_type=audio|stream_index=0|pts=65249280|pts_time=4.623673|dts=65249280|dts_time=4.623673|duration=368640|duration_time=0.026122|size=523|pos=94589|flags=K__|data_hash=CRC32:fc36301d
+packet|codec_type=audio|stream_index=0|pts=65617920|pts_time=4.649796|dts=65617920|dts_time=4.649796|duration=368640|duration_time=0.026122|size=522|pos=95112|flags=K__|data_hash=CRC32:575a8a72
+packet|codec_type=audio|stream_index=0|pts=65986560|pts_time=4.675918|dts=65986560|dts_time=4.675918|duration=368640|duration_time=0.026122|size=523|pos=95634|flags=K__|data_hash=CRC32:ebcff7fd
+packet|codec_type=audio|stream_index=0|pts=66355200|pts_time=4.702041|dts=66355200|dts_time=4.702041|duration=368640|duration_time=0.026122|size=522|pos=96157|flags=K__|data_hash=CRC32:d6c09ba0
+packet|codec_type=audio|stream_index=0|pts=66723840|pts_time=4.728163|dts=66723840|dts_time=4.728163|duration=368640|duration_time=0.026122|size=523|pos=96679|flags=K__|data_hash=CRC32:7f718df6
+packet|codec_type=audio|stream_index=0|pts=67092480|pts_time=4.754286|dts=67092480|dts_time=4.754286|duration=368640|duration_time=0.026122|size=522|pos=97202|flags=K__|data_hash=CRC32:2c7cf60c
+packet|codec_type=audio|stream_index=0|pts=67461120|pts_time=4.780408|dts=67461120|dts_time=4.780408|duration=368640|duration_time=0.026122|size=523|pos=97724|flags=K__|data_hash=CRC32:beb0f613
+packet|codec_type=audio|stream_index=0|pts=67829760|pts_time=4.806531|dts=67829760|dts_time=4.806531|duration=368640|duration_time=0.026122|size=522|pos=98247|flags=K__|data_hash=CRC32:57453849
+packet|codec_type=audio|stream_index=0|pts=68198400|pts_time=4.832653|dts=68198400|dts_time=4.832653|duration=368640|duration_time=0.026122|size=522|pos=98769|flags=K__|data_hash=CRC32:c634f4c2
+packet|codec_type=audio|stream_index=0|pts=68567040|pts_time=4.858776|dts=68567040|dts_time=4.858776|duration=368640|duration_time=0.026122|size=523|pos=99291|flags=K__|data_hash=CRC32:241fa2ad
+packet|codec_type=audio|stream_index=0|pts=68935680|pts_time=4.884898|dts=68935680|dts_time=4.884898|duration=368640|duration_time=0.026122|size=522|pos=99814|flags=K__|data_hash=CRC32:244af1cd
+packet|codec_type=audio|stream_index=0|pts=69304320|pts_time=4.911020|dts=69304320|dts_time=4.911020|duration=368640|duration_time=0.026122|size=523|pos=100336|flags=K__|data_hash=CRC32:8441d4f2
+packet|codec_type=audio|stream_index=0|pts=69672960|pts_time=4.937143|dts=69672960|dts_time=4.937143|duration=368640|duration_time=0.026122|size=522|pos=100859|flags=K__|data_hash=CRC32:5a8631df
+packet|codec_type=audio|stream_index=0|pts=70041600|pts_time=4.963265|dts=70041600|dts_time=4.963265|duration=368640|duration_time=0.026122|size=523|pos=101381|flags=K__|data_hash=CRC32:9fe307b6
+packet|codec_type=audio|stream_index=0|pts=70410240|pts_time=4.989388|dts=70410240|dts_time=4.989388|duration=368640|duration_time=0.026122|size=522|pos=101904|flags=K__|data_hash=CRC32:a6aa6c2e
+packet|codec_type=audio|stream_index=0|pts=70778880|pts_time=5.015510|dts=70778880|dts_time=5.015510|duration=368640|duration_time=0.026122|size=523|pos=102426|flags=K__|data_hash=CRC32:3fa325f1
+packet|codec_type=audio|stream_index=0|pts=71147520|pts_time=5.041633|dts=71147520|dts_time=5.041633|duration=368640|duration_time=0.026122|size=522|pos=102949|flags=K__|data_hash=CRC32:90e5dee6
+packet|codec_type=audio|stream_index=0|pts=71516160|pts_time=5.067755|dts=71516160|dts_time=5.067755|duration=368640|duration_time=0.026122|size=522|pos=103471|flags=K__|data_hash=CRC32:58294b89
+packet|codec_type=audio|stream_index=0|pts=71884800|pts_time=5.093878|dts=71884800|dts_time=5.093878|duration=368640|duration_time=0.026122|size=523|pos=103993|flags=K__|data_hash=CRC32:f109ed0b
+packet|codec_type=audio|stream_index=0|pts=72253440|pts_time=5.120000|dts=72253440|dts_time=5.120000|duration=368640|duration_time=0.026122|size=522|pos=104516|flags=K__|data_hash=CRC32:951428b2
+packet|codec_type=audio|stream_index=0|pts=72622080|pts_time=5.146122|dts=72622080|dts_time=5.146122|duration=368640|duration_time=0.026122|size=523|pos=105038|flags=K__|data_hash=CRC32:221aaf23
+packet|codec_type=audio|stream_index=0|pts=72990720|pts_time=5.172245|dts=72990720|dts_time=5.172245|duration=368640|duration_time=0.026122|size=522|pos=105561|flags=K__|data_hash=CRC32:990ce3d6
+packet|codec_type=audio|stream_index=0|pts=73359360|pts_time=5.198367|dts=73359360|dts_time=5.198367|duration=368640|duration_time=0.026122|size=523|pos=106083|flags=K__|data_hash=CRC32:0ca717a7
+packet|codec_type=audio|stream_index=0|pts=73728000|pts_time=5.224490|dts=73728000|dts_time=5.224490|duration=368640|duration_time=0.026122|size=522|pos=106606|flags=K__|data_hash=CRC32:96229211
+packet|codec_type=audio|stream_index=0|pts=74096640|pts_time=5.250612|dts=74096640|dts_time=5.250612|duration=368640|duration_time=0.026122|size=523|pos=107128|flags=K__|data_hash=CRC32:1373267c
+packet|codec_type=audio|stream_index=0|pts=74465280|pts_time=5.276735|dts=74465280|dts_time=5.276735|duration=368640|duration_time=0.026122|size=522|pos=107651|flags=K__|data_hash=CRC32:81ed58ba
+packet|codec_type=audio|stream_index=0|pts=74833920|pts_time=5.302857|dts=74833920|dts_time=5.302857|duration=368640|duration_time=0.026122|size=523|pos=108173|flags=K__|data_hash=CRC32:ea306fd7
+packet|codec_type=audio|stream_index=0|pts=75202560|pts_time=5.328980|dts=75202560|dts_time=5.328980|duration=368640|duration_time=0.026122|size=522|pos=108696|flags=K__|data_hash=CRC32:2fceb491
+packet|codec_type=audio|stream_index=0|pts=75571200|pts_time=5.355102|dts=75571200|dts_time=5.355102|duration=368640|duration_time=0.026122|size=522|pos=109218|flags=K__|data_hash=CRC32:a76c61e3
+packet|codec_type=audio|stream_index=0|pts=75939840|pts_time=5.381224|dts=75939840|dts_time=5.381224|duration=368640|duration_time=0.026122|size=523|pos=109740|flags=K__|data_hash=CRC32:57099778
+packet|codec_type=audio|stream_index=0|pts=76308480|pts_time=5.407347|dts=76308480|dts_time=5.407347|duration=368640|duration_time=0.026122|size=522|pos=110263|flags=K__|data_hash=CRC32:e9cda843
+packet|codec_type=audio|stream_index=0|pts=76677120|pts_time=5.433469|dts=76677120|dts_time=5.433469|duration=368640|duration_time=0.026122|size=523|pos=110785|flags=K__|data_hash=CRC32:45d55340
+packet|codec_type=audio|stream_index=0|pts=77045760|pts_time=5.459592|dts=77045760|dts_time=5.459592|duration=368640|duration_time=0.026122|size=522|pos=111308|flags=K__|data_hash=CRC32:80a321fc
+packet|codec_type=audio|stream_index=0|pts=77414400|pts_time=5.485714|dts=77414400|dts_time=5.485714|duration=368640|duration_time=0.026122|size=523|pos=111830|flags=K__|data_hash=CRC32:e83688f5
+packet|codec_type=audio|stream_index=0|pts=77783040|pts_time=5.511837|dts=77783040|dts_time=5.511837|duration=368640|duration_time=0.026122|size=522|pos=112353|flags=K__|data_hash=CRC32:44ab81ae
+packet|codec_type=audio|stream_index=0|pts=78151680|pts_time=5.537959|dts=78151680|dts_time=5.537959|duration=368640|duration_time=0.026122|size=523|pos=112875|flags=K__|data_hash=CRC32:4b37cfa8
+packet|codec_type=audio|stream_index=0|pts=78520320|pts_time=5.564082|dts=78520320|dts_time=5.564082|duration=368640|duration_time=0.026122|size=522|pos=113398|flags=K__|data_hash=CRC32:89e3657f
+packet|codec_type=audio|stream_index=0|pts=78888960|pts_time=5.590204|dts=78888960|dts_time=5.590204|duration=368640|duration_time=0.026122|size=522|pos=113920|flags=K__|data_hash=CRC32:83a9606d
+packet|codec_type=audio|stream_index=0|pts=79257600|pts_time=5.616327|dts=79257600|dts_time=5.616327|duration=368640|duration_time=0.026122|size=523|pos=114442|flags=K__|data_hash=CRC32:11889229
+packet|codec_type=audio|stream_index=0|pts=79626240|pts_time=5.642449|dts=79626240|dts_time=5.642449|duration=368640|duration_time=0.026122|size=522|pos=114965|flags=K__|data_hash=CRC32:c3378520
+packet|codec_type=audio|stream_index=0|pts=79994880|pts_time=5.668571|dts=79994880|dts_time=5.668571|duration=368640|duration_time=0.026122|size=523|pos=115487|flags=K__|data_hash=CRC32:82c8dbc6
+packet|codec_type=audio|stream_index=0|pts=80363520|pts_time=5.694694|dts=80363520|dts_time=5.694694|duration=368640|duration_time=0.026122|size=522|pos=116010|flags=K__|data_hash=CRC32:be898457
+packet|codec_type=audio|stream_index=0|pts=80732160|pts_time=5.720816|dts=80732160|dts_time=5.720816|duration=368640|duration_time=0.026122|size=523|pos=116532|flags=K__|data_hash=CRC32:10c43037
+packet|codec_type=audio|stream_index=0|pts=81100800|pts_time=5.746939|dts=81100800|dts_time=5.746939|duration=368640|duration_time=0.026122|size=522|pos=117055|flags=K__|data_hash=CRC32:5c773fbd
+packet|codec_type=audio|stream_index=0|pts=81469440|pts_time=5.773061|dts=81469440|dts_time=5.773061|duration=368640|duration_time=0.026122|size=523|pos=117577|flags=K__|data_hash=CRC32:ddceee57
+packet|codec_type=audio|stream_index=0|pts=81838080|pts_time=5.799184|dts=81838080|dts_time=5.799184|duration=368640|duration_time=0.026122|size=522|pos=118100|flags=K__|data_hash=CRC32:f9e0eb08
+packet|codec_type=audio|stream_index=0|pts=82206720|pts_time=5.825306|dts=82206720|dts_time=5.825306|duration=368640|duration_time=0.026122|size=523|pos=118622|flags=K__|data_hash=CRC32:e4205798
+packet|codec_type=audio|stream_index=0|pts=82575360|pts_time=5.851429|dts=82575360|dts_time=5.851429|duration=368640|duration_time=0.026122|size=522|pos=119145|flags=K__|data_hash=CRC32:811a5a48
+packet|codec_type=audio|stream_index=0|pts=82944000|pts_time=5.877551|dts=82944000|dts_time=5.877551|duration=368640|duration_time=0.026122|size=522|pos=119667|flags=K__|data_hash=CRC32:f7474ebc
+packet|codec_type=audio|stream_index=0|pts=83312640|pts_time=5.903673|dts=83312640|dts_time=5.903673|duration=368640|duration_time=0.026122|size=523|pos=120189|flags=K__|data_hash=CRC32:5139209e
+packet|codec_type=audio|stream_index=0|pts=83681280|pts_time=5.929796|dts=83681280|dts_time=5.929796|duration=368640|duration_time=0.026122|size=522|pos=120712|flags=K__|data_hash=CRC32:dd20f975
+packet|codec_type=audio|stream_index=0|pts=84049920|pts_time=5.955918|dts=84049920|dts_time=5.955918|duration=368640|duration_time=0.026122|size=523|pos=121234|flags=K__|data_hash=CRC32:c11a72bc
+packet|codec_type=audio|stream_index=0|pts=84418560|pts_time=5.982041|dts=84418560|dts_time=5.982041|duration=368640|duration_time=0.026122|size=522|pos=121757|flags=K__|data_hash=CRC32:8573c69b
+packet|codec_type=audio|stream_index=0|pts=84787200|pts_time=6.008163|dts=84787200|dts_time=6.008163|duration=368640|duration_time=0.026122|size=523|pos=122279|flags=K__|data_hash=CRC32:d0943120
+packet|codec_type=audio|stream_index=0|pts=85155840|pts_time=6.034286|dts=85155840|dts_time=6.034286|duration=368640|duration_time=0.026122|size=522|pos=122802|flags=K__|data_hash=CRC32:edb866ab
+packet|codec_type=audio|stream_index=0|pts=85524480|pts_time=6.060408|dts=85524480|dts_time=6.060408|duration=368640|duration_time=0.026122|size=523|pos=123324|flags=K__|data_hash=CRC32:574c7ae2
+packet|codec_type=audio|stream_index=0|pts=85893120|pts_time=6.086531|dts=85893120|dts_time=6.086531|duration=368640|duration_time=0.026122|size=522|pos=123847|flags=K__|data_hash=CRC32:1a75fa13
+packet|codec_type=audio|stream_index=0|pts=86261760|pts_time=6.112653|dts=86261760|dts_time=6.112653|duration=368640|duration_time=0.026122|size=522|pos=124369|flags=K__|data_hash=CRC32:f4b75c53
+packet|codec_type=audio|stream_index=0|pts=86630400|pts_time=6.138776|dts=86630400|dts_time=6.138776|duration=368640|duration_time=0.026122|size=523|pos=124891|flags=K__|data_hash=CRC32:25473969
+packet|codec_type=audio|stream_index=0|pts=86999040|pts_time=6.164898|dts=86999040|dts_time=6.164898|duration=368640|duration_time=0.026122|size=522|pos=125414|flags=K__|data_hash=CRC32:505e5c16
+packet|codec_type=audio|stream_index=0|pts=87367680|pts_time=6.191020|dts=87367680|dts_time=6.191020|duration=368640|duration_time=0.026122|size=523|pos=125936|flags=K__|data_hash=CRC32:7a57b4e7
+packet|codec_type=audio|stream_index=0|pts=87736320|pts_time=6.217143|dts=87736320|dts_time=6.217143|duration=368640|duration_time=0.026122|size=522|pos=126459|flags=K__|data_hash=CRC32:5a906dba
+packet|codec_type=audio|stream_index=0|pts=88104960|pts_time=6.243265|dts=88104960|dts_time=6.243265|duration=368640|duration_time=0.026122|size=523|pos=126981|flags=K__|data_hash=CRC32:b9254381
+packet|codec_type=audio|stream_index=0|pts=88473600|pts_time=6.269388|dts=88473600|dts_time=6.269388|duration=368640|duration_time=0.026122|size=522|pos=127504|flags=K__|data_hash=CRC32:99da2264
+packet|codec_type=audio|stream_index=0|pts=88842240|pts_time=6.295510|dts=88842240|dts_time=6.295510|duration=368640|duration_time=0.026122|size=523|pos=128026|flags=K__|data_hash=CRC32:fe6fae30
+packet|codec_type=audio|stream_index=0|pts=89210880|pts_time=6.321633|dts=89210880|dts_time=6.321633|duration=368640|duration_time=0.026122|size=522|pos=128549|flags=K__|data_hash=CRC32:689e4575
+packet|codec_type=audio|stream_index=0|pts=89579520|pts_time=6.347755|dts=89579520|dts_time=6.347755|duration=368640|duration_time=0.026122|size=522|pos=129071|flags=K__|data_hash=CRC32:5b6c75cd
+packet|codec_type=audio|stream_index=0|pts=89948160|pts_time=6.373878|dts=89948160|dts_time=6.373878|duration=368640|duration_time=0.026122|size=523|pos=129593|flags=K__|data_hash=CRC32:e9ea47f4
+packet|codec_type=audio|stream_index=0|pts=90316800|pts_time=6.400000|dts=90316800|dts_time=6.400000|duration=368640|duration_time=0.026122|size=522|pos=130116|flags=K__|data_hash=CRC32:dc95dbea
+packet|codec_type=audio|stream_index=0|pts=90685440|pts_time=6.426122|dts=90685440|dts_time=6.426122|duration=368640|duration_time=0.026122|size=523|pos=130638|flags=K__|data_hash=CRC32:638adb77
+packet|codec_type=audio|stream_index=0|pts=91054080|pts_time=6.452245|dts=91054080|dts_time=6.452245|duration=368640|duration_time=0.026122|size=522|pos=131161|flags=K__|data_hash=CRC32:8bad67b9
+packet|codec_type=audio|stream_index=0|pts=91422720|pts_time=6.478367|dts=91422720|dts_time=6.478367|duration=368640|duration_time=0.026122|size=523|pos=131683|flags=K__|data_hash=CRC32:a8647125
+packet|codec_type=audio|stream_index=0|pts=91791360|pts_time=6.504490|dts=91791360|dts_time=6.504490|duration=368640|duration_time=0.026122|size=522|pos=132206|flags=K__|data_hash=CRC32:dfdfad5c
+packet|codec_type=audio|stream_index=0|pts=92160000|pts_time=6.530612|dts=92160000|dts_time=6.530612|duration=368640|duration_time=0.026122|size=523|pos=132728|flags=K__|data_hash=CRC32:809bb350
+packet|codec_type=audio|stream_index=0|pts=92528640|pts_time=6.556735|dts=92528640|dts_time=6.556735|duration=368640|duration_time=0.026122|size=522|pos=133251|flags=K__|data_hash=CRC32:40f781fb
+packet|codec_type=audio|stream_index=0|pts=92897280|pts_time=6.582857|dts=92897280|dts_time=6.582857|duration=368640|duration_time=0.026122|size=523|pos=133773|flags=K__|data_hash=CRC32:3fc4727c
+packet|codec_type=audio|stream_index=0|pts=93265920|pts_time=6.608980|dts=93265920|dts_time=6.608980|duration=368640|duration_time=0.026122|size=522|pos=134296|flags=K__|data_hash=CRC32:a5dbe053
+packet|codec_type=audio|stream_index=0|pts=93634560|pts_time=6.635102|dts=93634560|dts_time=6.635102|duration=368640|duration_time=0.026122|size=522|pos=134818|flags=K__|data_hash=CRC32:b35e547a
+packet|codec_type=audio|stream_index=0|pts=94003200|pts_time=6.661224|dts=94003200|dts_time=6.661224|duration=368640|duration_time=0.026122|size=523|pos=135340|flags=K__|data_hash=CRC32:a248e53a
+packet|codec_type=audio|stream_index=0|pts=94371840|pts_time=6.687347|dts=94371840|dts_time=6.687347|duration=368640|duration_time=0.026122|size=522|pos=135863|flags=K__|data_hash=CRC32:74ebe699
+packet|codec_type=audio|stream_index=0|pts=94740480|pts_time=6.713469|dts=94740480|dts_time=6.713469|duration=368640|duration_time=0.026122|size=523|pos=136385|flags=K__|data_hash=CRC32:072499ac
+packet|codec_type=audio|stream_index=0|pts=95109120|pts_time=6.739592|dts=95109120|dts_time=6.739592|duration=368640|duration_time=0.026122|size=522|pos=136908|flags=K__|data_hash=CRC32:e1c1e37d
+packet|codec_type=audio|stream_index=0|pts=95477760|pts_time=6.765714|dts=95477760|dts_time=6.765714|duration=368640|duration_time=0.026122|size=523|pos=137430|flags=K__|data_hash=CRC32:94677ad4
+packet|codec_type=audio|stream_index=0|pts=95846400|pts_time=6.791837|dts=95846400|dts_time=6.791837|duration=368640|duration_time=0.026122|size=522|pos=137953|flags=K__|data_hash=CRC32:40d96048
+packet|codec_type=audio|stream_index=0|pts=96215040|pts_time=6.817959|dts=96215040|dts_time=6.817959|duration=368640|duration_time=0.026122|size=523|pos=138475|flags=K__|data_hash=CRC32:19028d82
+packet|codec_type=audio|stream_index=0|pts=96583680|pts_time=6.844082|dts=96583680|dts_time=6.844082|duration=368640|duration_time=0.026122|size=522|pos=138998|flags=K__|data_hash=CRC32:8133086c
+packet|codec_type=audio|stream_index=0|pts=96952320|pts_time=6.870204|dts=96952320|dts_time=6.870204|duration=368640|duration_time=0.026122|size=522|pos=139520|flags=K__|data_hash=CRC32:b57f3cb2
+packet|codec_type=audio|stream_index=0|pts=97320960|pts_time=6.896327|dts=97320960|dts_time=6.896327|duration=368640|duration_time=0.026122|size=523|pos=140042|flags=K__|data_hash=CRC32:9d3ae858
+packet|codec_type=audio|stream_index=0|pts=97689600|pts_time=6.922449|dts=97689600|dts_time=6.922449|duration=368640|duration_time=0.026122|size=522|pos=140565|flags=K__|data_hash=CRC32:2105d320
+packet|codec_type=audio|stream_index=0|pts=98058240|pts_time=6.948571|dts=98058240|dts_time=6.948571|duration=368640|duration_time=0.026122|size=523|pos=141087|flags=K__|data_hash=CRC32:700ad4ee
+packet|codec_type=audio|stream_index=0|pts=98426880|pts_time=6.974694|dts=98426880|dts_time=6.974694|duration=368640|duration_time=0.026122|size=522|pos=141610|flags=K__|data_hash=CRC32:2dda0c0e
+packet|codec_type=audio|stream_index=0|pts=98795520|pts_time=7.000816|dts=98795520|dts_time=7.000816|duration=368640|duration_time=0.026122|size=523|pos=142132|flags=K__|data_hash=CRC32:acc4b095
+packet|codec_type=audio|stream_index=0|pts=99164160|pts_time=7.026939|dts=99164160|dts_time=7.026939|duration=368640|duration_time=0.026122|size=522|pos=142655|flags=K__|data_hash=CRC32:bd9bb280
+packet|codec_type=audio|stream_index=0|pts=99532800|pts_time=7.053061|dts=99532800|dts_time=7.053061|duration=368640|duration_time=0.026122|size=523|pos=143177|flags=K__|data_hash=CRC32:c55c209c
+packet|codec_type=audio|stream_index=0|pts=99901440|pts_time=7.079184|dts=99901440|dts_time=7.079184|duration=368640|duration_time=0.026122|size=522|pos=143700|flags=K__|data_hash=CRC32:6a3bd3b7
+packet|codec_type=audio|stream_index=0|pts=100270080|pts_time=7.105306|dts=100270080|dts_time=7.105306|duration=368640|duration_time=0.026122|size=523|pos=144222|flags=K__|data_hash=CRC32:51c1ec56
+packet|codec_type=audio|stream_index=0|pts=100638720|pts_time=7.131429|dts=100638720|dts_time=7.131429|duration=368640|duration_time=0.026122|size=522|pos=144745|flags=K__|data_hash=CRC32:b56aca98
+packet|codec_type=audio|stream_index=0|pts=101007360|pts_time=7.157551|dts=101007360|dts_time=7.157551|duration=368640|duration_time=0.026122|size=522|pos=145267|flags=K__|data_hash=CRC32:b58ebfe8
+packet|codec_type=audio|stream_index=0|pts=101376000|pts_time=7.183673|dts=101376000|dts_time=7.183673|duration=368640|duration_time=0.026122|size=523|pos=145789|flags=K__|data_hash=CRC32:8c9b6249
+packet|codec_type=audio|stream_index=0|pts=101744640|pts_time=7.209796|dts=101744640|dts_time=7.209796|duration=368640|duration_time=0.026122|size=522|pos=146312|flags=K__|data_hash=CRC32:d35089ea
+packet|codec_type=audio|stream_index=0|pts=102113280|pts_time=7.235918|dts=102113280|dts_time=7.235918|duration=368640|duration_time=0.026122|size=523|pos=146834|flags=K__|data_hash=CRC32:6a813f7e
+packet|codec_type=audio|stream_index=0|pts=102481920|pts_time=7.262041|dts=102481920|dts_time=7.262041|duration=368640|duration_time=0.026122|size=522|pos=147357|flags=K__|data_hash=CRC32:fa99b4b7
+packet|codec_type=audio|stream_index=0|pts=102850560|pts_time=7.288163|dts=102850560|dts_time=7.288163|duration=368640|duration_time=0.026122|size=523|pos=147879|flags=K__|data_hash=CRC32:2c7b5cfc
+packet|codec_type=audio|stream_index=0|pts=103219200|pts_time=7.314286|dts=103219200|dts_time=7.314286|duration=368640|duration_time=0.026122|size=522|pos=148402|flags=K__|data_hash=CRC32:7a3f1236
+packet|codec_type=audio|stream_index=0|pts=103587840|pts_time=7.340408|dts=103587840|dts_time=7.340408|duration=368640|duration_time=0.026122|size=523|pos=148924|flags=K__|data_hash=CRC32:626d59fc
+packet|codec_type=audio|stream_index=0|pts=103956480|pts_time=7.366531|dts=103956480|dts_time=7.366531|duration=368640|duration_time=0.026122|size=522|pos=149447|flags=K__|data_hash=CRC32:acf9f32c
+packet|codec_type=audio|stream_index=0|pts=104325120|pts_time=7.392653|dts=104325120|dts_time=7.392653|duration=368640|duration_time=0.026122|size=522|pos=149969|flags=K__|data_hash=CRC32:6f41062a
+packet|codec_type=audio|stream_index=0|pts=104693760|pts_time=7.418776|dts=104693760|dts_time=7.418776|duration=368640|duration_time=0.026122|size=523|pos=150491|flags=K__|data_hash=CRC32:50ef9a3a
+packet|codec_type=audio|stream_index=0|pts=105062400|pts_time=7.444898|dts=105062400|dts_time=7.444898|duration=368640|duration_time=0.026122|size=522|pos=151014|flags=K__|data_hash=CRC32:e6610678
+packet|codec_type=audio|stream_index=0|pts=105431040|pts_time=7.471020|dts=105431040|dts_time=7.471020|duration=368640|duration_time=0.026122|size=523|pos=151536|flags=K__|data_hash=CRC32:a0ec3e11
+packet|codec_type=audio|stream_index=0|pts=105799680|pts_time=7.497143|dts=105799680|dts_time=7.497143|duration=368640|duration_time=0.026122|size=522|pos=152059|flags=K__|data_hash=CRC32:d67d7e4e
+packet|codec_type=audio|stream_index=0|pts=106168320|pts_time=7.523265|dts=106168320|dts_time=7.523265|duration=368640|duration_time=0.026122|size=523|pos=152581|flags=K__|data_hash=CRC32:c6d5586e
+packet|codec_type=audio|stream_index=0|pts=106536960|pts_time=7.549388|dts=106536960|dts_time=7.549388|duration=368640|duration_time=0.026122|size=522|pos=153104|flags=K__|data_hash=CRC32:21af1066
+packet|codec_type=audio|stream_index=0|pts=106905600|pts_time=7.575510|dts=106905600|dts_time=7.575510|duration=368640|duration_time=0.026122|size=523|pos=153626|flags=K__|data_hash=CRC32:c5c89b68
+packet|codec_type=audio|stream_index=0|pts=107274240|pts_time=7.601633|dts=107274240|dts_time=7.601633|duration=368640|duration_time=0.026122|size=522|pos=154149|flags=K__|data_hash=CRC32:03fb1da8
+packet|codec_type=audio|stream_index=0|pts=107642880|pts_time=7.627755|dts=107642880|dts_time=7.627755|duration=368640|duration_time=0.026122|size=522|pos=154671|flags=K__|data_hash=CRC32:1e091eb8
+packet|codec_type=audio|stream_index=0|pts=108011520|pts_time=7.653878|dts=108011520|dts_time=7.653878|duration=368640|duration_time=0.026122|size=523|pos=155193|flags=K__|data_hash=CRC32:bd3c1226
+packet|codec_type=audio|stream_index=0|pts=108380160|pts_time=7.680000|dts=108380160|dts_time=7.680000|duration=368640|duration_time=0.026122|size=522|pos=155716|flags=K__|data_hash=CRC32:f9f76724
+packet|codec_type=audio|stream_index=0|pts=108748800|pts_time=7.706122|dts=108748800|dts_time=7.706122|duration=368640|duration_time=0.026122|size=523|pos=156238|flags=K__|data_hash=CRC32:b4b5bc38
+packet|codec_type=audio|stream_index=0|pts=109117440|pts_time=7.732245|dts=109117440|dts_time=7.732245|duration=368640|duration_time=0.026122|size=522|pos=156761|flags=K__|data_hash=CRC32:09d68776
+packet|codec_type=audio|stream_index=0|pts=109486080|pts_time=7.758367|dts=109486080|dts_time=7.758367|duration=368640|duration_time=0.026122|size=523|pos=157283|flags=K__|data_hash=CRC32:ef1a9fbc
+packet|codec_type=audio|stream_index=0|pts=109854720|pts_time=7.784490|dts=109854720|dts_time=7.784490|duration=368640|duration_time=0.026122|size=522|pos=157806|flags=K__|data_hash=CRC32:c8eefb0c
+packet|codec_type=audio|stream_index=0|pts=110223360|pts_time=7.810612|dts=110223360|dts_time=7.810612|duration=368640|duration_time=0.026122|size=523|pos=158328|flags=K__|data_hash=CRC32:c5e9bc18
+packet|codec_type=audio|stream_index=0|pts=110592000|pts_time=7.836735|dts=110592000|dts_time=7.836735|duration=368640|duration_time=0.026122|size=522|pos=158851|flags=K__|data_hash=CRC32:08852433
+packet|codec_type=audio|stream_index=0|pts=110960640|pts_time=7.862857|dts=110960640|dts_time=7.862857|duration=368640|duration_time=0.026122|size=523|pos=159373|flags=K__|data_hash=CRC32:362770e6
+packet|codec_type=audio|stream_index=0|pts=111329280|pts_time=7.888980|dts=111329280|dts_time=7.888980|duration=368640|duration_time=0.026122|size=522|pos=159896|flags=K__|data_hash=CRC32:6726464c
+packet|codec_type=audio|stream_index=0|pts=111697920|pts_time=7.915102|dts=111697920|dts_time=7.915102|duration=368640|duration_time=0.026122|size=522|pos=160418|flags=K__|data_hash=CRC32:3441f949
+packet|codec_type=audio|stream_index=0|pts=112066560|pts_time=7.941224|dts=112066560|dts_time=7.941224|duration=368640|duration_time=0.026122|size=523|pos=160940|flags=K__|data_hash=CRC32:e10760db
+packet|codec_type=audio|stream_index=0|pts=112435200|pts_time=7.967347|dts=112435200|dts_time=7.967347|duration=368640|duration_time=0.026122|size=522|pos=161463|flags=K__|data_hash=CRC32:7b0af641
+packet|codec_type=audio|stream_index=0|pts=112803840|pts_time=7.993469|dts=112803840|dts_time=7.993469|duration=368640|duration_time=0.026122|size=523|pos=161985|flags=K__|data_hash=CRC32:28c92882
+packet|codec_type=audio|stream_index=0|pts=113172480|pts_time=8.019592|dts=113172480|dts_time=8.019592|duration=368640|duration_time=0.026122|size=522|pos=162508|flags=K__|data_hash=CRC32:1a930492
+packet|codec_type=audio|stream_index=0|pts=113541120|pts_time=8.045714|dts=113541120|dts_time=8.045714|duration=368640|duration_time=0.026122|size=523|pos=163030|flags=K__|data_hash=CRC32:a65dbc18
+packet|codec_type=audio|stream_index=0|pts=113909760|pts_time=8.071837|dts=113909760|dts_time=8.071837|duration=368640|duration_time=0.026122|size=522|pos=163553|flags=K__|data_hash=CRC32:2a43f9d4
+packet|codec_type=audio|stream_index=0|pts=114278400|pts_time=8.097959|dts=114278400|dts_time=8.097959|duration=368640|duration_time=0.026122|size=523|pos=164075|flags=K__|data_hash=CRC32:d7fd0305
+packet|codec_type=audio|stream_index=0|pts=114647040|pts_time=8.124082|dts=114647040|dts_time=8.124082|duration=368640|duration_time=0.026122|size=522|pos=164598|flags=K__|data_hash=CRC32:869df3dc
+packet|codec_type=audio|stream_index=0|pts=115015680|pts_time=8.150204|dts=115015680|dts_time=8.150204|duration=368640|duration_time=0.026122|size=522|pos=165120|flags=K__|data_hash=CRC32:7ce23547
+packet|codec_type=audio|stream_index=0|pts=115384320|pts_time=8.176327|dts=115384320|dts_time=8.176327|duration=368640|duration_time=0.026122|size=523|pos=165642|flags=K__|data_hash=CRC32:bd7f6f23
+packet|codec_type=audio|stream_index=0|pts=115752960|pts_time=8.202449|dts=115752960|dts_time=8.202449|duration=368640|duration_time=0.026122|size=522|pos=166165|flags=K__|data_hash=CRC32:f4f6a16a
+packet|codec_type=audio|stream_index=0|pts=116121600|pts_time=8.228571|dts=116121600|dts_time=8.228571|duration=368640|duration_time=0.026122|size=523|pos=166687|flags=K__|data_hash=CRC32:4ac36f4f
+packet|codec_type=audio|stream_index=0|pts=116490240|pts_time=8.254694|dts=116490240|dts_time=8.254694|duration=368640|duration_time=0.026122|size=522|pos=167210|flags=K__|data_hash=CRC32:45fad765
+packet|codec_type=audio|stream_index=0|pts=116858880|pts_time=8.280816|dts=116858880|dts_time=8.280816|duration=368640|duration_time=0.026122|size=523|pos=167732|flags=K__|data_hash=CRC32:b71e9c67
+packet|codec_type=audio|stream_index=0|pts=117227520|pts_time=8.306939|dts=117227520|dts_time=8.306939|duration=368640|duration_time=0.026122|size=522|pos=168255|flags=K__|data_hash=CRC32:36a22118
+packet|codec_type=audio|stream_index=0|pts=117596160|pts_time=8.333061|dts=117596160|dts_time=8.333061|duration=368640|duration_time=0.026122|size=523|pos=168777|flags=K__|data_hash=CRC32:252184f5
+packet|codec_type=audio|stream_index=0|pts=117964800|pts_time=8.359184|dts=117964800|dts_time=8.359184|duration=368640|duration_time=0.026122|size=522|pos=169300|flags=K__|data_hash=CRC32:ee0cb6db
+packet|codec_type=audio|stream_index=0|pts=118333440|pts_time=8.385306|dts=118333440|dts_time=8.385306|duration=368640|duration_time=0.026122|size=523|pos=169822|flags=K__|data_hash=CRC32:6106d414
+packet|codec_type=audio|stream_index=0|pts=118702080|pts_time=8.411429|dts=118702080|dts_time=8.411429|duration=368640|duration_time=0.026122|size=522|pos=170345|flags=K__|data_hash=CRC32:7472c061
+packet|codec_type=audio|stream_index=0|pts=119070720|pts_time=8.437551|dts=119070720|dts_time=8.437551|duration=368640|duration_time=0.026122|size=522|pos=170867|flags=K__|data_hash=CRC32:aa40a504
+packet|codec_type=audio|stream_index=0|pts=119439360|pts_time=8.463673|dts=119439360|dts_time=8.463673|duration=368640|duration_time=0.026122|size=523|pos=171389|flags=K__|data_hash=CRC32:8a322329
+packet|codec_type=audio|stream_index=0|pts=119808000|pts_time=8.489796|dts=119808000|dts_time=8.489796|duration=368640|duration_time=0.026122|size=522|pos=171912|flags=K__|data_hash=CRC32:9584fdfe
+packet|codec_type=audio|stream_index=0|pts=120176640|pts_time=8.515918|dts=120176640|dts_time=8.515918|duration=368640|duration_time=0.026122|size=523|pos=172434|flags=K__|data_hash=CRC32:7e28cac9
+packet|codec_type=audio|stream_index=0|pts=120545280|pts_time=8.542041|dts=120545280|dts_time=8.542041|duration=368640|duration_time=0.026122|size=522|pos=172957|flags=K__|data_hash=CRC32:3905c7f3
+packet|codec_type=audio|stream_index=0|pts=120913920|pts_time=8.568163|dts=120913920|dts_time=8.568163|duration=368640|duration_time=0.026122|size=523|pos=173479|flags=K__|data_hash=CRC32:cb8dc3fb
+packet|codec_type=audio|stream_index=0|pts=121282560|pts_time=8.594286|dts=121282560|dts_time=8.594286|duration=368640|duration_time=0.026122|size=522|pos=174002|flags=K__|data_hash=CRC32:968f0d0b
+packet|codec_type=audio|stream_index=0|pts=121651200|pts_time=8.620408|dts=121651200|dts_time=8.620408|duration=368640|duration_time=0.026122|size=523|pos=174524|flags=K__|data_hash=CRC32:c2d8df75
+packet|codec_type=audio|stream_index=0|pts=122019840|pts_time=8.646531|dts=122019840|dts_time=8.646531|duration=368640|duration_time=0.026122|size=522|pos=175047|flags=K__|data_hash=CRC32:9fa9842b
+packet|codec_type=audio|stream_index=0|pts=122388480|pts_time=8.672653|dts=122388480|dts_time=8.672653|duration=368640|duration_time=0.026122|size=522|pos=175569|flags=K__|data_hash=CRC32:c832ec98
+packet|codec_type=audio|stream_index=0|pts=122757120|pts_time=8.698776|dts=122757120|dts_time=8.698776|duration=368640|duration_time=0.026122|size=523|pos=176091|flags=K__|data_hash=CRC32:d61ef2f0
+packet|codec_type=audio|stream_index=0|pts=123125760|pts_time=8.724898|dts=123125760|dts_time=8.724898|duration=368640|duration_time=0.026122|size=522|pos=176614|flags=K__|data_hash=CRC32:c53cc4e3
+packet|codec_type=audio|stream_index=0|pts=123494400|pts_time=8.751020|dts=123494400|dts_time=8.751020|duration=368640|duration_time=0.026122|size=523|pos=177136|flags=K__|data_hash=CRC32:6fc6d3c9
+packet|codec_type=audio|stream_index=0|pts=123863040|pts_time=8.777143|dts=123863040|dts_time=8.777143|duration=368640|duration_time=0.026122|size=522|pos=177659|flags=K__|data_hash=CRC32:d194db5b
+packet|codec_type=audio|stream_index=0|pts=124231680|pts_time=8.803265|dts=124231680|dts_time=8.803265|duration=368640|duration_time=0.026122|size=523|pos=178181|flags=K__|data_hash=CRC32:de526180
+packet|codec_type=audio|stream_index=0|pts=124600320|pts_time=8.829388|dts=124600320|dts_time=8.829388|duration=368640|duration_time=0.026122|size=522|pos=178704|flags=K__|data_hash=CRC32:85759f0a
+packet|codec_type=audio|stream_index=0|pts=124968960|pts_time=8.855510|dts=124968960|dts_time=8.855510|duration=368640|duration_time=0.026122|size=523|pos=179226|flags=K__|data_hash=CRC32:f1e813cc
+packet|codec_type=audio|stream_index=0|pts=125337600|pts_time=8.881633|dts=125337600|dts_time=8.881633|duration=368640|duration_time=0.026122|size=522|pos=179749|flags=K__|data_hash=CRC32:4fbc8157
+packet|codec_type=audio|stream_index=0|pts=125706240|pts_time=8.907755|dts=125706240|dts_time=8.907755|duration=368640|duration_time=0.026122|size=522|pos=180271|flags=K__|data_hash=CRC32:1f21fc81
+packet|codec_type=audio|stream_index=0|pts=126074880|pts_time=8.933878|dts=126074880|dts_time=8.933878|duration=368640|duration_time=0.026122|size=523|pos=180793|flags=K__|data_hash=CRC32:c5c7cef6
+packet|codec_type=audio|stream_index=0|pts=126443520|pts_time=8.960000|dts=126443520|dts_time=8.960000|duration=368640|duration_time=0.026122|size=522|pos=181316|flags=K__|data_hash=CRC32:f4e8ad0e
+packet|codec_type=audio|stream_index=0|pts=126812160|pts_time=8.986122|dts=126812160|dts_time=8.986122|duration=368640|duration_time=0.026122|size=523|pos=181838|flags=K__|data_hash=CRC32:d89ba370
+packet|codec_type=audio|stream_index=0|pts=127180800|pts_time=9.012245|dts=127180800|dts_time=9.012245|duration=368640|duration_time=0.026122|size=522|pos=182361|flags=K__|data_hash=CRC32:06329f63
+packet|codec_type=audio|stream_index=0|pts=127549440|pts_time=9.038367|dts=127549440|dts_time=9.038367|duration=368640|duration_time=0.026122|size=523|pos=182883|flags=K__|data_hash=CRC32:3b66af99
+packet|codec_type=audio|stream_index=0|pts=127918080|pts_time=9.064490|dts=127918080|dts_time=9.064490|duration=368640|duration_time=0.026122|size=522|pos=183406|flags=K__|data_hash=CRC32:348fdeab
+packet|codec_type=audio|stream_index=0|pts=128286720|pts_time=9.090612|dts=128286720|dts_time=9.090612|duration=368640|duration_time=0.026122|size=523|pos=183928|flags=K__|data_hash=CRC32:49fe6824
+packet|codec_type=audio|stream_index=0|pts=128655360|pts_time=9.116735|dts=128655360|dts_time=9.116735|duration=368640|duration_time=0.026122|size=522|pos=184451|flags=K__|data_hash=CRC32:9833d692
+packet|codec_type=audio|stream_index=0|pts=129024000|pts_time=9.142857|dts=129024000|dts_time=9.142857|duration=368640|duration_time=0.026122|size=523|pos=184973|flags=K__|data_hash=CRC32:08a1c0c5
+packet|codec_type=audio|stream_index=0|pts=129392640|pts_time=9.168980|dts=129392640|dts_time=9.168980|duration=368640|duration_time=0.026122|size=522|pos=185496|flags=K__|data_hash=CRC32:a59cdc07
+packet|codec_type=audio|stream_index=0|pts=129761280|pts_time=9.195102|dts=129761280|dts_time=9.195102|duration=368640|duration_time=0.026122|size=522|pos=186018|flags=K__|data_hash=CRC32:86e9fc40
+packet|codec_type=audio|stream_index=0|pts=130129920|pts_time=9.221224|dts=130129920|dts_time=9.221224|duration=368640|duration_time=0.026122|size=523|pos=186540|flags=K__|data_hash=CRC32:e7b5fc39
+packet|codec_type=audio|stream_index=0|pts=130498560|pts_time=9.247347|dts=130498560|dts_time=9.247347|duration=368640|duration_time=0.026122|size=522|pos=187063|flags=K__|data_hash=CRC32:fb67d726
+packet|codec_type=audio|stream_index=0|pts=130867200|pts_time=9.273469|dts=130867200|dts_time=9.273469|duration=368640|duration_time=0.026122|size=523|pos=187585|flags=K__|data_hash=CRC32:ba1ca495
+packet|codec_type=audio|stream_index=0|pts=131235840|pts_time=9.299592|dts=131235840|dts_time=9.299592|duration=368640|duration_time=0.026122|size=522|pos=188108|flags=K__|data_hash=CRC32:c5f4808b
+packet|codec_type=audio|stream_index=0|pts=131604480|pts_time=9.325714|dts=131604480|dts_time=9.325714|duration=368640|duration_time=0.026122|size=523|pos=188630|flags=K__|data_hash=CRC32:7863024c
+packet|codec_type=audio|stream_index=0|pts=131973120|pts_time=9.351837|dts=131973120|dts_time=9.351837|duration=368640|duration_time=0.026122|size=522|pos=189153|flags=K__|data_hash=CRC32:b712c6cf
+packet|codec_type=audio|stream_index=0|pts=132341760|pts_time=9.377959|dts=132341760|dts_time=9.377959|duration=368640|duration_time=0.026122|size=523|pos=189675|flags=K__|data_hash=CRC32:605f22a4
+packet|codec_type=audio|stream_index=0|pts=132710400|pts_time=9.404082|dts=132710400|dts_time=9.404082|duration=368640|duration_time=0.026122|size=522|pos=190198|flags=K__|data_hash=CRC32:7c35edeb
+packet|codec_type=audio|stream_index=0|pts=133079040|pts_time=9.430204|dts=133079040|dts_time=9.430204|duration=368640|duration_time=0.026122|size=522|pos=190720|flags=K__|data_hash=CRC32:894da961
+packet|codec_type=audio|stream_index=0|pts=133447680|pts_time=9.456327|dts=133447680|dts_time=9.456327|duration=368640|duration_time=0.026122|size=523|pos=191242|flags=K__|data_hash=CRC32:6725a0b4
+packet|codec_type=audio|stream_index=0|pts=133816320|pts_time=9.482449|dts=133816320|dts_time=9.482449|duration=368640|duration_time=0.026122|size=522|pos=191765|flags=K__|data_hash=CRC32:d11878a6
+packet|codec_type=audio|stream_index=0|pts=134184960|pts_time=9.508571|dts=134184960|dts_time=9.508571|duration=368640|duration_time=0.026122|size=523|pos=192287|flags=K__|data_hash=CRC32:ab4c0b95|side_datum/skip_samples:side_data_type=Skip Samples|side_datum/skip_samples:skip_samples=0|side_datum/skip_samples:discard_padding=1002|side_datum/skip_samples:skip_reason=0|side_datum/skip_samples:discard_reason=0
+packet|codec_type=audio|stream_index=0|pts=134553600|pts_time=9.534694|dts=134553600|dts_time=9.534694|duration=368640|duration_time=0.026122|size=522|pos=192810|flags=K__|data_hash=CRC32:754dc30c|side_datum/skip_samples:side_data_type=Skip Samples|side_datum/skip_samples:skip_samples=0|side_datum/skip_samples:discard_padding=1152|side_datum/skip_samples:skip_reason=0|side_datum/skip_samples:discard_reason=0
+stream|index=0|codec_name=mp3|profile=unknown|codec_type=audio|codec_tag_string=[0][0][0][0]|codec_tag=0x0000|mime_codec_string=mp4a.40.34|sample_fmt=fltp|sample_rate=44100|channels=2|channel_layout=stereo|bits_per_sample=0|initial_padding=0|id=N/A|r_frame_rate=0/0|avg_frame_rate=0/0|time_base=1/14112000|start_pts=0|start_time=0.000000|duration_ts=134064000|duration=9.500000|bit_rate=160000|max_bit_rate=N/A|bits_per_raw_sample=N/A|nb_frames=N/A|nb_read_frames=N/A|nb_read_packets=366|disposition:default=0|disposition:dub=0|disposition:original=0|disposition:comment=0|disposition:lyrics=0|disposition:karaoke=0|disposition:forced=0|disposition:hearing_impaired=0|disposition:visual_impaired=0|disposition:clean_effects=0|disposition:attached_pic=0|disposition:timed_thumbnails=0|disposition:non
 _diegetic=0|disposition:captions=0|disposition:descriptions=0|disposition:metadata=0|disposition:dependent=0|disposition:still_image=0|disposition:multilayer=0
+format|filename=gapless-itunes.mp3|nb_streams=1|nb_programs=0|nb_stream_groups=0|format_name=mp3|start_time=0.000000|duration=9.500000|size=193332|bit_rate=162805|probe_score=52|tag:title=7rk|tag:iTunPGAP=0|tag:comment-iTunPGAP-eng=0|tag:encoded_by=iTunes 12.7.0.166|tag:iTunNORM= 00000362 000004C0 0000308F 00003CC5 00000DAC 00000DAC 00007D14 00007AC9 000007C1 0000175E|tag:comment-iTunNORM-eng= 00000362 000004C0 0000308F 00003CC5 00000DAC 00000DAC 00007D14 00007AC9 000007C1 0000175E|tag:iTunSMPB= 00000000 00000210 0000086A 0000000000066486 00000000 0002DA9D 00000000 00000000 00000000 00000000 00000000 00000000|tag:comment-iTunSMPB-eng= 00000000 00000210 0000086A 0000000000066486 00000000 0002DA9D 00000000 00000000 00000000 00000000 00000000 00000000
diff --git a/tests/ref/fate/id3v2-reenc-delete-metadata b/tests/ref/fate/id3v2-reenc-delete-metadata
index b04f85ae85..6cb0862647 100644
--- a/tests/ref/fate/id3v2-reenc-delete-metadata
+++ b/tests/ref/fate/id3v2-reenc-delete-metadata
@@ -1,5 +1,5 @@
-d6cf0698e62eb42bf36706b81fd69c1a *tests/data/fate/id3v2-reenc-delete-metadata.nut
-1569 tests/data/fate/id3v2-reenc-delete-metadata.nut
+c4a0b4f38fa8e5b2e12f8edbe4531fd7 *tests/data/fate/id3v2-reenc-delete-metadata.nut
+2548 tests/data/fate/id3v2-reenc-delete-metadata.nut
 [FORMAT]
 TAG:title=7rk
 [/FORMAT]
diff --git a/tests/ref/fate/id3v2-reenc-delete-metadata-keep b/tests/ref/fate/id3v2-reenc-delete-metadata-keep
index 2ccb64a380..c681882bd4 100644
--- a/tests/ref/fate/id3v2-reenc-delete-metadata-keep
+++ b/tests/ref/fate/id3v2-reenc-delete-metadata-keep
@@ -1,5 +1,5 @@
-db828221356fb78b3fe2990c717672b8 *tests/data/fate/id3v2-reenc-delete-metadata-keep.nut
-1697 tests/data/fate/id3v2-reenc-delete-metadata-keep.nut
+0eaab35f6181a03fad5ea558d198d3d4 *tests/data/fate/id3v2-reenc-delete-metadata-keep.nut
+2676 tests/data/fate/id3v2-reenc-delete-metadata-keep.nut
 [FORMAT]
 TAG:title=7rk
 TAG:iTunSMPB= 00000000 00000210 0000086A 0000000000066486 00000000 0002DA9D 00000000 00000000 00000000 00000000 00000000 00000000
diff --git a/tests/ref/fate/id3v2-reenc-delete-metadata-keep-format b/tests/ref/fate/id3v2-reenc-delete-metadata-keep-format
index c96b381876..c270f257b9 100644
--- a/tests/ref/fate/id3v2-reenc-delete-metadata-keep-format
+++ b/tests/ref/fate/id3v2-reenc-delete-metadata-keep-format
@@ -1,5 +1,5 @@
-db828221356fb78b3fe2990c717672b8 *tests/data/fate/id3v2-reenc-delete-metadata-keep-format.nut
-1697 tests/data/fate/id3v2-reenc-delete-metadata-keep-format.nut
+0eaab35f6181a03fad5ea558d198d3d4 *tests/data/fate/id3v2-reenc-delete-metadata-keep-format.nut
+2676 tests/data/fate/id3v2-reenc-delete-metadata-keep-format.nut
 [FORMAT]
 TAG:title=7rk
 TAG:iTunSMPB= 00000000 00000210 0000086A 0000000000066486 00000000 0002DA9D 00000000 00000000 00000000 00000000 00000000 00000000
diff --git a/tests/ref/fate/id3v2-reenc-delete-metadata-keep-stream b/tests/ref/fate/id3v2-reenc-delete-metadata-keep-stream
index 8c3f209aca..b6a73ddc7d 100644
--- a/tests/ref/fate/id3v2-reenc-delete-metadata-keep-stream
+++ b/tests/ref/fate/id3v2-reenc-delete-metadata-keep-stream
@@ -1,5 +1,5 @@
-d6cf0698e62eb42bf36706b81fd69c1a *tests/data/fate/id3v2-reenc-delete-metadata-keep-stream.nut
-1569 tests/data/fate/id3v2-reenc-delete-metadata-keep-stream.nut
+c4a0b4f38fa8e5b2e12f8edbe4531fd7 *tests/data/fate/id3v2-reenc-delete-metadata-keep-stream.nut
+2548 tests/data/fate/id3v2-reenc-delete-metadata-keep-stream.nut
 [FORMAT]
 TAG:title=7rk
 [/FORMAT]
diff --git a/tests/ref/fate/id3v2-reenc-delete-metadata-map-metadata b/tests/ref/fate/id3v2-reenc-delete-metadata-map-metadata
index 3528d2fd51..b4fd4fde99 100644
--- a/tests/ref/fate/id3v2-reenc-delete-metadata-map-metadata
+++ b/tests/ref/fate/id3v2-reenc-delete-metadata-map-metadata
@@ -1,5 +1,5 @@
-d6cf0698e62eb42bf36706b81fd69c1a *tests/data/fate/id3v2-reenc-delete-metadata-map-metadata.nut
-1569 tests/data/fate/id3v2-reenc-delete-metadata-map-metadata.nut
+c4a0b4f38fa8e5b2e12f8edbe4531fd7 *tests/data/fate/id3v2-reenc-delete-metadata-map-metadata.nut
+2548 tests/data/fate/id3v2-reenc-delete-metadata-map-metadata.nut
 [FORMAT]
 TAG:title=7rk
 [/FORMAT]
diff --git a/tests/ref/fate/id3v2-reenc-remux-keep b/tests/ref/fate/id3v2-reenc-remux-keep
index f005e6a420..2171470c4b 100644
--- a/tests/ref/fate/id3v2-reenc-remux-keep
+++ b/tests/ref/fate/id3v2-reenc-remux-keep
@@ -1,4 +1,4 @@
-3183f143906fd8064f574448f26a50e6 *tests/data/fate/id3v2-reenc-remux-keep.mp3
+cfb193720d9b91a3296c9653d7c7036a *tests/data/fate/id3v2-reenc-remux-keep.mp3
 192351 tests/data/fate/id3v2-reenc-remux-keep.mp3
 [FORMAT]
 TAG:title=7rk
-- 
2.52.0

_______________________________________________
ffmpeg-devel mailing list -- [email protected]
To unsubscribe send an email to [email protected]