Opened 13 years ago
Closed 13 years ago
#3095 closed defect (fixed)
Seeking in VBR MP3 file
| Reported by: | Tuukka Pasanen | Owned by: | |
|---|---|---|---|
| Priority: | important | Component: | avformat |
| Version: | git-master | Keywords: | mp3 regression |
| Cc: | Blocked By: | ||
| Blocking: | Reproduced by developer: | no | |
| Analyzed by developer: | no |
Description
Seeking in mp3 CBR file is very accurate and works fine. Now when lame has default option to VBR level 4 and there is some problems in seeking.
This bug can be reproduced with ffprobe:
./ffprobe -show_frames -read_intervals 42.004898%+1,41.090612%42.031020,40.045714%41.116735 test-VBR4.mp3
Seek times are chosen from normal 'ffprobe -show_frames' without seeking. So playing from begining is working ok. If everything goes fine those PTS should be equal when seeking and when playing from start but now they are not.
Change History (13)
comment:2 by , 13 years ago
Could you confirm that this is a regression since 5864ce13 (ie that it worked fine with 8c51ea54), to some degree related to ticket #2590?
comment:3 by , 13 years ago
I think ticket #2590 happens because of the same thing and I was the reason I asked about this.
comment:4 by , 13 years ago
Okay I can confirm that '8c51ea54' works ok and '5864ce13' break things.. If there is other way than 'git reset --hard SHASUM' please let me know..
comment:5 by , 13 years ago
| Keywords: | regression added |
|---|---|
| Priority: | normal → important |
follow-up: 9 comment:6 by , 13 years ago
you can use "-usetoc 0" to get the old (slow but accurate) seeking behavior
follow-up: 8 comment:7 by , 13 years ago
is there any software that can seek better in this file ? that is seek more accuratly without reading the whole file sequentially
comment:8 by , 13 years ago
Replying to michael:
is there any software that can seek better in this file ? that is seek more accuratly without reading the whole file sequentially
Hello I have managed to made little example app for testing this bug for myself in https://github.com/illuusio/ffmpeg-example it's very very cruel but you can use it if you want. It tries to simulate Mixxx input plugging as it is my main goal of all this. Mixxx buffers stuff and you can seek backwards (as with vinyls or jump X place in file in DJ set) and the problem with mp3 (everyone’s most loved format) it doesn't sound very well if it's not precise place when you are going backwards or different place in file and play then buffered part.
follow-up: 10 comment:9 by , 13 years ago
Replying to michael:
you can use "-usetoc 0" to get the old (slow but accurate) seeking behavior
This sounds what I want! How do I turn it on?
av_opt_set_int(CodecCtx->priv_data, "usetoc", 1, 0);
doesn't do it.. If I can get speed of pre 1.0 and accurate seeking I'll be on my way..
comment:10 by , 13 years ago
Replying to tuukka:
av_opt_set_int(CodecCtx->priv_data, "usetoc", 1, 0);
usetoc is a demuxer, not a decoder option, see ffmpeg -h full
comment:11 by , 13 years ago
Okay you showed the way but I just can't get clue how to tune it..
av_opt_set_int(&m_pFormatCtx->iformat->priv_class, "usetoc", 1, 0);
Is this a correct way because if I do this sample_rates are reseted... or should I do this before I open codec?
Edit: If I do right after or before 'avcodec_open2' it works but not making any change
comment:12 by , 13 years ago
Ok I can verify this one works ok with code on GIT. So If you want to close this It up to you I can get my code working..
av_dict_set(&m_iFormatOpts, "usetoc", "0", 0);
// Open file and make m_pFormatCtx
if (avformat_open_input(&m_pFormatCtx,filename, NULL, &m_iFormatOpts)!=0) {
printf("fe_decode_open: cannot open: %s\n",
filename);
return -1;
}
av_dict_free(&m_iFormatOpts);
comment:13 by , 13 years ago
| Keywords: | mp3 added |
|---|---|
| Resolution: | → fixed |
| Status: | new → closed |



ffprobe version N-57549-g269b3c8 Copyright (c) 2007-2013 the FFmpeg developers built on Oct 28 2013 18:21:15 with gcc 4.7 (SUSE Linux) configuration: --prefix=/####/####/##/#/ffmpeg-install/ffmpeg-git --enable-shared --disable-static --enable-debug --disable-stripping --extra-cflags= --enable-gpl --enable-x11grab --enable-version3 --enable-pthreads --disable-altivec --enable-libfaac --enable-nonfree --enable-libopenjpeg --enable-avfilter --disable-avfilter --enable-libpulse --enable-libvpx --enable-libass --enable-libass --enable-libmp3lame --enable-libvorbis --enable-libtheora --enable-libspeex --enable-libxvid --enable-libx264 --enable-libschroedinger --enable-libgsm --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-postproc --enable-libdc1394 --enable-librtmp --enable-libfreetype --enable-avresample --enable-libvo-aacenc libavutil 52. 48.100 / 52. 48.100 libavcodec 55. 39.100 / 55. 39.100 libavformat 55. 19.104 / 55. 19.104 libavdevice 55. 5.100 / 55. 5.100 libavresample 1. 1. 0 / 1. 1. 0 libswscale 2. 5.101 / 2. 5.101 libswresample 0. 17.104 / 0. 17.104 libpostproc 52. 3.100 / 52. 3.100 Input #0, mp3, from 'bug3095-test-VBR4.mp3': Duration: 00:09:32.58, start: 0.000000, bitrate: 191 kb/s Stream #0:0: Audio: mp3, 44100 Hz, stereo, s16p, 191 kb/s [FRAME] media_type=audio key_frame=1 pkt_pts=565615411 pkt_pts_time=40.080457 pkt_dts=565615411 pkt_dts_time=40.080457 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=748895 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=565984051 pkt_pts_time=40.106580 pkt_dts=565984051 pkt_dts_time=40.106580 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=749417 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=566352691 pkt_pts_time=40.132702 pkt_dts=566352691 pkt_dts_time=40.132702 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=749939 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=566721331 pkt_pts_time=40.158824 pkt_dts=566721331 pkt_dts_time=40.158824 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=750461 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=567089971 pkt_pts_time=40.184947 pkt_dts=567089971 pkt_dts_time=40.184947 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=750983 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=567458611 pkt_pts_time=40.211069 pkt_dts=567458611 pkt_dts_time=40.211069 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=751505 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=567827251 pkt_pts_time=40.237192 pkt_dts=567827251 pkt_dts_time=40.237192 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=751922 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=568195891 pkt_pts_time=40.263314 pkt_dts=568195891 pkt_dts_time=40.263314 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=752444 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=568564531 pkt_pts_time=40.289437 pkt_dts=568564531 pkt_dts_time=40.289437 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=752966 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=568933171 pkt_pts_time=40.315559 pkt_dts=568933171 pkt_dts_time=40.315559 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=753383 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=569301811 pkt_pts_time=40.341682 pkt_dts=569301811 pkt_dts_time=40.341682 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=753800 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=569670451 pkt_pts_time=40.367804 pkt_dts=569670451 pkt_dts_time=40.367804 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=754322 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=570039091 pkt_pts_time=40.393927 pkt_dts=570039091 pkt_dts_time=40.393927 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=754844 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=570407731 pkt_pts_time=40.420049 pkt_dts=570407731 pkt_dts_time=40.420049 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=755366 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=570776371 pkt_pts_time=40.446171 pkt_dts=570776371 pkt_dts_time=40.446171 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=755888 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=571145011 pkt_pts_time=40.472294 pkt_dts=571145011 pkt_dts_time=40.472294 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=756305 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=571513651 pkt_pts_time=40.498416 pkt_dts=571513651 pkt_dts_time=40.498416 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=756827 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=571882291 pkt_pts_time=40.524539 pkt_dts=571882291 pkt_dts_time=40.524539 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=757349 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=572250931 pkt_pts_time=40.550661 pkt_dts=572250931 pkt_dts_time=40.550661 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=757766 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=572619571 pkt_pts_time=40.576784 pkt_dts=572619571 pkt_dts_time=40.576784 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=758288 pkt_size=731 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=572988211 pkt_pts_time=40.602906 pkt_dts=572988211 pkt_dts_time=40.602906 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=759019 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=573356851 pkt_pts_time=40.629029 pkt_dts=573356851 pkt_dts_time=40.629029 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=759541 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=573725491 pkt_pts_time=40.655151 pkt_dts=573725491 pkt_dts_time=40.655151 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=759958 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=574094131 pkt_pts_time=40.681273 pkt_dts=574094131 pkt_dts_time=40.681273 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=760480 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=574462771 pkt_pts_time=40.707396 pkt_dts=574462771 pkt_dts_time=40.707396 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=760897 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=574831411 pkt_pts_time=40.733518 pkt_dts=574831411 pkt_dts_time=40.733518 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=761419 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=575200051 pkt_pts_time=40.759641 pkt_dts=575200051 pkt_dts_time=40.759641 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=761836 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=575568691 pkt_pts_time=40.785763 pkt_dts=575568691 pkt_dts_time=40.785763 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=762358 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=575937331 pkt_pts_time=40.811886 pkt_dts=575937331 pkt_dts_time=40.811886 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=762880 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=576305971 pkt_pts_time=40.838008 pkt_dts=576305971 pkt_dts_time=40.838008 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=763402 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=576674611 pkt_pts_time=40.864131 pkt_dts=576674611 pkt_dts_time=40.864131 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=763924 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=577043251 pkt_pts_time=40.890253 pkt_dts=577043251 pkt_dts_time=40.890253 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=764446 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=577411891 pkt_pts_time=40.916375 pkt_dts=577411891 pkt_dts_time=40.916375 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=764863 pkt_size=626 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=577780531 pkt_pts_time=40.942498 pkt_dts=577780531 pkt_dts_time=40.942498 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=765489 pkt_size=835 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=578149171 pkt_pts_time=40.968620 pkt_dts=578149171 pkt_dts_time=40.968620 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=766324 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=578517811 pkt_pts_time=40.994743 pkt_dts=578517811 pkt_dts_time=40.994743 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=766846 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=578886451 pkt_pts_time=41.020865 pkt_dts=578886451 pkt_dts_time=41.020865 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=767368 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=579255091 pkt_pts_time=41.046988 pkt_dts=579255091 pkt_dts_time=41.046988 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=767890 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=579623731 pkt_pts_time=41.073110 pkt_dts=579623731 pkt_dts_time=41.073110 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=768307 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [mp3 @ 0x15ece20] overread, skip -8 enddists: -6 -6 [mp3 @ 0x15ece20] overread, skip -7 enddists: -2 -2 [FRAME] media_type=audio key_frame=1 pkt_pts=579623731 pkt_pts_time=41.073110 pkt_dts=579623731 pkt_dts_time=41.073110 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=768307 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=579992371 pkt_pts_time=41.099233 pkt_dts=579992371 pkt_dts_time=41.099233 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=768829 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=580361011 pkt_pts_time=41.125355 pkt_dts=580361011 pkt_dts_time=41.125355 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=769351 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=580729651 pkt_pts_time=41.151478 pkt_dts=580729651 pkt_dts_time=41.151478 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=769873 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=581098291 pkt_pts_time=41.177600 pkt_dts=581098291 pkt_dts_time=41.177600 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=770290 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=581466931 pkt_pts_time=41.203722 pkt_dts=581466931 pkt_dts_time=41.203722 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=770812 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=581835571 pkt_pts_time=41.229845 pkt_dts=581835571 pkt_dts_time=41.229845 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=771334 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=582204211 pkt_pts_time=41.255967 pkt_dts=582204211 pkt_dts_time=41.255967 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=771751 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=582572851 pkt_pts_time=41.282090 pkt_dts=582572851 pkt_dts_time=41.282090 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=772273 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=582941491 pkt_pts_time=41.308212 pkt_dts=582941491 pkt_dts_time=41.308212 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=772795 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=583310131 pkt_pts_time=41.334335 pkt_dts=583310131 pkt_dts_time=41.334335 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=773317 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=583678771 pkt_pts_time=41.360457 pkt_dts=583678771 pkt_dts_time=41.360457 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=773839 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=584047411 pkt_pts_time=41.386580 pkt_dts=584047411 pkt_dts_time=41.386580 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=774361 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=584416051 pkt_pts_time=41.412702 pkt_dts=584416051 pkt_dts_time=41.412702 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=774883 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=584784691 pkt_pts_time=41.438824 pkt_dts=584784691 pkt_dts_time=41.438824 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=775300 pkt_size=731 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=585153331 pkt_pts_time=41.464947 pkt_dts=585153331 pkt_dts_time=41.464947 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=776031 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=585521971 pkt_pts_time=41.491069 pkt_dts=585521971 pkt_dts_time=41.491069 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=776553 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=585890611 pkt_pts_time=41.517192 pkt_dts=585890611 pkt_dts_time=41.517192 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=777075 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=586259251 pkt_pts_time=41.543314 pkt_dts=586259251 pkt_dts_time=41.543314 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=777597 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=586627891 pkt_pts_time=41.569437 pkt_dts=586627891 pkt_dts_time=41.569437 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=778119 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=586996531 pkt_pts_time=41.595559 pkt_dts=586996531 pkt_dts_time=41.595559 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=778641 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=587365171 pkt_pts_time=41.621682 pkt_dts=587365171 pkt_dts_time=41.621682 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=779163 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=587733811 pkt_pts_time=41.647804 pkt_dts=587733811 pkt_dts_time=41.647804 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=779580 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=588102451 pkt_pts_time=41.673927 pkt_dts=588102451 pkt_dts_time=41.673927 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=780102 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=588471091 pkt_pts_time=41.700049 pkt_dts=588471091 pkt_dts_time=41.700049 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=780624 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=588839731 pkt_pts_time=41.726171 pkt_dts=588839731 pkt_dts_time=41.726171 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=781041 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=589208371 pkt_pts_time=41.752294 pkt_dts=589208371 pkt_dts_time=41.752294 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=781563 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=589577011 pkt_pts_time=41.778416 pkt_dts=589577011 pkt_dts_time=41.778416 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=782085 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=589945651 pkt_pts_time=41.804539 pkt_dts=589945651 pkt_dts_time=41.804539 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=782607 pkt_size=835 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=590314291 pkt_pts_time=41.830661 pkt_dts=590314291 pkt_dts_time=41.830661 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=783442 pkt_size=626 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=590682931 pkt_pts_time=41.856784 pkt_dts=590682931 pkt_dts_time=41.856784 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=784068 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=591051571 pkt_pts_time=41.882906 pkt_dts=591051571 pkt_dts_time=41.882906 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=784590 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=591420211 pkt_pts_time=41.909029 pkt_dts=591420211 pkt_dts_time=41.909029 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=785112 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=591788851 pkt_pts_time=41.935151 pkt_dts=591788851 pkt_dts_time=41.935151 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=785634 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=592157491 pkt_pts_time=41.961273 pkt_dts=592157491 pkt_dts_time=41.961273 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=786156 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=592526131 pkt_pts_time=41.987396 pkt_dts=592526131 pkt_dts_time=41.987396 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=786678 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=592894771 pkt_pts_time=42.013518 pkt_dts=592894771 pkt_dts_time=42.013518 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=787200 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [mp3 @ 0x15ece20] overread, skip -5 enddists: -4 -4 [FRAME] media_type=audio key_frame=1 pkt_pts=484813210 pkt_pts_time=34.354678 pkt_dts=484813210 pkt_dts_time=34.354678 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=641712 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=485181850 pkt_pts_time=34.380800 pkt_dts=485181850 pkt_dts_time=34.380800 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=642234 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=485550490 pkt_pts_time=34.406922 pkt_dts=485550490 pkt_dts_time=34.406922 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=642756 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=485919130 pkt_pts_time=34.433045 pkt_dts=485919130 pkt_dts_time=34.433045 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=643173 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=486287770 pkt_pts_time=34.459167 pkt_dts=486287770 pkt_dts_time=34.459167 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=643695 pkt_size=835 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=486656410 pkt_pts_time=34.485290 pkt_dts=486656410 pkt_dts_time=34.485290 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=644530 pkt_size=731 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=487025050 pkt_pts_time=34.511412 pkt_dts=487025050 pkt_dts_time=34.511412 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=645261 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=487393690 pkt_pts_time=34.537535 pkt_dts=487393690 pkt_dts_time=34.537535 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=645783 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=487762330 pkt_pts_time=34.563657 pkt_dts=487762330 pkt_dts_time=34.563657 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=646305 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=488130970 pkt_pts_time=34.589780 pkt_dts=488130970 pkt_dts_time=34.589780 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=646827 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=488499610 pkt_pts_time=34.615902 pkt_dts=488499610 pkt_dts_time=34.615902 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=647244 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=488868250 pkt_pts_time=34.642025 pkt_dts=488868250 pkt_dts_time=34.642025 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=647766 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=489236890 pkt_pts_time=34.668147 pkt_dts=489236890 pkt_dts_time=34.668147 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=648288 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=489605530 pkt_pts_time=34.694269 pkt_dts=489605530 pkt_dts_time=34.694269 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=648810 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=489974170 pkt_pts_time=34.720392 pkt_dts=489974170 pkt_dts_time=34.720392 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=649332 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=490342810 pkt_pts_time=34.746514 pkt_dts=490342810 pkt_dts_time=34.746514 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=649854 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=490711450 pkt_pts_time=34.772637 pkt_dts=490711450 pkt_dts_time=34.772637 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=650376 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=491080090 pkt_pts_time=34.798759 pkt_dts=491080090 pkt_dts_time=34.798759 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=650898 pkt_size=626 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=491448730 pkt_pts_time=34.824882 pkt_dts=491448730 pkt_dts_time=34.824882 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=651524 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=491817370 pkt_pts_time=34.851004 pkt_dts=491817370 pkt_dts_time=34.851004 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=652046 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=492186010 pkt_pts_time=34.877127 pkt_dts=492186010 pkt_dts_time=34.877127 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=652568 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=492554650 pkt_pts_time=34.903249 pkt_dts=492554650 pkt_dts_time=34.903249 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=653090 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=492923290 pkt_pts_time=34.929371 pkt_dts=492923290 pkt_dts_time=34.929371 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=653612 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=493291930 pkt_pts_time=34.955494 pkt_dts=493291930 pkt_dts_time=34.955494 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=654134 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=493660570 pkt_pts_time=34.981616 pkt_dts=493660570 pkt_dts_time=34.981616 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=654656 pkt_size=731 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=494029210 pkt_pts_time=35.007739 pkt_dts=494029210 pkt_dts_time=35.007739 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=655387 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=494397850 pkt_pts_time=35.033861 pkt_dts=494397850 pkt_dts_time=35.033861 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=655804 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=494766490 pkt_pts_time=35.059984 pkt_dts=494766490 pkt_dts_time=35.059984 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=656326 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=495135130 pkt_pts_time=35.086106 pkt_dts=495135130 pkt_dts_time=35.086106 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=656848 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=495503770 pkt_pts_time=35.112229 pkt_dts=495503770 pkt_dts_time=35.112229 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=657370 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=495872410 pkt_pts_time=35.138351 pkt_dts=495872410 pkt_dts_time=35.138351 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=657892 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=496241050 pkt_pts_time=35.164473 pkt_dts=496241050 pkt_dts_time=35.164473 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=658414 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=496609690 pkt_pts_time=35.190596 pkt_dts=496609690 pkt_dts_time=35.190596 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=658831 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=496978330 pkt_pts_time=35.216718 pkt_dts=496978330 pkt_dts_time=35.216718 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=659353 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=497346970 pkt_pts_time=35.242841 pkt_dts=497346970 pkt_dts_time=35.242841 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=659875 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=497715610 pkt_pts_time=35.268963 pkt_dts=497715610 pkt_dts_time=35.268963 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=660292 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=498084250 pkt_pts_time=35.295086 pkt_dts=498084250 pkt_dts_time=35.295086 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=660814 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=498452890 pkt_pts_time=35.321208 pkt_dts=498452890 pkt_dts_time=35.321208 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=661336 pkt_size=626 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=498821530 pkt_pts_time=35.347331 pkt_dts=498821530 pkt_dts_time=35.347331 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=661962 pkt_size=835 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=499190170 pkt_pts_time=35.373453 pkt_dts=499190170 pkt_dts_time=35.373453 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=662797 pkt_size=626 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=499558810 pkt_pts_time=35.399576 pkt_dts=499558810 pkt_dts_time=35.399576 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=663423 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=499927450 pkt_pts_time=35.425698 pkt_dts=499927450 pkt_dts_time=35.425698 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=663945 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=500296090 pkt_pts_time=35.451820 pkt_dts=500296090 pkt_dts_time=35.451820 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=664362 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=500664730 pkt_pts_time=35.477943 pkt_dts=500664730 pkt_dts_time=35.477943 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=664884 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=501033370 pkt_pts_time=35.504065 pkt_dts=501033370 pkt_dts_time=35.504065 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=665406 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=501402010 pkt_pts_time=35.530188 pkt_dts=501402010 pkt_dts_time=35.530188 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=665823 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=501770650 pkt_pts_time=35.556310 pkt_dts=501770650 pkt_dts_time=35.556310 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=666345 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=502139290 pkt_pts_time=35.582433 pkt_dts=502139290 pkt_dts_time=35.582433 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=666867 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=502507930 pkt_pts_time=35.608555 pkt_dts=502507930 pkt_dts_time=35.608555 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=667284 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=502876570 pkt_pts_time=35.634678 pkt_dts=502876570 pkt_dts_time=35.634678 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=667806 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=503245210 pkt_pts_time=35.660800 pkt_dts=503245210 pkt_dts_time=35.660800 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=668328 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=503613850 pkt_pts_time=35.686922 pkt_dts=503613850 pkt_dts_time=35.686922 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=668850 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=503982490 pkt_pts_time=35.713045 pkt_dts=503982490 pkt_dts_time=35.713045 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=669267 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=504351130 pkt_pts_time=35.739167 pkt_dts=504351130 pkt_dts_time=35.739167 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=669789 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=504719770 pkt_pts_time=35.765290 pkt_dts=504719770 pkt_dts_time=35.765290 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=670311 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=505088410 pkt_pts_time=35.791412 pkt_dts=505088410 pkt_dts_time=35.791412 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=670833 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=505457050 pkt_pts_time=35.817535 pkt_dts=505457050 pkt_dts_time=35.817535 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=671355 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=505825690 pkt_pts_time=35.843657 pkt_dts=505825690 pkt_dts_time=35.843657 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=671772 pkt_size=731 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=506194330 pkt_pts_time=35.869780 pkt_dts=506194330 pkt_dts_time=35.869780 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=672503 pkt_size=626 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=506562970 pkt_pts_time=35.895902 pkt_dts=506562970 pkt_dts_time=35.895902 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=673129 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=506931610 pkt_pts_time=35.922025 pkt_dts=506931610 pkt_dts_time=35.922025 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=673546 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=507300250 pkt_pts_time=35.948147 pkt_dts=507300250 pkt_dts_time=35.948147 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=674068 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=507668890 pkt_pts_time=35.974269 pkt_dts=507668890 pkt_dts_time=35.974269 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=674590 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=508037530 pkt_pts_time=36.000392 pkt_dts=508037530 pkt_dts_time=36.000392 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=675007 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=508406170 pkt_pts_time=36.026514 pkt_dts=508406170 pkt_dts_time=36.026514 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=675529 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=508774810 pkt_pts_time=36.052637 pkt_dts=508774810 pkt_dts_time=36.052637 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=676051 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=509143450 pkt_pts_time=36.078759 pkt_dts=509143450 pkt_dts_time=36.078759 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=676468 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=509512090 pkt_pts_time=36.104882 pkt_dts=509512090 pkt_dts_time=36.104882 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=676990 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=509880730 pkt_pts_time=36.131004 pkt_dts=509880730 pkt_dts_time=36.131004 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=677512 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=510249370 pkt_pts_time=36.157127 pkt_dts=510249370 pkt_dts_time=36.157127 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=677929 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=510618010 pkt_pts_time=36.183249 pkt_dts=510618010 pkt_dts_time=36.183249 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=678451 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=510986650 pkt_pts_time=36.209371 pkt_dts=510986650 pkt_dts_time=36.209371 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=678973 pkt_size=835 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=511355290 pkt_pts_time=36.235494 pkt_dts=511355290 pkt_dts_time=36.235494 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=679808 pkt_size=626 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=511723930 pkt_pts_time=36.261616 pkt_dts=511723930 pkt_dts_time=36.261616 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=680434 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=512092570 pkt_pts_time=36.287739 pkt_dts=512092570 pkt_dts_time=36.287739 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=680851 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=512461210 pkt_pts_time=36.313861 pkt_dts=512461210 pkt_dts_time=36.313861 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=681373 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=512829850 pkt_pts_time=36.339984 pkt_dts=512829850 pkt_dts_time=36.339984 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=681895 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=513198490 pkt_pts_time=36.366106 pkt_dts=513198490 pkt_dts_time=36.366106 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=682312 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=513567130 pkt_pts_time=36.392229 pkt_dts=513567130 pkt_dts_time=36.392229 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=682834 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=513935770 pkt_pts_time=36.418351 pkt_dts=513935770 pkt_dts_time=36.418351 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=683251 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=514304410 pkt_pts_time=36.444473 pkt_dts=514304410 pkt_dts_time=36.444473 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=683773 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=514673050 pkt_pts_time=36.470596 pkt_dts=514673050 pkt_dts_time=36.470596 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=684190 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=515041690 pkt_pts_time=36.496718 pkt_dts=515041690 pkt_dts_time=36.496718 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=684712 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=515410330 pkt_pts_time=36.522841 pkt_dts=515410330 pkt_dts_time=36.522841 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=685129 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=515778970 pkt_pts_time=36.548963 pkt_dts=515778970 pkt_dts_time=36.548963 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=685546 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=516147610 pkt_pts_time=36.575086 pkt_dts=516147610 pkt_dts_time=36.575086 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=686068 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=516516250 pkt_pts_time=36.601208 pkt_dts=516516250 pkt_dts_time=36.601208 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=686485 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=516884890 pkt_pts_time=36.627331 pkt_dts=516884890 pkt_dts_time=36.627331 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=687007 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=517253530 pkt_pts_time=36.653453 pkt_dts=517253530 pkt_dts_time=36.653453 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=687424 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=517622170 pkt_pts_time=36.679576 pkt_dts=517622170 pkt_dts_time=36.679576 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=687946 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=517990810 pkt_pts_time=36.705698 pkt_dts=517990810 pkt_dts_time=36.705698 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=688363 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=518359450 pkt_pts_time=36.731820 pkt_dts=518359450 pkt_dts_time=36.731820 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=688780 pkt_size=835 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=518728090 pkt_pts_time=36.757943 pkt_dts=518728090 pkt_dts_time=36.757943 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=689615 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=519096730 pkt_pts_time=36.784065 pkt_dts=519096730 pkt_dts_time=36.784065 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=690032 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=519465370 pkt_pts_time=36.810188 pkt_dts=519465370 pkt_dts_time=36.810188 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=690449 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=519834010 pkt_pts_time=36.836310 pkt_dts=519834010 pkt_dts_time=36.836310 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=690971 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=520202650 pkt_pts_time=36.862433 pkt_dts=520202650 pkt_dts_time=36.862433 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=691388 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=520571290 pkt_pts_time=36.888555 pkt_dts=520571290 pkt_dts_time=36.888555 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=691910 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=520939930 pkt_pts_time=36.914678 pkt_dts=520939930 pkt_dts_time=36.914678 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=692327 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=521308570 pkt_pts_time=36.940800 pkt_dts=521308570 pkt_dts_time=36.940800 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=692744 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=521677210 pkt_pts_time=36.966922 pkt_dts=521677210 pkt_dts_time=36.966922 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=693161 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=522045850 pkt_pts_time=36.993045 pkt_dts=522045850 pkt_dts_time=36.993045 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=693683 pkt_size=626 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=522414490 pkt_pts_time=37.019167 pkt_dts=522414490 pkt_dts_time=37.019167 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=694309 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=522783130 pkt_pts_time=37.045290 pkt_dts=522783130 pkt_dts_time=37.045290 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=694726 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=523151770 pkt_pts_time=37.071412 pkt_dts=523151770 pkt_dts_time=37.071412 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=695248 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=523520410 pkt_pts_time=37.097535 pkt_dts=523520410 pkt_dts_time=37.097535 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=695770 pkt_size=835 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=523889050 pkt_pts_time=37.123657 pkt_dts=523889050 pkt_dts_time=37.123657 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=696605 pkt_size=626 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=524257690 pkt_pts_time=37.149780 pkt_dts=524257690 pkt_dts_time=37.149780 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=697231 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=524626330 pkt_pts_time=37.175902 pkt_dts=524626330 pkt_dts_time=37.175902 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=697648 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=524994970 pkt_pts_time=37.202025 pkt_dts=524994970 pkt_dts_time=37.202025 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=698170 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=525363610 pkt_pts_time=37.228147 pkt_dts=525363610 pkt_dts_time=37.228147 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=698692 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=525732250 pkt_pts_time=37.254269 pkt_dts=525732250 pkt_dts_time=37.254269 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=699214 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=526100890 pkt_pts_time=37.280392 pkt_dts=526100890 pkt_dts_time=37.280392 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=699631 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=526469530 pkt_pts_time=37.306514 pkt_dts=526469530 pkt_dts_time=37.306514 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=700153 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=526838170 pkt_pts_time=37.332637 pkt_dts=526838170 pkt_dts_time=37.332637 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=700675 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=527206810 pkt_pts_time=37.358759 pkt_dts=527206810 pkt_dts_time=37.358759 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=701197 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=527575450 pkt_pts_time=37.384882 pkt_dts=527575450 pkt_dts_time=37.384882 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=701614 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=527944090 pkt_pts_time=37.411004 pkt_dts=527944090 pkt_dts_time=37.411004 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=702136 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=528312730 pkt_pts_time=37.437127 pkt_dts=528312730 pkt_dts_time=37.437127 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=702658 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=528681370 pkt_pts_time=37.463249 pkt_dts=528681370 pkt_dts_time=37.463249 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=703180 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=529050010 pkt_pts_time=37.489371 pkt_dts=529050010 pkt_dts_time=37.489371 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=703702 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=529418650 pkt_pts_time=37.515494 pkt_dts=529418650 pkt_dts_time=37.515494 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=704224 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=529787290 pkt_pts_time=37.541616 pkt_dts=529787290 pkt_dts_time=37.541616 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=704746 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=530155930 pkt_pts_time=37.567739 pkt_dts=530155930 pkt_dts_time=37.567739 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=705268 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=530524570 pkt_pts_time=37.593861 pkt_dts=530524570 pkt_dts_time=37.593861 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=705790 pkt_size=731 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=530893210 pkt_pts_time=37.619984 pkt_dts=530893210 pkt_dts_time=37.619984 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=706521 pkt_size=626 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=531261850 pkt_pts_time=37.646106 pkt_dts=531261850 pkt_dts_time=37.646106 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=707147 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=531630490 pkt_pts_time=37.672229 pkt_dts=531630490 pkt_dts_time=37.672229 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=707564 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=531999130 pkt_pts_time=37.698351 pkt_dts=531999130 pkt_dts_time=37.698351 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=708086 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=532367770 pkt_pts_time=37.724473 pkt_dts=532367770 pkt_dts_time=37.724473 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=708608 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=532736410 pkt_pts_time=37.750596 pkt_dts=532736410 pkt_dts_time=37.750596 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=709130 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=533105050 pkt_pts_time=37.776718 pkt_dts=533105050 pkt_dts_time=37.776718 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=709652 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=533473690 pkt_pts_time=37.802841 pkt_dts=533473690 pkt_dts_time=37.802841 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=710069 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=533842330 pkt_pts_time=37.828963 pkt_dts=533842330 pkt_dts_time=37.828963 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=710591 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=534210970 pkt_pts_time=37.855086 pkt_dts=534210970 pkt_dts_time=37.855086 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=711113 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=534579610 pkt_pts_time=37.881208 pkt_dts=534579610 pkt_dts_time=37.881208 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=711635 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=534948250 pkt_pts_time=37.907331 pkt_dts=534948250 pkt_dts_time=37.907331 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=712052 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=535316890 pkt_pts_time=37.933453 pkt_dts=535316890 pkt_dts_time=37.933453 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=712574 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=535685530 pkt_pts_time=37.959576 pkt_dts=535685530 pkt_dts_time=37.959576 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=713096 pkt_size=835 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=536054170 pkt_pts_time=37.985698 pkt_dts=536054170 pkt_dts_time=37.985698 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=713931 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=536422810 pkt_pts_time=38.011820 pkt_dts=536422810 pkt_dts_time=38.011820 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=714453 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=536791450 pkt_pts_time=38.037943 pkt_dts=536791450 pkt_dts_time=38.037943 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=714975 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=537160090 pkt_pts_time=38.064065 pkt_dts=537160090 pkt_dts_time=38.064065 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=715497 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=537528730 pkt_pts_time=38.090188 pkt_dts=537528730 pkt_dts_time=38.090188 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=716019 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=537897370 pkt_pts_time=38.116310 pkt_dts=537897370 pkt_dts_time=38.116310 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=716541 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=538266010 pkt_pts_time=38.142433 pkt_dts=538266010 pkt_dts_time=38.142433 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=717063 pkt_size=626 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=538634650 pkt_pts_time=38.168555 pkt_dts=538634650 pkt_dts_time=38.168555 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=717689 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=539003290 pkt_pts_time=38.194678 pkt_dts=539003290 pkt_dts_time=38.194678 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=718106 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=539371930 pkt_pts_time=38.220800 pkt_dts=539371930 pkt_dts_time=38.220800 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=718628 pkt_size=626 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=539740570 pkt_pts_time=38.246922 pkt_dts=539740570 pkt_dts_time=38.246922 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=719254 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=540109210 pkt_pts_time=38.273045 pkt_dts=540109210 pkt_dts_time=38.273045 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=719671 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=540477850 pkt_pts_time=38.299167 pkt_dts=540477850 pkt_dts_time=38.299167 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=720193 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=540846490 pkt_pts_time=38.325290 pkt_dts=540846490 pkt_dts_time=38.325290 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=720715 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=541215130 pkt_pts_time=38.351412 pkt_dts=541215130 pkt_dts_time=38.351412 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=721237 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=541583770 pkt_pts_time=38.377535 pkt_dts=541583770 pkt_dts_time=38.377535 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=721759 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=541952410 pkt_pts_time=38.403657 pkt_dts=541952410 pkt_dts_time=38.403657 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=722281 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=542321050 pkt_pts_time=38.429780 pkt_dts=542321050 pkt_dts_time=38.429780 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=722803 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=542689690 pkt_pts_time=38.455902 pkt_dts=542689690 pkt_dts_time=38.455902 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=723325 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=543058330 pkt_pts_time=38.482025 pkt_dts=543058330 pkt_dts_time=38.482025 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=723847 pkt_size=731 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=543426970 pkt_pts_time=38.508147 pkt_dts=543426970 pkt_dts_time=38.508147 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=724578 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=543795610 pkt_pts_time=38.534269 pkt_dts=543795610 pkt_dts_time=38.534269 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=725100 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=544164250 pkt_pts_time=38.560392 pkt_dts=544164250 pkt_dts_time=38.560392 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=725622 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=544532890 pkt_pts_time=38.586514 pkt_dts=544532890 pkt_dts_time=38.586514 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=726039 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=544901530 pkt_pts_time=38.612637 pkt_dts=544901530 pkt_dts_time=38.612637 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=726561 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=545270170 pkt_pts_time=38.638759 pkt_dts=545270170 pkt_dts_time=38.638759 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=727083 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=545638810 pkt_pts_time=38.664882 pkt_dts=545638810 pkt_dts_time=38.664882 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=727500 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=546007450 pkt_pts_time=38.691004 pkt_dts=546007450 pkt_dts_time=38.691004 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=728022 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=546376090 pkt_pts_time=38.717127 pkt_dts=546376090 pkt_dts_time=38.717127 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=728544 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=546744730 pkt_pts_time=38.743249 pkt_dts=546744730 pkt_dts_time=38.743249 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=728961 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=547113370 pkt_pts_time=38.769371 pkt_dts=547113370 pkt_dts_time=38.769371 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=729483 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=547482010 pkt_pts_time=38.795494 pkt_dts=547482010 pkt_dts_time=38.795494 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=730005 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=547850650 pkt_pts_time=38.821616 pkt_dts=547850650 pkt_dts_time=38.821616 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=730422 pkt_size=731 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=548219290 pkt_pts_time=38.847739 pkt_dts=548219290 pkt_dts_time=38.847739 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=731153 pkt_size=626 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=548587930 pkt_pts_time=38.873861 pkt_dts=548587930 pkt_dts_time=38.873861 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=731779 pkt_size=626 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=548956570 pkt_pts_time=38.899984 pkt_dts=548956570 pkt_dts_time=38.899984 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=732405 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=549325210 pkt_pts_time=38.926106 pkt_dts=549325210 pkt_dts_time=38.926106 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=732822 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=549693850 pkt_pts_time=38.952229 pkt_dts=549693850 pkt_dts_time=38.952229 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=733344 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=550062490 pkt_pts_time=38.978351 pkt_dts=550062490 pkt_dts_time=38.978351 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=733866 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=550431130 pkt_pts_time=39.004473 pkt_dts=550431130 pkt_dts_time=39.004473 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=734388 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=550799770 pkt_pts_time=39.030596 pkt_dts=550799770 pkt_dts_time=39.030596 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=734805 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=551168410 pkt_pts_time=39.056718 pkt_dts=551168410 pkt_dts_time=39.056718 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=735222 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=551537050 pkt_pts_time=39.082841 pkt_dts=551537050 pkt_dts_time=39.082841 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=735639 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=551905690 pkt_pts_time=39.108963 pkt_dts=551905690 pkt_dts_time=39.108963 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=736161 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=552274330 pkt_pts_time=39.135086 pkt_dts=552274330 pkt_dts_time=39.135086 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=736578 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=552642970 pkt_pts_time=39.161208 pkt_dts=552642970 pkt_dts_time=39.161208 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=737100 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=553011610 pkt_pts_time=39.187331 pkt_dts=553011610 pkt_dts_time=39.187331 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=737517 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=553380250 pkt_pts_time=39.213453 pkt_dts=553380250 pkt_dts_time=39.213453 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=738039 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=553748890 pkt_pts_time=39.239576 pkt_dts=553748890 pkt_dts_time=39.239576 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=738456 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=554117530 pkt_pts_time=39.265698 pkt_dts=554117530 pkt_dts_time=39.265698 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=738978 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=554486170 pkt_pts_time=39.291820 pkt_dts=554486170 pkt_dts_time=39.291820 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=739500 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=554854810 pkt_pts_time=39.317943 pkt_dts=554854810 pkt_dts_time=39.317943 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=740022 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=555223450 pkt_pts_time=39.344065 pkt_dts=555223450 pkt_dts_time=39.344065 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=740544 pkt_size=835 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=555592090 pkt_pts_time=39.370188 pkt_dts=555592090 pkt_dts_time=39.370188 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=741379 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=555960730 pkt_pts_time=39.396310 pkt_dts=555960730 pkt_dts_time=39.396310 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=741901 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=556329370 pkt_pts_time=39.422433 pkt_dts=556329370 pkt_dts_time=39.422433 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=742423 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=556698010 pkt_pts_time=39.448555 pkt_dts=556698010 pkt_dts_time=39.448555 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=742945 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=557066650 pkt_pts_time=39.474678 pkt_dts=557066650 pkt_dts_time=39.474678 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=743467 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=557435290 pkt_pts_time=39.500800 pkt_dts=557435290 pkt_dts_time=39.500800 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=743884 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=557803930 pkt_pts_time=39.526922 pkt_dts=557803930 pkt_dts_time=39.526922 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=744406 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=558172570 pkt_pts_time=39.553045 pkt_dts=558172570 pkt_dts_time=39.553045 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=744928 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=558541210 pkt_pts_time=39.579167 pkt_dts=558541210 pkt_dts_time=39.579167 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=745450 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=558909850 pkt_pts_time=39.605290 pkt_dts=558909850 pkt_dts_time=39.605290 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=745972 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=559278490 pkt_pts_time=39.631412 pkt_dts=559278490 pkt_dts_time=39.631412 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=746494 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=559647130 pkt_pts_time=39.657535 pkt_dts=559647130 pkt_dts_time=39.657535 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=747016 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=560015770 pkt_pts_time=39.683657 pkt_dts=560015770 pkt_dts_time=39.683657 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=747538 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=560384410 pkt_pts_time=39.709780 pkt_dts=560384410 pkt_dts_time=39.709780 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=748060 pkt_size=835 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=560753050 pkt_pts_time=39.735902 pkt_dts=560753050 pkt_dts_time=39.735902 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=748895 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=561121690 pkt_pts_time=39.762025 pkt_dts=561121690 pkt_dts_time=39.762025 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=749417 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=561490330 pkt_pts_time=39.788147 pkt_dts=561490330 pkt_dts_time=39.788147 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=749939 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=561858970 pkt_pts_time=39.814269 pkt_dts=561858970 pkt_dts_time=39.814269 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=750461 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=562227610 pkt_pts_time=39.840392 pkt_dts=562227610 pkt_dts_time=39.840392 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=750983 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=562596250 pkt_pts_time=39.866514 pkt_dts=562596250 pkt_dts_time=39.866514 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=751505 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=562964890 pkt_pts_time=39.892637 pkt_dts=562964890 pkt_dts_time=39.892637 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=751922 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=563333530 pkt_pts_time=39.918759 pkt_dts=563333530 pkt_dts_time=39.918759 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=752444 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=563702170 pkt_pts_time=39.944882 pkt_dts=563702170 pkt_dts_time=39.944882 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=752966 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=564070810 pkt_pts_time=39.971004 pkt_dts=564070810 pkt_dts_time=39.971004 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=753383 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=564439450 pkt_pts_time=39.997127 pkt_dts=564439450 pkt_dts_time=39.997127 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=753800 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=564808090 pkt_pts_time=40.023249 pkt_dts=564808090 pkt_dts_time=40.023249 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=754322 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=565176730 pkt_pts_time=40.049371 pkt_dts=565176730 pkt_dts_time=40.049371 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=754844 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=565545370 pkt_pts_time=40.075494 pkt_dts=565545370 pkt_dts_time=40.075494 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=755366 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=565914010 pkt_pts_time=40.101616 pkt_dts=565914010 pkt_dts_time=40.101616 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=755888 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=566282650 pkt_pts_time=40.127739 pkt_dts=566282650 pkt_dts_time=40.127739 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=756305 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=566651290 pkt_pts_time=40.153861 pkt_dts=566651290 pkt_dts_time=40.153861 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=756827 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=567019930 pkt_pts_time=40.179984 pkt_dts=567019930 pkt_dts_time=40.179984 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=757349 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=567388570 pkt_pts_time=40.206106 pkt_dts=567388570 pkt_dts_time=40.206106 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=757766 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=567757210 pkt_pts_time=40.232229 pkt_dts=567757210 pkt_dts_time=40.232229 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=758288 pkt_size=731 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=568125850 pkt_pts_time=40.258351 pkt_dts=568125850 pkt_dts_time=40.258351 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=759019 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=568494490 pkt_pts_time=40.284473 pkt_dts=568494490 pkt_dts_time=40.284473 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=759541 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=568863130 pkt_pts_time=40.310596 pkt_dts=568863130 pkt_dts_time=40.310596 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=759958 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=569231770 pkt_pts_time=40.336718 pkt_dts=569231770 pkt_dts_time=40.336718 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=760480 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=569600410 pkt_pts_time=40.362841 pkt_dts=569600410 pkt_dts_time=40.362841 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=760897 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=569969050 pkt_pts_time=40.388963 pkt_dts=569969050 pkt_dts_time=40.388963 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=761419 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=570337690 pkt_pts_time=40.415086 pkt_dts=570337690 pkt_dts_time=40.415086 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=761836 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=570706330 pkt_pts_time=40.441208 pkt_dts=570706330 pkt_dts_time=40.441208 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=762358 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=571074970 pkt_pts_time=40.467331 pkt_dts=571074970 pkt_dts_time=40.467331 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=762880 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=571443610 pkt_pts_time=40.493453 pkt_dts=571443610 pkt_dts_time=40.493453 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=763402 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=571812250 pkt_pts_time=40.519576 pkt_dts=571812250 pkt_dts_time=40.519576 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=763924 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=572180890 pkt_pts_time=40.545698 pkt_dts=572180890 pkt_dts_time=40.545698 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=764446 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=572549530 pkt_pts_time=40.571820 pkt_dts=572549530 pkt_dts_time=40.571820 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=764863 pkt_size=626 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=572918170 pkt_pts_time=40.597943 pkt_dts=572918170 pkt_dts_time=40.597943 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=765489 pkt_size=835 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=573286810 pkt_pts_time=40.624065 pkt_dts=573286810 pkt_dts_time=40.624065 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=766324 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=573655450 pkt_pts_time=40.650188 pkt_dts=573655450 pkt_dts_time=40.650188 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=766846 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=574024090 pkt_pts_time=40.676310 pkt_dts=574024090 pkt_dts_time=40.676310 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=767368 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=574392730 pkt_pts_time=40.702433 pkt_dts=574392730 pkt_dts_time=40.702433 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=767890 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=574761370 pkt_pts_time=40.728555 pkt_dts=574761370 pkt_dts_time=40.728555 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=768307 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=575130010 pkt_pts_time=40.754678 pkt_dts=575130010 pkt_dts_time=40.754678 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=768829 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=575498650 pkt_pts_time=40.780800 pkt_dts=575498650 pkt_dts_time=40.780800 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=769351 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=575867290 pkt_pts_time=40.806922 pkt_dts=575867290 pkt_dts_time=40.806922 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=769873 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=576235930 pkt_pts_time=40.833045 pkt_dts=576235930 pkt_dts_time=40.833045 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=770290 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=576604570 pkt_pts_time=40.859167 pkt_dts=576604570 pkt_dts_time=40.859167 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=770812 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=576973210 pkt_pts_time=40.885290 pkt_dts=576973210 pkt_dts_time=40.885290 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=771334 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=577341850 pkt_pts_time=40.911412 pkt_dts=577341850 pkt_dts_time=40.911412 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=771751 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=577710490 pkt_pts_time=40.937535 pkt_dts=577710490 pkt_dts_time=40.937535 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=772273 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=578079130 pkt_pts_time=40.963657 pkt_dts=578079130 pkt_dts_time=40.963657 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=772795 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=578447770 pkt_pts_time=40.989780 pkt_dts=578447770 pkt_dts_time=40.989780 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=773317 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=578816410 pkt_pts_time=41.015902 pkt_dts=578816410 pkt_dts_time=41.015902 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=773839 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=579185050 pkt_pts_time=41.042025 pkt_dts=579185050 pkt_dts_time=41.042025 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=774361 pkt_size=522 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=579553690 pkt_pts_time=41.068147 pkt_dts=579553690 pkt_dts_time=41.068147 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=774883 pkt_size=417 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME] [FRAME] media_type=audio key_frame=1 pkt_pts=579922330 pkt_pts_time=41.094269 pkt_dts=579922330 pkt_dts_time=41.094269 pkt_duration=368640 pkt_duration_time=0.026122 pkt_pos=775300 pkt_size=731 sample_fmt=s16p nb_samples=1152 channels=2 channel_layout=stereo [/FRAME]