Changeset 1476


Ignore:
Timestamp:
12/07/10 12:20:54 (2 years ago)
Author:
jeroen
Message:

updated adaptive providers

Location:
providers/adaptive
Files:
4 added
5 deleted
10 edited

Legend:

Unmodified
Added
Removed
  • providers/adaptive/src/com/longtailvideo/jwplayer/demux/PES.as

    r1456 r1476  
    22 
    33 
     4        import com.longtailvideo.jwplayer.demux.*; 
    45        import com.longtailvideo.jwplayer.utils.Logger; 
    5  
    66        import flash.utils.ByteArray; 
    77 
    88 
    9         /** Translate a single Packetized Elementary Stream into FLV Tags. **/ 
     9        /** Representation of a Packetized Elementary Stream. **/ 
    1010        public class PES { 
    1111 
     
    1313                /** The PES data (including headers). **/ 
    1414                private var _data:ByteArray; 
     15                /** Timestamp from the DTS header. **/ 
     16                private var _dts:Number; 
     17                /** FLV file the tags should be pushed into. **/ 
     18                private var _flv:FLV; 
     19                /** Is it AAC audio or AVC video. **/ 
     20                private var _isAudio:Boolean; 
     21                /** Is this the first audio/video PES of the TS. **/ 
     22                private var _isFirst:Boolean; 
    1523                /** Timestamp from the PTS header. **/ 
    16                 private var _timestamp:Number; 
    17                 /** Is it AAC or AVC. **/ 
    18                 private var _audio:Boolean; 
    19                 /** Is there a keyframe. **/ 
    20                 private var _keyframe:Boolean; 
    21                 /** ByteArray with FLV tags for this stream. **/ 
    22                 private var _tags:ByteArray; 
    23                 /** Composition time for video tag. **/ 
    24                 private var _compositionTime:Number; 
    25  
    26  
    27                 /** Save the first chunk of data. **/ 
    28                 public function PES(data:ByteArray,audio:Boolean,keyframe:Boolean=false) { 
    29                         _data = data; 
    30                         _audio = audio; 
    31                         _keyframe = keyframe; 
    32                         _tags = new ByteArray(); 
    33                 }; 
    34  
    35  
    36                 /** Append data to the AVC stream. **/ 
    37                 public function append(data:ByteArray):void { 
    38                         _data.writeBytes(data); 
    39                 }; 
    40  
    41  
    42                 /** Return the FLV tags. **/ 
    43                 public function get tags():ByteArray { 
    44                         return _tags; 
    45                 } 
    46  
    47  
    48                 /** Parse the Elementary Stream. **/ 
    49                 public function parse(): void { 
     24                private var _pts:Number; 
     25 
     26 
     27                /** Save the first chunk of PES data. **/ 
     28                public function PES(dat:ByteArray,aud:Boolean,fst:Boolean=false) { 
     29                        _data = dat; 
     30                        _isAudio = aud; 
     31                        _isFirst = fst; 
     32                }; 
     33 
     34 
     35                /** Append PES data from additional TS packets. **/ 
     36                public function append(dat:ByteArray):void { 
     37                        _data.writeBytes(dat,0,0); 
     38                }; 
     39 
     40 
     41                /** When all data is appended, push the FLV tags into FLV. **/ 
     42                public function parse(flv:FLV): void { 
     43                        _flv = flv; 
     44                        _data.position = 0; 
     45                        _parseHeader(); 
     46                }; 
     47 
     48 
     49                /** Parse the ADTS header and store FLV tag. **/ 
     50                private function _parseADTS():void { 
     51                        var dat:ByteArray = new ByteArray(); 
     52                        // Syncword, ID, Layer and PA should be 0xFFF1. 
     53                        if(_data.readUnsignedShort() == 65521) { 
     54                                // ADIF zero index is null; ADTS not. 
     55                                var profile:uint = (_data.readByte() >> 6) + 1; 
     56                                _data.position--; 
     57                                var samplerate:uint = (_data.readByte() & 0x3C) >> 2; 
     58                                _data.position--; 
     59                                var channels:uint = (_data.readShort() & 0x01C0) >> 6; 
     60                                _data.position -= 4; 
     61                                // 5 bits profile + 4 bits samplerate + 4 bits channels. 
     62                                dat.writeByte((profile << 3) + (samplerate >> 1)); 
     63                                dat.writeByte((samplerate << 7) + (channels << 3)); 
     64                                _flv.push(new Tag(dat,Math.round(_pts/90), true, true)); 
     65                        } else { 
     66                                throw new Error("ADTS data not found in PES."); 
     67                        } 
     68                }; 
     69 
     70 
     71                /** Filter out ADTS headers and store FLV tag. **/ 
     72                private function _parseAudio():void { 
     73                        var pos:Number = 0; 
     74                        var dat:ByteArray; 
     75                        while(_data.bytesAvailable > 1) { 
     76                                // ADTS header: Syncword, ID, Layer and PA should be 0xFFF1. 
     77                                if(_data.readUnsignedShort() == 65521) { 
     78                                        // Write raw AAC preceding this header into FLVTag. 
     79                                        if(pos) { 
     80                                                dat = new ByteArray(); 
     81                                                dat.writeBytes(_data, pos , _data.position - pos - 1); 
     82                                                // Saving raw AAC in one tag by just slicing ADTS caused speed-ups. 
     83                                                _flv.push(new Tag(dat, Math.round(_pts/90), true)); 
     84                                        } 
     85                                        // ADTS header is 7 bytes. 
     86                                        _data.position += 5; 
     87                                        pos = _data.position; 
     88                                } else {  
     89                                        _data.position--; 
     90                                } 
     91                        } 
     92                        // Write raw AAC after last header. 
     93                        dat = new ByteArray(); 
     94                        dat.writeBytes(_data, pos); 
     95                        _flv.push(new Tag(dat, Math.round(_pts/90), true)); 
     96                }; 
     97 
     98 
     99                /** Parse the header of a PES. **/ 
     100                private function _parseHeader():void { 
    50101                        // Start code prefix and packet ID. 
    51                         _data.position = 0; 
    52                         if((_audio && _data.readUnsignedInt() != 448) ||  
    53                                 (!_audio && _data.readUnsignedInt() != 480)) { 
     102                        if((_isAudio && _data.readUnsignedInt() != 448) ||  
     103                                (!_isAudio && _data.readUnsignedInt() != 480)) { 
    54104                                throw new Error("PES start code not found or not AAC/AVC"); 
    55105                        } 
     
    57107                        _data.position += 3; 
    58108                        // Check for PTS 
    59                         var flags:uint = (_data.readUnsignedByte() & 192) >> 6; 
    60                         if((_audio && flags != 2) || (!_audio && flags != 3)) {  
     109                        var fgs:uint = (_data.readUnsignedByte() & 192) >> 6; 
     110                        if((_isAudio && fgs != 2) || (!_isAudio && fgs != 3)) {  
    61111                                throw new Error("No PTS/DTS in this PES packet"); 
    62112                        } 
    63113                        // Check PES header length 
    64                         var length:uint = _data.readUnsignedByte(); 
     114                        var len:uint = _data.readUnsignedByte(); 
    65115                        // Grab the timestamp from PTS data (spread out over 5 bytes): 
    66116                        // XXXX---X -------- -------X -------- -------X 
    67                         var pts:Number = ((_data.readUnsignedByte() & 14) << 29) +  
     117                        _pts = ((_data.readUnsignedByte() & 14) << 29) +  
    68118                                ((_data.readUnsignedShort() & 65534) << 14) +  
    69119                                ((_data.readUnsignedShort() & 65534) >> 1); 
    70                         // Convert 90kHz clock to milliseconds. 
    71                         _timestamp = Math.round(pts/90); 
    72                         length -= 5; 
    73                         if(!_audio) { 
     120                        len -= 5; 
     121                        if(!_isAudio) { 
    74122                                // Grab the DTS and calculate compositionTime (PTS-DTS) 
    75                                 var dts:Number = ((_data.readUnsignedByte() & 14) << 29) +  
     123                                _dts = ((_data.readUnsignedByte() & 14) << 29) +  
    76124                                        ((_data.readUnsignedShort() & 65534) << 14) +  
    77125                                        ((_data.readUnsignedShort() & 65534) >> 1); 
    78                                 _compositionTime = _timestamp - Math.round(dts/90); 
    79                                 length -= 5; 
    80                         } 
    81                         // Skip other header data. 
    82                         _data.position += length; 
    83                         if(_audio) {  
    84                                 parseAac(); 
    85                         } else {  
    86                                 parseAvc(); 
    87                         } 
    88                 }; 
    89  
    90  
    91                 /** Step through AAC to extract ADTS. **/ 
    92                 private function parseAac():void { 
    93                         var start:Number = 0; 
    94                         var rawstart:Number = 0; 
    95                         while(_data.bytesAvailable > 1) { 
    96                                 // ADTS header: Syncword, ID, Layer and PA should be 0xFFF1. 
    97                                 if(_data.readUnsignedShort() == 65521) { 
    98                                         // Inject raw AAC preceding this header. 
    99                                         if(rawstart) { 
    100                                                 writeAudioTag(rawstart,_data.position-rawstart-2,false); 
    101                                         } 
    102                                         // Only write first ADTS header of file (7 bytes). Ignore the other. 
    103                                         if(!rawstart && _keyframe) { 
    104                                                 writeAudioTag(_data.position-2,7,true); 
    105                                         } 
    106                                         rawstart = _data.position + 5; 
    107                                 } 
    108                                 _data.position--; 
    109                         } 
    110                         // Raw AAC after last ADTS header. 
    111                         writeAudioTag(rawstart,_data.length-rawstart,false); 
     126                                len -= 5; 
     127                        } 
     128 
     129                        // Skip other header data and parse payload. 
     130                        _data.position += len; 
     131                        if(_isAudio) { 
     132                                if(_isFirst) { 
     133                                        _parseADTS(); 
     134                                } 
     135                                _parseAudio(); 
     136                        } else { 
     137                                _parseVideo(); 
     138                        } 
    112139                }; 
    113140 
    114141 
    115142                /** Step through AVC to extract NAL units. **/ 
    116                 private function parseAvc():void { 
     143                private function _parseVideo():void { 
    117144                        var units:Array = new Array(); 
    118145                        var window:uint = 0; 
     
    170197 
    171198                        // Finally, write the tags 
    172                         if(sps.length && pps.length) { 
    173                                 writeAvccTag(sps,pps); 
    174                         } 
    175                         writeVideoTag(nalu); 
    176                 }; 
    177  
    178  
    179                 /** Write an FLV tag with audio data. **/ 
    180                 private function writeAudioTag(offset:uint,length:uint,adts:Boolean=false):void { 
    181                         // Header 
    182                         writeTagHeader(8,length + 2); 
    183  
    184                         // SoundFormat, -Rate, -Size, Type. 
    185                         _tags.writeByte(0xAF); 
    186                         // ADTS or raw AAC. 
    187                         if(adts) { 
    188                                 _tags.writeByte(0x00); 
     199                        if(_isFirst) { 
     200                                if(sps.length && pps.length) {  
     201                                        _parseSpsPps(sps,pps); 
     202                                } 
     203                                _flv.push(new Tag( 
     204                                        nalu, 
     205                                        Math.round(_pts/90),  
     206                                        false,  
     207                                        false,  
     208                                        true 
     209                                )); 
    189210                        } else {  
    190                                 _tags.writeByte(0x01); 
    191                         } 
    192                         // Write actual data. 
    193                         _tags.writeBytes(_data,offset,length); 
    194                         // PreviousTagSize 
    195                         _tags.writeUnsignedInt(length + 13); 
    196                 }; 
    197  
    198  
    199                 /** Write an FLV tag with SPS/PPS data parsed into avcC. **/ 
    200                 private function writeAvccTag(sps:ByteArray,pps:ByteArray):void { 
    201                         // Header 
    202                         writeTagHeader(9,sps.length + pps.length + 19); 
    203  
    204                         // Keyframe + AVC 
    205                         _tags.writeByte(0x17); 
    206                         // CompositionTime 
    207                         _tags.writeByte(0); 
    208                         _tags.writeByte(0); 
    209                         _tags.writeByte(0); 
    210                         // Sequence header 
    211                         _tags.writeUnsignedInt(0x00); 
    212  
     211                                _flv.push(new Tag( 
     212                                        nalu, 
     213                                        Math.round(_pts/90),  
     214                                        false,  
     215                                        false,  
     216                                        false 
     217                                )); 
     218                        } 
     219                }; 
     220 
     221 
     222                /** Parse the SPS and PPS data into avcC. **/ 
     223                private function _parseSpsPps(sps:ByteArray,pps:ByteArray):void { 
     224                        var dat:ByteArray = new ByteArray(); 
    213225                        // avcC version. 
    214                         _tags.writeByte(0x01); 
     226                        dat.writeByte(0x01); 
    215227                        // profile, compatibility and level. 
    216                         _tags.writeBytes(sps, 1, 3); 
     228                        dat.writeBytes(sps, 1, 3); 
    217229                        // 111111 + 2 bit NAL size - 11 
    218                         _tags.writeByte(0xFF); 
     230                        dat.writeByte(0xFF); 
    219231                        // Number of SPS. 
    220                         _tags.writeByte(0xE1); 
     232                        dat.writeByte(0xE1); 
    221233                        // SPS bytesize (UI16) 
    222                         _tags.writeByte(sps.length >> 8); 
    223                         _tags.writeByte(sps.length); 
     234                        dat.writeByte(sps.length >> 8); 
     235                        dat.writeByte(sps.length); 
    224236                        // SPS data block. 
    225                         _tags.writeBytes(sps,0); 
     237                        dat.writeBytes(sps,0); 
    226238                        // Number of PPS 
    227                         _tags.writeByte(0x01); 
     239                        dat.writeByte(0x01); 
    228240                        // PPS bytesize 
    229                         _tags.writeByte(pps.length >> 8); 
    230                         _tags.writeByte(pps.length); 
     241                        dat.writeByte(pps.length >> 8); 
     242                        dat.writeByte(pps.length); 
    231243                        // PPS data block. 
    232                         _tags.writeBytes(pps,0); 
    233  
    234                         // PreviousTagSize 
    235                         _tags.writeUnsignedInt(sps.length + pps.length + 30); 
    236                 }; 
    237  
    238  
    239                 /** Write an FLV tag with video data. **/ 
    240                 private function writeVideoTag(nalu:ByteArray):void { 
    241                         // Header 
    242                         writeTagHeader(9,nalu.length + 5); 
    243  
    244                         // Keyframe or interframe + AVC 
    245                         if(_keyframe) { 
    246                                 _tags.writeByte(0x17); 
    247                         } else { 
    248                                 _tags.writeByte(0x27); 
    249                         } 
    250                         // AVC NALU 
    251                         _tags.writeByte(0x01); 
    252                         // CompositionTime 
    253                         _tags.writeByte(_compositionTime >> 16); 
    254                         _tags.writeByte(_compositionTime >> 8); 
    255                         _tags.writeByte(_compositionTime); 
    256                         // Write actual data. 
    257                         _tags.writeBytes(nalu,0); 
    258                         // Write PreviousTagSize 
    259                         _tags.writeUnsignedInt(nalu.length + 16); 
    260                 }; 
    261  
    262  
    263                 /** Write the tag header. **/ 
    264                 private function writeTagHeader(type:uint,length:uint):void {  
    265                         _tags.writeByte(type); 
    266                         // Size of the tag in bytes after StreamID. 
    267                         _tags.writeByte(length >> 16); 
    268                         _tags.writeByte(length >> 8); 
    269                         _tags.writeByte(length); 
    270                         // Timestamp (lower 24 plus upper 8) 
    271                         _tags.writeByte(_timestamp >> 16); 
    272                         _tags.writeByte(_timestamp >> 8); 
    273                         _tags.writeByte(_timestamp); 
    274                         _tags.writeByte(_timestamp >> 24); 
    275                         // StreamID (3 empty bytes) 
    276                         _tags.writeByte(0); 
    277                         _tags.writeByte(0); 
    278                         _tags.writeByte(0); 
    279                 }; 
     244                        dat.writeBytes(pps,0); 
     245                        _flv.push(new Tag( 
     246                                dat, 
     247                                Math.round(_pts/90),  
     248                                false,  
     249                                true, 
     250                                true 
     251                        )); 
     252                }; 
     253 
     254 
    280255 
    281256        } 
  • providers/adaptive/src/com/longtailvideo/jwplayer/demux/TS.as

    r1451 r1476  
    44        import com.longtailvideo.jwplayer.utils.Logger; 
    55        import com.longtailvideo.jwplayer.demux.*; 
    6  
    76        import flash.utils.ByteArray; 
    87 
    98 
     9        /** Representation of an MPEG transport stream. **/ 
    1010        public class TS { 
    1111 
     
    1515                /** Packet ID of the video stream. **/ 
    1616                private var _avcId:Number = -1; 
     17                /** Representation of the parsed FLV file. **/ 
     18                private var _flv:FLV; 
    1719                /** Index of the last audio PES in the array. **/ 
    1820                private var _lastAac:Number = -1; 
     
    2830 
    2931                /** Transmux the M2TS file into an FLV file. **/ 
    30                 public function TS(data:ByteArray) { 
    31                         while(data.bytesAvailable) { 
    32                                 readPacket(data); 
     32                public function TS(dat:ByteArray) { 
     33                        _flv = new FLV(); 
     34                        while(dat.bytesAvailable) { 
     35                                _readPacket(dat); 
    3336                        } 
    3437                        for(var i:Number = 0; i < _pesArray.length; i++) { 
    35                                 _pesArray[i].parse(); 
     38                                _pesArray[i].parse(_flv); 
    3639                        } 
    3740                }; 
     
    3942 
    4043                /** Return the bytes for the player. **/ 
    41                 public function get bytes():ByteArray { 
    42                         var output:ByteArray = new ByteArray(); 
    43                         // "F" + "L" + "V". 
    44                         output.writeByte(0x46); 
    45                         output.writeByte(0x4C); 
    46                         output.writeByte(0x56); 
    47                         // File version (1) 
    48                         output.writeByte(0x01); 
    49                         // Audio + Video tags. 
    50                         output.writeByte(0x01); 
    51                         // Length of the header. 
    52                         output.writeUnsignedInt(0x00000009); 
    53                         // PreviousTagSize0 
    54                         output.writeUnsignedInt(0x00000000); 
    55                         for(var i:Number=0; i<_pesArray.length; i++) { 
    56                                 output.writeBytes(_pesArray[i].tags); 
    57                         } 
    58                         return output; 
     44                public function get data():ByteArray { 
     45                        return _flv.data; 
    5946                }; 
    6047 
    6148 
    6249                /** Read TS packet. **/ 
    63                 private function readPacket(data:ByteArray):void { 
     50                private function _readPacket(dat:ByteArray):void { 
    6451                        // Each packet is 188 bytes. 
    6552                        var todo:uint = 188; 
    6653                        // Sync byte. 
    67                         if(data.readByte() != 0x47) { 
     54                        if(dat.readByte() != 0x47) { 
    6855                                throw new Error("Could not parse TS file: sync byte not found."); 
    6956                        } 
    7057                        todo--; 
    7158                        // Payload unit start indicator. 
    72                         var start:uint = (data.readUnsignedByte() & 64) >> 6; 
    73                         data.position--; 
     59                        var stt:uint = (dat.readUnsignedByte() & 64) >> 6; 
     60                        dat.position--; 
    7461                        // Packet ID (last 13 bits of UI16). 
    75                         var pid:uint = data.readUnsignedShort() & 8191; 
     62                        var pid:uint = dat.readUnsignedShort() & 8191; 
    7663                        // Check for adaptation field. 
    7764                        todo -=2; 
    78                         var adaptation:uint = (data.readByte() & 48) >> 4; 
     65                        var atf:uint = (dat.readByte() & 48) >> 4; 
    7966                        todo --; 
    8067 
    8168                        // Read adaptation field if available. 
    82                         if(adaptation > 1) { 
     69                        if(atf > 1) { 
    8370                                // Length of adaptation field. 
    84                                 var length:uint = data.readUnsignedByte(); 
     71                                var len:uint = dat.readUnsignedByte(); 
    8572                                todo--; 
    8673                                // Random access indicator (keyframe). 
    87                                 var rai:uint = data.readUnsignedByte() & 64; 
    88                                 data.position += length - 1; 
    89                                 todo -= length; 
     74                                var rai:uint = dat.readUnsignedByte() & 64; 
     75                                dat.position += len - 1; 
     76                                todo -= len; 
    9077                                // Return if there's only adaptation field. 
    91                                 if(adaptation == 2) {  
    92                                         data.position += todo; 
     78                                if(atf == 2) {  
     79                                        dat.position += todo; 
    9380                                        return;  
    9481                                }  
     
    9986                        switch (pid) { 
    10087                                case _patId: 
    101                                         todo -= readPAT(data); 
     88                                        todo -= _readPAT(dat); 
    10289                                        break; 
    10390                                case _pmtId: 
    104                                         todo -= readPMT(data); 
     91                                        todo -= _readPMT(dat); 
    10592                                        break; 
    10693                                case _aacId: 
    107                                         pes.writeBytes(data,data.position,todo); 
    108                                         if(start) { 
    109                                                 // Push ADTS only with first frame. 
     94                                        pes.writeBytes(dat,dat.position,todo); 
     95                                        if(stt) { 
     96                                                // Push private data only with first frame. 
    11097                                                if(_lastAac == -1) { 
    11198                                                        _pesArray.push(new PES(pes,true,true)); 
     
    119106                                        break; 
    120107                                case _avcId: 
    121                                         pes.writeBytes(data,data.position,todo); 
    122                                         if(start) { 
     108                                        pes.writeBytes(dat,dat.position,todo); 
     109                                        if(stt) { 
    123110                                                // Assume the first frame is a keyframe. 
    124111                                                if(_lastAvc == -1) { 
     
    133120                                        break; 
    134121                                default: 
    135                                         // Ignored Packet IDs 
     122                                        // Ignored other packet IDs 
    136123                                        break; 
    137124                        } 
    138125 
    139126                        // Jump to the next packet. 
    140                         data.position += todo; 
     127                        dat.position += todo; 
    141128                }; 
    142129 
    143130 
    144131                /** Read the Program Association Table. **/ 
    145                 private function readPAT(data:ByteArray):Number { 
     132                private function _readPAT(dat:ByteArray):Number { 
    146133                        // Check the section length for a single PMT. 
    147                         data.position += 3; 
    148                         if(data.readUnsignedByte() > 13) { 
     134                        dat.position += 3; 
     135                        if(dat.readUnsignedByte() > 13) { 
    149136                                throw new Error("Multiple PMT entries are not supported."); 
    150137                        } 
    151138                        // Grab the PMT ID. 
    152                         data.position += 7; 
    153                         _pmtId = data.readUnsignedShort() & 8191; 
     139                        dat.position += 7; 
     140                        _pmtId = dat.readUnsignedShort() & 8191; 
    154141                        return 13; 
    155142                }; 
     
    157144 
    158145                /** Read the Program Map Table. **/  
    159                 private function readPMT(data:ByteArray):Number {  
     146                private function _readPMT(dat:ByteArray):Number {  
    160147                        // Check the section length for a single PMT. 
    161                         data.position += 3; 
    162                         var length:uint = data.readUnsignedByte(); 
    163                         data.position += 9; 
     148                        dat.position += 3; 
     149                        var len:uint = dat.readUnsignedByte(); 
     150                        dat.position += 9; 
    164151                        // Loop through the streams in the PMT. 
    165                         for(var i:Number = 0; i < (length-13)/5; i++) { 
    166                                 var type:uint = data.readUnsignedByte(); 
    167                                 if(type == 0x0F) {  
    168                                         _aacId = data.readUnsignedShort() & 8191; 
    169                                 } else if (type == 0x1B) {  
    170                                         _avcId = data.readUnsignedShort() & 8191; 
     152                        for(var i:Number = 0; i < (len - 13) / 5; i++) { 
     153                                var typ:uint = dat.readUnsignedByte(); 
     154                                if(typ == 0x0F) {  
     155                                        _aacId = dat.readUnsignedShort() & 8191; 
     156                                } else if (typ == 0x1B) {  
     157                                        _avcId = dat.readUnsignedShort() & 8191; 
    171158                                } else { 
    172159                                        throw new Error("Only AAC audio and AVC video are supported."); 
    173160                                } 
    174                                 data.position += 2; 
     161                                dat.position += 2; 
    175162                        } 
    176                         return length; 
     163                        return len; 
    177164                }; 
    178165 
  • providers/adaptive/src/com/longtailvideo/jwplayer/media/AdaptiveProvider.as

    r1455 r1476  
    9797                        if(item.file.substr(-3) != 'flv') {  
    9898                                _ts = new TS(input); 
    99                                 _stream.appendBytes(_ts.bytes); 
     99                                _stream.appendBytes(_ts.data); 
    100100                        } else { 
    101101                                _stream.appendBytes(input); 
     
    165165                        super.setVolume(vol); 
    166166                        var fr:FileReference = new FileReference( ); 
    167                         fr.save(_ts.bytes,'test.flv'); 
     167                        fr.save(_ts.data,'export.flv'); 
    168168                }; 
    169169 
  • providers/adaptive/test/assets/apple.txt

    r1462 r1476  
    1 === `apple.flv' === 
    2 #00001 <VideoTag at offset 0x0000000D, time 10000, size 42, H.264 (keyframe), sequence header> 
    3 #00002 <VideoTag at offset 0x00000046, time 10000, size 6357, H.264 (keyframe), NAL unit> 
    4 #00003 <AudioTag at offset 0x0000192A, time 10000, size 9, AAC, sequence header> 
    5 #00004 <AudioTag at offset 0x00001942, time 10000, size 6, AAC, raw> 
    6 #00005 <AudioTag at offset 0x00001957, time 10046, size 211, AAC, raw> 
    7 #00006 <VideoTag at offset 0x00001A39, time 10067, size 829, H.264 (interframe), NAL unit> 
    8 #00007 <AudioTag at offset 0x00001D85, time 10093, size 247, AAC, raw> 
    9 #00008 <VideoTag at offset 0x00001E8B, time 10133, size 396, H.264 (interframe), NAL unit> 
    10 #00009 <AudioTag at offset 0x00002026, time 10139, size 6, AAC, raw> 
    11 #00010 <VideoTag at offset 0x0000203B, time 10200, size 389, H.264 (interframe), NAL unit> 
    12 #00011 <AudioTag at offset 0x000021CF, time 10186, size 6, AAC, raw> 
    13 #00012 <AudioTag at offset 0x000021E4, time 10232, size 6, AAC, raw> 
    14 #00013 <VideoTag at offset 0x000021F9, time 10267, size 341, H.264 (interframe), NAL unit> 
    15 #00014 <AudioTag at offset 0x0000235D, time 10279, size 6, AAC, raw> 
    16 #00015 <VideoTag at offset 0x00002372, time 10334, size 453, H.264 (interframe), NAL unit> 
    17 #00016 <AudioTag at offset 0x00002546, time 10325, size 6, AAC, raw> 
    18 #00017 <AudioTag at offset 0x0000255B, time 10372, size 6, AAC, raw> 
    19 #00018 <VideoTag at offset 0x00002570, time 10400, size 511, H.264 (interframe), NAL unit> 
    20 #00019 <AudioTag at offset 0x0000277E, time 10418, size 6, AAC, raw> 
    21 #00020 <VideoTag at offset 0x00002793, time 10467, size 467, H.264 (interframe), NAL unit> 
    22 #00021 <AudioTag at offset 0x00002975, time 10464, size 6, AAC, raw> 
    23 #00022 <AudioTag at offset 0x0000298A, time 10511, size 6, AAC, raw> 
    24 #00023 <VideoTag at offset 0x0000299F, time 10534, size 384, H.264 (interframe), NAL unit> 
    25 #00024 <AudioTag at offset 0x00002B2E, time 10557, size 6, AAC, raw> 
    26 #00025 <VideoTag at offset 0x00002B43, time 10601, size 408, H.264 (interframe), NAL unit> 
    27 #00026 <AudioTag at offset 0x00002CEA, time 10604, size 6, AAC, raw> 
    28 #00027 <VideoTag at offset 0x00002CFF, time 10667, size 596, H.264 (interframe), NAL unit> 
    29 #00028 <AudioTag at offset 0x00002F62, time 10650, size 6, AAC, raw> 
    30 #00029 <AudioTag at offset 0x00002F77, time 10697, size 6, AAC, raw> 
    31 #00030 <VideoTag at offset 0x00002F8C, time 10734, size 484, H.264 (interframe), NAL unit> 
    32 #00031 <AudioTag at offset 0x0000317F, time 10743, size 6, AAC, raw> 
    33 #00032 <VideoTag at offset 0x00003194, time 10801, size 734, H.264 (interframe), NAL unit> 
    34 #00033 <AudioTag at offset 0x00003481, time 10789, size 6, AAC, raw> 
    35 #00034 <AudioTag at offset 0x00003496, time 10836, size 6, AAC, raw> 
    36 #00035 <VideoTag at offset 0x000034AB, time 10868, size 496, H.264 (interframe), NAL unit> 
    37 #00036 <AudioTag at offset 0x000036AA, time 10882, size 6, AAC, raw> 
    38 #00037 <VideoTag at offset 0x000036BF, time 10934, size 485, H.264 (interframe), NAL unit> 
    39 #00038 <AudioTag at offset 0x000038B3, time 10929, size 6, AAC, raw> 
    40 #00039 <AudioTag at offset 0x000038C8, time 10975, size 6, AAC, raw> 
    41 #00040 <VideoTag at offset 0x000038DD, time 11001, size 2669, H.264 (interframe), NAL unit> 
    42 #00041 <AudioTag at offset 0x00004359, time 11022, size 6, AAC, raw> 
    43 #00042 <VideoTag at offset 0x0000436E, time 11068, size 864, H.264 (interframe), NAL unit> 
    44 #00043 <AudioTag at offset 0x000046DD, time 11068, size 346, AAC, raw> 
    45 #00044 <AudioTag at offset 0x00004846, time 11115, size 6, AAC, raw> 
    46 #00045 <VideoTag at offset 0x0000485B, time 11134, size 655, H.264 (interframe), NAL unit> 
    47 #00046 <AudioTag at offset 0x00004AF9, time 11161, size 6, AAC, raw> 
    48 #00047 <VideoTag at offset 0x00004B0E, time 11201, size 883, H.264 (interframe), NAL unit> 
    49 #00048 <AudioTag at offset 0x00004E90, time 11207, size 6, AAC, raw> 
    50 #00049 <VideoTag at offset 0x00004EA5, time 11268, size 493, H.264 (interframe), NAL unit> 
    51 #00050 <AudioTag at offset 0x000050A1, time 11254, size 6, AAC, raw> 
    52 #00051 <AudioTag at offset 0x000050B6, time 11300, size 6, AAC, raw> 
    53 #00052 <VideoTag at offset 0x000050CB, time 11335, size 719, H.264 (interframe), NAL unit> 
    54 #00053 <AudioTag at offset 0x000053A9, time 11347, size 6, AAC, raw> 
    55 #00054 <VideoTag at offset 0x000053BE, time 11401, size 551, H.264 (interframe), NAL unit> 
    56 #00055 <AudioTag at offset 0x000055F4, time 11393, size 6, AAC, raw> 
    57 #00056 <AudioTag at offset 0x00005609, time 11440, size 6, AAC, raw> 
    58 #00057 <VideoTag at offset 0x0000561E, time 11468, size 606, H.264 (interframe), NAL unit> 
    59 #00058 <AudioTag at offset 0x0000588B, time 11486, size 6, AAC, raw> 
    60 #00059 <VideoTag at offset 0x000058A0, time 11535, size 496, H.264 (interframe), NAL unit> 
    61 #00060 <AudioTag at offset 0x00005A9F, time 11533, size 6, AAC, raw> 
    62 #00061 <AudioTag at offset 0x00005AB4, time 11579, size 6, AAC, raw> 
    63 #00062 <VideoTag at offset 0x00005AC9, time 11602, size 491, H.264 (interframe), NAL unit> 
    64 #00063 <AudioTag at offset 0x00005CC3, time 11625, size 6, AAC, raw> 
    65 #00064 <VideoTag at offset 0x00005CD8, time 11668, size 836, H.264 (interframe), NAL unit> 
    66 #00065 <AudioTag at offset 0x0000602B, time 11672, size 6, AAC, raw> 
    67 #00066 <VideoTag at offset 0x00006040, time 11735, size 553, H.264 (interframe), NAL unit> 
    68 #00067 <AudioTag at offset 0x00006278, time 11718, size 6, AAC, raw> 
    69 #00068 <AudioTag at offset 0x0000628D, time 11765, size 6, AAC, raw> 
    70 #00069 <VideoTag at offset 0x000062A2, time 11802, size 712, H.264 (interframe), NAL unit> 
    71 #00070 <AudioTag at offset 0x00006579, time 11811, size 6, AAC, raw> 
    72 #00071 <VideoTag at offset 0x0000658E, time 11869, size 557, H.264 (interframe), NAL unit> 
    73 #00072 <AudioTag at offset 0x000067CA, time 11858, size 6, AAC, raw> 
    74 #00073 <AudioTag at offset 0x000067DF, time 11904, size 6, AAC, raw> 
    75 #00074 <VideoTag at offset 0x000067F4, time 11935, size 589, H.264 (interframe), NAL unit> 
    76 #00075 <AudioTag at offset 0x00006A50, time 11950, size 6, AAC, raw> 
    77 #00076 <VideoTag at offset 0x00006A65, time 12002, size 42, H.264 (keyframe), sequence header> 
    78 #00077 <VideoTag at offset 0x00006A9E, time 12002, size 8586, H.264 (interframe), NAL unit> 
    79 #00078 <AudioTag at offset 0x00008C37, time 11997, size 6, AAC, raw> 
    80 #00079 <AudioTag at offset 0x00008C4C, time 12043, size 179, AAC, raw> 
    81 #00080 <VideoTag at offset 0x00008D0E, time 12069, size 1147, H.264 (interframe), NAL unit> 
    82 #00081 <AudioTag at offset 0x00009198, time 12090, size 254, AAC, raw> 
    83 #00082 <VideoTag at offset 0x000092A5, time 12135, size 519, H.264 (interframe), NAL unit> 
    84 #00083 <AudioTag at offset 0x000094BB, time 12136, size 6, AAC, raw> 
    85 #00084 <AudioTag at offset 0x000094D0, time 12183, size 6, AAC, raw> 
    86 #00085 <VideoTag at offset 0x000094E5, time 12202, size 578, H.264 (interframe), NAL unit> 
    87 #00086 <AudioTag at offset 0x00009736, time 12229, size 6, AAC, raw> 
    88 #00087 <VideoTag at offset 0x0000974B, time 12269, size 459, H.264 (interframe), NAL unit> 
    89 #00088 <AudioTag at offset 0x00009925, time 12276, size 6, AAC, raw> 
    90 #00089 <VideoTag at offset 0x0000993A, time 12336, size 609, H.264 (interframe), NAL unit> 
    91 #00090 <AudioTag at offset 0x00009BAA, time 12322, size 6, AAC, raw> 
    92 #00091 <AudioTag at offset 0x00009BBF, time 12368, size 6, AAC, raw> 
    93 #00092 <VideoTag at offset 0x00009BD4, time 12402, size 659, H.264 (interframe), NAL unit> 
    94 #00093 <AudioTag at offset 0x00009E76, time 12415, size 6, AAC, raw> 
    95 #00094 <VideoTag at offset 0x00009E8B, time 12469, size 612, H.264 (interframe), NAL unit> 
    96 #00095 <AudioTag at offset 0x0000A0FE, time 12461, size 6, AAC, raw> 
    97 #00096 <AudioTag at offset 0x0000A113, time 12508, size 6, AAC, raw> 
    98 #00097 <VideoTag at offset 0x0000A128, time 12536, size 482, H.264 (interframe), NAL unit> 
    99 #00098 <AudioTag at offset 0x0000A319, time 12554, size 6, AAC, raw> 
    100 #00099 <VideoTag at offset 0x0000A32E, time 12603, size 496, H.264 (interframe), NAL unit> 
    101 #00100 <AudioTag at offset 0x0000A52D, time 12601, size 6, AAC, raw> 
    102 #00101 <AudioTag at offset 0x0000A542, time 12647, size 6, AAC, raw> 
    103 #00102 <VideoTag at offset 0x0000A557, time 12669, size 702, H.264 (interframe), NAL unit> 
    104 #00103 <AudioTag at offset 0x0000A824, time 12694, size 6, AAC, raw> 
    105 #00104 <VideoTag at offset 0x0000A839, time 12736, size 491, H.264 (interframe), NAL unit> 
    106 #00105 <AudioTag at offset 0x0000AA33, time 12740, size 6, AAC, raw> 
    107 #00106 <VideoTag at offset 0x0000AA48, time 12803, size 651, H.264 (interframe), NAL unit> 
    108 #00107 <AudioTag at offset 0x0000ACE2, time 12786, size 6, AAC, raw> 
    109 #00108 <AudioTag at offset 0x0000ACF7, time 12833, size 6, AAC, raw> 
    110 #00109 <VideoTag at offset 0x0000AD0C, time 12870, size 611, H.264 (interframe), NAL unit> 
    111 #00110 <AudioTag at offset 0x0000AF7E, time 12879, size 6, AAC, raw> 
    112 #00111 <VideoTag at offset 0x0000AF93, time 12936, size 542, H.264 (interframe), NAL unit> 
    113 #00112 <AudioTag at offset 0x0000B1C0, time 12926, size 6, AAC, raw> 
    114 #00113 <AudioTag at offset 0x0000B1D5, time 12972, size 6, AAC, raw> 
    115 #00114 <VideoTag at offset 0x0000B1EA, time 13003, size 3032, H.264 (interframe), NAL unit> 
    116 #00115 <AudioTag at offset 0x0000BDD1, time 13019, size 6, AAC, raw> 
    117 #00116 <VideoTag at offset 0x0000BDE6, time 13070, size 973, H.264 (interframe), NAL unit> 
    118 #00117 <AudioTag at offset 0x0000C1C2, time 13065, size 364, AAC, raw> 
    119 #00118 <AudioTag at offset 0x0000C33D, time 13111, size 56, AAC, raw> 
    120 #00119 <VideoTag at offset 0x0000C384, time 13136, size 632, H.264 (interframe), NAL unit> 
    121 #00120 <AudioTag at offset 0x0000C60B, time 13158, size 6, AAC, raw> 
    122 #00121 <VideoTag at offset 0x0000C620, time 13203, size 777, H.264 (interframe), NAL unit> 
    123 #00122 <AudioTag at offset 0x0000C938, time 13204, size 6, AAC, raw> 
    124 #00123 <AudioTag at offset 0x0000C94D, time 13251, size 6, AAC, raw> 
    125 #00124 <VideoTag at offset 0x0000C962, time 13270, size 556, H.264 (interframe), NAL unit> 
    126 #00125 <AudioTag at offset 0x0000CB9D, time 13297, size 6, AAC, raw> 
    127 #00126 <VideoTag at offset 0x0000CBB2, time 13337, size 774, H.264 (interframe), NAL unit> 
    128 #00127 <AudioTag at offset 0x0000CEC7, time 13344, size 6, AAC, raw> 
    129 #00128 <VideoTag at offset 0x0000CEDC, time 13403, size 607, H.264 (interframe), NAL unit> 
    130 #00129 <AudioTag at offset 0x0000D14A, time 13390, size 6, AAC, raw> 
    131 #00130 <AudioTag at offset 0x0000D15F, time 13437, size 6, AAC, raw> 
    132 #00131 <VideoTag at offset 0x0000D174, time 13470, size 673, H.264 (interframe), NAL unit> 
    133 #00132 <AudioTag at offset 0x0000D424, time 13483, size 6, AAC, raw> 
    134 #00133 <VideoTag at offset 0x0000D439, time 13537, size 521, H.264 (interframe), NAL unit> 
    135 #00134 <AudioTag at offset 0x0000D651, time 13529, size 6, AAC, raw> 
    136 #00135 <AudioTag at offset 0x0000D666, time 13576, size 6, AAC, raw> 
    137 #00136 <VideoTag at offset 0x0000D67B, time 13604, size 531, H.264 (interframe), NAL unit> 
    138 #00137 <AudioTag at offset 0x0000D89D, time 13622, size 6, AAC, raw> 
    139 #00138 <VideoTag at offset 0x0000D8B2, time 13670, size 696, H.264 (interframe), NAL unit> 
    140 #00139 <AudioTag at offset 0x0000DB79, time 13669, size 6, AAC, raw> 
    141 #00140 <AudioTag at offset 0x0000DB8E, time 13715, size 6, AAC, raw> 
    142 #00141 <VideoTag at offset 0x0000DBA3, time 13737, size 543, H.264 (interframe), NAL unit> 
    143 #00142 <AudioTag at offset 0x0000DDD1, time 13762, size 6, AAC, raw> 
    144 #00143 <VideoTag at offset 0x0000DDE6, time 13804, size 648, H.264 (interframe), NAL unit> 
    145 #00144 <AudioTag at offset 0x0000E07D, time 13808, size 6, AAC, raw> 
    146 #00145 <VideoTag at offset 0x0000E092, time 13871, size 670, H.264 (interframe), NAL unit> 
    147 #00146 <AudioTag at offset 0x0000E33F, time 13855, size 6, AAC, raw> 
    148 #00147 <AudioTag at offset 0x0000E354, time 13901, size 6, AAC, raw> 
    149 #00148 <VideoTag at offset 0x0000E369, time 13937, size 625, H.264 (interframe), NAL unit> 
    150 #00149 <AudioTag at offset 0x0000E5E9, time 13947, size 6, AAC, raw> 
    151 #00150 <VideoTag at offset 0x0000E5FE, time 14004, size 42, H.264 (keyframe), sequence header> 
    152 #00151 <VideoTag at offset 0x0000E637, time 14004, size 8934, H.264 (interframe), NAL unit> 
    153 #00152 <AudioTag at offset 0x0001092C, time 13994, size 6, AAC, raw> 
    154 #00153 <AudioTag at offset 0x00010941, time 14040, size 251, AAC, raw> 
    155 #00154 <VideoTag at offset 0x00010A4B, time 14071, size 1209, H.264 (interframe), NAL unit> 
    156 #00155 <AudioTag at offset 0x00010F13, time 14087, size 283, AAC, raw> 
    157 #00156 <VideoTag at offset 0x0001103D, time 14137, size 560, H.264 (interframe), NAL unit> 
    158 #00157 <AudioTag at offset 0x0001127C, time 14133, size 176, AAC, raw> 
    159 #00158 <AudioTag at offset 0x0001133B, time 14180, size 6, AAC, raw> 
    160 #00159 <VideoTag at offset 0x00011350, time 14204, size 637, H.264 (interframe), NAL unit> 
    161 #00160 <AudioTag at offset 0x000115DC, time 14226, size 6, AAC, raw> 
    162 #00161 <VideoTag at offset 0x000115F1, time 14271, size 508, H.264 (interframe), NAL unit> 
    163 #00162 <AudioTag at offset 0x000117FC, time 14272, size 6, AAC, raw> 
    164 #00163 <AudioTag at offset 0x00011811, time 14319, size 6, AAC, raw> 
    165 #00164 <VideoTag at offset 0x00011826, time 14338, size 663, H.264 (interframe), NAL unit> 
    166 #00165 <AudioTag at offset 0x00011ACC, time 14365, size 6, AAC, raw> 
    167 #00166 <VideoTag at offset 0x00011AE1, time 14404, size 716, H.264 (interframe), NAL unit> 
    168 #00167 <AudioTag at offset 0x00011DBC, time 14412, size 6, AAC, raw> 
    169 #00168 <VideoTag at offset 0x00011DD1, time 14471, size 623, H.264 (interframe), NAL unit> 
    170 #00169 <AudioTag at offset 0x0001204F, time 14458, size 6, AAC, raw> 
    171 #00170 <AudioTag at offset 0x00012064, time 14505, size 6, AAC, raw> 
    172 #00171 <VideoTag at offset 0x00012079, time 14538, size 527, H.264 (interframe), NAL unit> 
    173 #00172 <AudioTag at offset 0x00012297, time 14551, size 6, AAC, raw> 
    174 #00173 <VideoTag at offset 0x000122AC, time 14605, size 515, H.264 (interframe), NAL unit> 
    175 #00174 <AudioTag at offset 0x000124BE, time 14598, size 6, AAC, raw> 
    176 #00175 <AudioTag at offset 0x000124D3, time 14644, size 6, AAC, raw> 
    177 #00176 <VideoTag at offset 0x000124E8, time 14671, size 707, H.264 (interframe), NAL unit> 
    178 #00177 <AudioTag at offset 0x000127BA, time 14690, size 6, AAC, raw> 
    179 #00178 <VideoTag at offset 0x000127CF, time 14738, size 507, H.264 (interframe), NAL unit> 
    180 #00179 <AudioTag at offset 0x000129D9, time 14737, size 6, AAC, raw> 
    181 #00180 <AudioTag at offset 0x000129EE, time 14783, size 6, AAC, raw> 
    182 #00181 <VideoTag at offset 0x00012A03, time 14805, size 659, H.264 (interframe), NAL unit> 
    183 #00182 <AudioTag at offset 0x00012CA5, time 14830, size 6, AAC, raw> 
    184 #00183 <VideoTag at offset 0x00012CBA, time 14872, size 562, H.264 (interframe), NAL unit> 
    185 #00184 <AudioTag at offset 0x00012EFB, time 14876, size 6, AAC, raw> 
    186 #00185 <VideoTag at offset 0x00012F10, time 14938, size 564, H.264 (interframe), NAL unit> 
    187 #00186 <AudioTag at offset 0x00013153, time 14923, size 6, AAC, raw> 
    188 #00187 <AudioTag at offset 0x00013168, time 14969, size 6, AAC, raw> 
    189 #00188 <VideoTag at offset 0x0001317D, time 15005, size 3073, H.264 (interframe), NAL unit> 
    190 #00189 <AudioTag at offset 0x00013D8D, time 15016, size 6, AAC, raw> 
    191 #00190 <VideoTag at offset 0x00013DA2, time 15072, size 1081, H.264 (interframe), NAL unit> 
    192 #00191 <AudioTag at offset 0x000141EA, time 15062, size 340, AAC, raw> 
    193 #00192 <AudioTag at offset 0x0001434D, time 15108, size 145, AAC, raw> 
    194 #00193 <VideoTag at offset 0x000143ED, time 15138, size 753, H.264 (interframe), NAL unit> 
    195 #00194 <AudioTag at offset 0x000146ED, time 15155, size 6, AAC, raw> 
    196 #00195 <VideoTag at offset 0x00014702, time 15205, size 753, H.264 (interframe), NAL unit> 
    197 #00196 <AudioTag at offset 0x00014A02, time 15201, size 6, AAC, raw> 
    198 #00197 <AudioTag at offset 0x00014A17, time 15248, size 6, AAC, raw> 
    199 #00198 <VideoTag at offset 0x00014A2C, time 15272, size 538, H.264 (interframe), NAL unit> 
    200 #00199 <AudioTag at offset 0x00014C55, time 15294, size 6, AAC, raw> 
    201 #00200 <VideoTag at offset 0x00014C6A, time 15339, size 797, H.264 (interframe), NAL unit> 
    202 #00201 <AudioTag at offset 0x00014F96, time 15341, size 6, AAC, raw> 
    203 #00202 <VideoTag at offset 0x00014FAB, time 15405, size 616, H.264 (interframe), NAL unit> 
    204 #00203 <AudioTag at offset 0x00015222, time 15387, size 6, AAC, raw> 
    205 #00204 <AudioTag at offset 0x00015237, time 15433, size 6, AAC, raw> 
    206 #00205 <VideoTag at offset 0x0001524C, time 15472, size 679, H.264 (interframe), NAL unit> 
    207 #00206 <AudioTag at offset 0x00015502, time 15480, size 6, AAC, raw> 
    208 #00207 <VideoTag at offset 0x00015517, time 15539, size 552, H.264 (interframe), NAL unit> 
    209 #00208 <AudioTag at offset 0x0001574E, time 15526, size 6, AAC, raw> 
    210 #00209 <AudioTag at offset 0x00015763, time 15573, size 6, AAC, raw> 
    211 #00210 <VideoTag at offset 0x00015778, time 15606, size 547, H.264 (interframe), NAL unit> 
    212 #00211 <AudioTag at offset 0x000159AA, time 15619, size 6, AAC, raw> 
    213 #00212 <VideoTag at offset 0x000159BF, time 15672, size 725, H.264 (interframe), NAL unit> 
    214 #00213 <AudioTag at offset 0x00015CA3, time 15666, size 6, AAC, raw> 
    215 #00214 <AudioTag at offset 0x00015CB8, time 15712, size 6, AAC, raw> 
    216 #00215 <VideoTag at offset 0x00015CCD, time 15739, size 549, H.264 (interframe), NAL unit> 
    217 #00216 <AudioTag at offset 0x00015F01, time 15759, size 6, AAC, raw> 
    218 #00217 <VideoTag at offset 0x00015F16, time 15806, size 607, H.264 (interframe), NAL unit> 
    219 #00218 <AudioTag at offset 0x00016184, time 15805, size 6, AAC, raw> 
    220 #00219 <AudioTag at offset 0x00016199, time 15851, size 6, AAC, raw> 
    221 #00220 <VideoTag at offset 0x000161AE, time 15873, size 642, H.264 (interframe), NAL unit> 
    222 #00221 <AudioTag at offset 0x0001643F, time 15898, size 6, AAC, raw> 
    223 #00222 <VideoTag at offset 0x00016454, time 15939, size 611, H.264 (interframe), NAL unit> 
    224 #00223 <AudioTag at offset 0x000166C6, time 15944, size 6, AAC, raw> 
    225 #00224 <VideoTag at offset 0x000166DB, time 16006, size 42, H.264 (keyframe), sequence header> 
    226 #00225 <VideoTag at offset 0x00016714, time 16006, size 9298, H.264 (interframe), NAL unit> 
    227 #00226 <AudioTag at offset 0x00018B75, time 15991, size 6, AAC, raw> 
    228 #00227 <AudioTag at offset 0x00018B8A, time 16037, size 185, AAC, raw> 
    229 #00228 <VideoTag at offset 0x00018C52, time 16073, size 1222, H.264 (interframe), NAL unit> 
    230 #00229 <AudioTag at offset 0x00019127, time 16084, size 289, AAC, raw> 
    231 #00230 <VideoTag at offset 0x00019257, time 16139, size 596, H.264 (interframe), NAL unit> 
    232 #00231 <AudioTag at offset 0x000194BA, time 16130, size 283, AAC, raw> 
    233 #00232 <AudioTag at offset 0x000195E4, time 16177, size 6, AAC, raw> 
    234 #00233 <VideoTag at offset 0x000195F9, time 16206, size 607, H.264 (interframe), NAL unit> 
    235 #00234 <AudioTag at offset 0x00019867, time 16223, size 6, AAC, raw> 
    236 #00235 <VideoTag at offset 0x0001987C, time 16273, size 553, H.264 (interframe), NAL unit> 
    237 #00236 <AudioTag at offset 0x00019AB4, time 16269, size 6, AAC, raw> 
    238 #00237 <AudioTag at offset 0x00019AC9, time 16316, size 6, AAC, raw> 
    239 #00238 <VideoTag at offset 0x00019ADE, time 16340, size 673, H.264 (interframe), NAL unit> 
    240 #00239 <AudioTag at offset 0x00019D8E, time 16362, size 6, AAC, raw> 
    241 #00240 <VideoTag at offset 0x00019DA3, time 16406, size 613, H.264 (interframe), NAL unit> 
    242 #00241 <AudioTag at offset 0x0001A017, time 16409, size 6, AAC, raw> 
    243 #00242 <VideoTag at offset 0x0001A02C, time 16473, size 692, H.264 (interframe), NAL unit> 
    244 #00243 <AudioTag at offset 0x0001A2EF, time 16455, size 6, AAC, raw> 
    245 #00244 <AudioTag at offset 0x0001A304, time 16502, size 6, AAC, raw> 
    246 #00245 <VideoTag at offset 0x0001A319, time 16540, size 535, H.264 (interframe), NAL unit> 
    247 #00246 <AudioTag at offset 0x0001A53F, time 16548, size 6, AAC, raw> 
    248 #00247 <VideoTag at offset 0x0001A554, time 16607, size 520, H.264 (interframe), NAL unit> 
    249 #00248 <AudioTag at offset 0x0001A76B, time 16594, size 6, AAC, raw> 
    250 #00249 <AudioTag at offset 0x0001A780, time 16641, size 6, AAC, raw> 
    251 #00250 <VideoTag at offset 0x0001A795, time 16673, size 761, H.264 (interframe), NAL unit> 
    252 #00251 <AudioTag at offset 0x0001AA9D, time 16687, size 6, AAC, raw> 
    253 #00252 <VideoTag at offset 0x0001AAB2, time 16740, size 582, H.264 (interframe), NAL unit> 
    254 #00253 <AudioTag at offset 0x0001AD07, time 16734, size 6, AAC, raw> 
    255 #00254 <AudioTag at offset 0x0001AD1C, time 16780, size 6, AAC, raw> 
    256 #00255 <VideoTag at offset 0x0001AD31, time 16807, size 579, H.264 (interframe), NAL unit> 
    257 #00256 <AudioTag at offset 0x0001AF83, time 16827, size 6, AAC, raw> 
    258 #00257 <VideoTag at offset 0x0001AF98, time 16874, size 664, H.264 (interframe), NAL unit> 
    259 #00258 <AudioTag at offset 0x0001B23F, time 16873, size 6, AAC, raw> 
    260 #00259 <AudioTag at offset 0x0001B254, time 16920, size 6, AAC, raw> 
    261 #00260 <VideoTag at offset 0x0001B269, time 16940, size 567, H.264 (interframe), NAL unit> 
    262 #00261 <AudioTag at offset 0x0001B4AF, time 16966, size 6, AAC, raw> 
    263 #00262 <VideoTag at offset 0x0001B4C4, time 17007, size 3240, H.264 (interframe), NAL unit> 
    264 #00263 <AudioTag at offset 0x0001C17B, time 17012, size 6, AAC, raw> 
    265 #00264 <VideoTag at offset 0x0001C190, time 17074, size 1119, H.264 (interframe), NAL unit> 
    266 #00265 <AudioTag at offset 0x0001C5FE, time 17059, size 282, AAC, raw> 
    267 #00266 <AudioTag at offset 0x0001C727, time 17105, size 23, AAC, raw> 
    268 #00267 <AudioTag at offset 0x0001C74D, time 17105, size 168, AAC, raw> 
    269 #00268 <VideoTag at offset 0x0001C804, time 17140, size 685, H.264 (interframe), NAL unit> 
    270 #00269 <AudioTag at offset 0x0001CAC0, time 17152, size 6, AAC, raw> 
    271 #00270 <VideoTag at offset 0x0001CAD5, time 17207, size 951, H.264 (interframe), NAL unit> 
    272 #00271 <AudioTag at offset 0x0001CE9B, time 17198, size 6, AAC, raw> 
    273 #00272 <AudioTag at offset 0x0001CEB0, time 17245, size 6, AAC, raw> 
    274 #00273 <VideoTag at offset 0x0001CEC5, time 17274, size 529, H.264 (interframe), NAL unit> 
    275 #00274 <AudioTag at offset 0x0001D0E5, time 17291, size 6, AAC, raw> 
    276 #00275 <VideoTag at offset 0x0001D0FA, time 17341, size 810, H.264 (interframe), NAL unit> 
    277 #00276 <AudioTag at offset 0x0001D433, time 17338, size 6, AAC, raw> 
    278 #00277 <AudioTag at offset 0x0001D448, time 17384, size 6, AAC, raw> 
    279 #00278 <VideoTag at offset 0x0001D45D, time 17407, size 654, H.264 (interframe), NAL unit> 
    280 #00279 <AudioTag at offset 0x0001D6FA, time 17430, size 6, AAC, raw> 
    281 #00280 <VideoTag at offset 0x0001D70F, time 17474, size 647, H.264 (interframe), NAL unit> 
    282 #00281 <AudioTag at offset 0x0001D9A5, time 17477, size 6, AAC, raw> 
    283 #00282 <VideoTag at offset 0x0001D9BA, time 17541, size 552, H.264 (interframe), NAL unit> 
    284 #00283 <AudioTag at offset 0x0001DBF1, time 17523, size 6, AAC, raw> 
    285 #00284 <AudioTag at offset 0x0001DC06, time 17570, size 6, AAC, raw> 
    286 #00285 <VideoTag at offset 0x0001DC1B, time 17608, size 559, H.264 (interframe), NAL unit> 
    287 #00286 <AudioTag at offset 0x0001DE59, time 17616, size 6, AAC, raw> 
    288 #00287 <VideoTag at offset 0x0001DE6E, time 17674, size 785, H.264 (interframe), NAL unit> 
    289 #00288 <AudioTag at offset 0x0001E18E, time 17663, size 6, AAC, raw> 
    290 #00289 <AudioTag at offset 0x0001E1A3, time 17709, size 6, AAC, raw> 
    291 #00290 <VideoTag at offset 0x0001E1B8, time 17741, size 564, H.264 (interframe), NAL unit> 
    292 #00291 <AudioTag at offset 0x0001E3FB, time 17755, size 6, AAC, raw> 
    293 #00292 <VideoTag at offset 0x0001E410, time 17808, size 628, H.264 (interframe), NAL unit> 
    294 #00293 <AudioTag at offset 0x0001E693, time 17802, size 6, AAC, raw> 
    295 #00294 <AudioTag at offset 0x0001E6A8, time 17848, size 6, AAC, raw> 
    296 #00295 <VideoTag at offset 0x0001E6BD, time 17875, size 597, H.264 (interframe), NAL unit> 
    297 #00296 <AudioTag at offset 0x0001E921, time 17895, size 6, AAC, raw> 
    298 #00297 <VideoTag at offset 0x0001E936, time 17941, size 603, H.264 (interframe), NAL unit> 
    299 #00298 <AudioTag at offset 0x0001EBA0, time 17941, size 6, AAC, raw> 
    300 #00299 <AudioTag at offset 0x0001EBB5, time 17988, size 6, AAC, raw> 
    301 #00300 <VideoTag at offset 0x0001EBCA, time 18008, size 42, H.264 (keyframe), sequence header> 
    302 #00301 <VideoTag at offset 0x0001EC03, time 18008, size 9334, H.264 (interframe), NAL unit> 
    303 #00302 <AudioTag at offset 0x00021088, time 18034, size 112, AAC, raw> 
    304 #00303 <VideoTag at offset 0x00021107, time 18075, size 1214, H.264 (interframe), NAL unit> 
    305 #00304 <AudioTag at offset 0x000215D4, time 18081, size 364, AAC, raw> 
    306 #00305 <VideoTag at offset 0x0002174F, time 18141, size 624, H.264 (interframe), NAL unit> 
    307 #00306 <AudioTag at offset 0x000219CE, time 18127, size 6, AAC, raw> 
    308 #00307 <AudioTag at offset 0x000219E3, time 18173, size 6, AAC, raw> 
    309 #00308 <VideoTag at offset 0x000219F8, time 18208, size 650, H.264 (interframe), NAL unit> 
    310 #00309 <AudioTag at offset 0x00021C91, time 18220, size 6, AAC, raw> 
    311 #00310 <VideoTag at offset 0x00021CA6, time 18275, size 549, H.264 (interframe), NAL unit> 
    312 #00311 <AudioTag at offset 0x00021EDA, time 18266, size 6, AAC, raw> 
    313 #00312 <AudioTag at offset 0x00021EEF, time 18313, size 6, AAC, raw> 
    314 #00313 <VideoTag at offset 0x00021F04, time 18342, size 717, H.264 (interframe), NAL unit> 
    315 #00314 <AudioTag at offset 0x000221E0, time 18359, size 6, AAC, raw> 
    316 #00315 <VideoTag at offset 0x000221F5, time 18408, size 732, H.264 (interframe), NAL unit> 
    317 #00316 <AudioTag at offset 0x000224E0, time 18406, size 6, AAC, raw> 
    318 #00317 <AudioTag at offset 0x000224F5, time 18452, size 6, AAC, raw> 
    319 #00318 <VideoTag at offset 0x0002250A, time 18475, size 649, H.264 (interframe), NAL unit> 
    320 #00319 <AudioTag at offset 0x000227A2, time 18499, size 6, AAC, raw> 
    321 #00320 <VideoTag at offset 0x000227B7, time 18542, size 532, H.264 (interframe), NAL unit> 
    322 #00321 <AudioTag at offset 0x000229DA, time 18545, size 6, AAC, raw> 
    323 #00322 <VideoTag at offset 0x000229EF, time 18609, size 525, H.264 (interframe), NAL unit> 
    324 #00323 <AudioTag at offset 0x00022C0B, time 18591, size 6, AAC, raw> 
    325 #00324 <AudioTag at offset 0x00022C20, time 18638, size 6, AAC, raw> 
    326 #00325 <VideoTag at offset 0x00022C35, time 18675, size 744, H.264 (interframe), NAL unit> 
    327 #00326 <AudioTag at offset 0x00022F2C, time 18684, size 6, AAC, raw> 
    328 #00327 <VideoTag at offset 0x00022F41, time 18742, size 540, H.264 (interframe), NAL unit> 
    329 #00328 <AudioTag at offset 0x0002316C, time 18731, size 6, AAC, raw> 
    330 #00329 <AudioTag at offset 0x00023181, time 18777, size 6, AAC, raw> 
    331 #00330 <VideoTag at offset 0x00023196, time 18809, size 722, H.264 (interframe), NAL unit> 
    332 #00331 <AudioTag at offset 0x00023477, time 18824, size 6, AAC, raw> 
    333 #00332 <VideoTag at offset 0x0002348C, time 18876, size 579, H.264 (interframe), NAL unit> 
    334 #00333 <AudioTag at offset 0x000236DE, time 18870, size 6, AAC, raw> 
    335 #00334 <AudioTag at offset 0x000236F3, time 18916, size 6, AAC, raw> 
    336 #00335 <VideoTag at offset 0x00023708, time 18942, size 551, H.264 (interframe), NAL unit> 
    337 #00336 <AudioTag at offset 0x0002393E, time 18963, size 6, AAC, raw> 
    338 #00337 <VideoTag at offset 0x00023953, time 19009, size 3248, H.264 (interframe), NAL unit> 
    339 #00338 <AudioTag at offset 0x00024612, time 19009, size 6, AAC, raw> 
    340 #00339 <AudioTag at offset 0x00024627, time 19056, size 249, AAC, raw> 
    341 #00340 <VideoTag at offset 0x0002472F, time 19076, size 1131, H.264 (interframe), NAL unit> 
    342 #00341 <AudioTag at offset 0x00024BA9, time 19102, size 228, AAC, raw> 
    343 #00342 <VideoTag at offset 0x00024C9C, time 19142, size 691, H.264 (interframe), NAL unit> 
    344 #00343 <AudioTag at offset 0x00024F5E, time 19149, size 6, AAC, raw> 
    345 #00344 <VideoTag at offset 0x00024F73, time 19209, size 858, H.264 (interframe), NAL unit> 
    346 #00345 <AudioTag at offset 0x000252DC, time 19195, size 6, AAC, raw> 
    347 #00346 <AudioTag at offset 0x000252F1, time 19242, size 6, AAC, raw> 
    348 #00347 <VideoTag at offset 0x00025306, time 19276, size 561, H.264 (interframe), NAL unit> 
    349 #00348 <AudioTag at offset 0x00025546, time 19288, size 6, AAC, raw> 
    350 #00349 <VideoTag at offset 0x0002555B, time 19343, size 809, H.264 (interframe), NAL unit> 
    351 #00350 <AudioTag at offset 0x00025893, time 19334, size 6, AAC, raw> 
    352 #00351 <AudioTag at offset 0x000258A8, time 19381, size 6, AAC, raw> 
    353 #00352 <VideoTag at offset 0x000258BD, time 19409, size 642, H.264 (interframe), NAL unit> 
    354 #00353 <AudioTag at offset 0x00025B4E, time 19427, size 6, AAC, raw> 
    355 #00354 <VideoTag at offset 0x00025B63, time 19476, size 735, H.264 (interframe), NAL unit> 
    356 #00355 <AudioTag at offset 0x00025E51, time 19474, size 6, AAC, raw> 
    357 #00356 <AudioTag at offset 0x00025E66, time 19520, size 6, AAC, raw> 
    358 #00357 <VideoTag at offset 0x00025E7B, time 19543, size 544, H.264 (interframe), NAL unit> 
    359 #00358 <AudioTag at offset 0x000260AA, time 19567, size 6, AAC, raw> 
    360 #00359 <VideoTag at offset 0x000260BF, time 19610, size 553, H.264 (interframe), NAL unit> 
    361 #00360 <AudioTag at offset 0x000262F7, time 19613, size 6, AAC, raw> 
    362 #00361 <VideoTag at offset 0x0002630C, time 19676, size 772, H.264 (interframe), NAL unit> 
    363 #00362 <AudioTag at offset 0x0002661F, time 19660, size 6, AAC, raw> 
    364 #00363 <AudioTag at offset 0x00026634, time 19706, size 6, AAC, raw> 
    365 #00364 <VideoTag at offset 0x00026649, time 19743, size 557, H.264 (interframe), NAL unit> 
    366 #00365 <AudioTag at offset 0x00026885, time 19752, size 6, AAC, raw> 
    367 #00366 <VideoTag at offset 0x0002689A, time 19810, size 625, H.264 (interframe), NAL unit> 
    368 #00367 <AudioTag at offset 0x00026B1A, time 19799, size 6, AAC, raw> 
    369 #00368 <AudioTag at offset 0x00026B2F, time 19845, size 6, AAC, raw> 
    370 #00369 <VideoTag at offset 0x00026B44, time 19877, size 586, H.264 (interframe), NAL unit> 
    371 #00370 <AudioTag at offset 0x00026D9D, time 19892, size 6, AAC, raw> 
    372 #00371 <VideoTag at offset 0x00026DB2, time 19943, size 610, H.264 (interframe), NAL unit> 
    373 #00372 <AudioTag at offset 0x00027023, time 19938, size 6, AAC, raw> 
     1#00001 <VideoTag at offset 0x0000000D, time 0, size 39, H.264 (keyframe), sequence header> 
     2#00002 <VideoTag at offset 0x00000043, time 0, size 6357, H.264 (keyframe), NAL unit> 
     3#00003 <AudioTag at offset 0x00001927, time 0, size 4, AAC, sequence header> 
     4#00004 <AudioTag at offset 0x0000193A, time 0, size 6, AAC, raw> 
     5#00005 <AudioTag at offset 0x0000194F, time 46, size 211, AAC, raw> 
     6#00006 <VideoTag at offset 0x00001A31, time 67, size 829, H.264 (interframe), NAL unit> 
     7#00007 <AudioTag at offset 0x00001D7D, time 93, size 247, AAC, raw> 
     8#00008 <VideoTag at offset 0x00001E83, time 133, size 396, H.264 (interframe), NAL unit> 
     9#00009 <AudioTag at offset 0x0000201E, time 139, size 6, AAC, raw> 
     10#00010 <AudioTag at offset 0x00002033, time 186, size 6, AAC, raw> 
     11#00011 <VideoTag at offset 0x00002048, time 200, size 389, H.264 (interframe), NAL unit> 
     12#00012 <AudioTag at offset 0x000021DC, time 232, size 6, AAC, raw> 
     13#00013 <VideoTag at offset 0x000021F1, time 267, size 341, H.264 (interframe), NAL unit> 
     14#00014 <AudioTag at offset 0x00002355, time 279, size 6, AAC, raw> 
     15#00015 <AudioTag at offset 0x0000236A, time 325, size 6, AAC, raw> 
     16#00016 <VideoTag at offset 0x0000237F, time 334, size 453, H.264 (interframe), NAL unit> 
     17#00017 <AudioTag at offset 0x00002553, time 372, size 6, AAC, raw> 
     18#00018 <VideoTag at offset 0x00002568, time 400, size 511, H.264 (interframe), NAL unit> 
     19#00019 <AudioTag at offset 0x00002776, time 418, size 6, AAC, raw> 
     20#00020 <AudioTag at offset 0x0000278B, time 464, size 6, AAC, raw> 
     21#00021 <VideoTag at offset 0x000027A0, time 467, size 467, H.264 (interframe), NAL unit> 
     22#00022 <AudioTag at offset 0x00002982, time 511, size 6, AAC, raw> 
     23#00023 <VideoTag at offset 0x00002997, time 534, size 384, H.264 (interframe), NAL unit> 
     24#00024 <AudioTag at offset 0x00002B26, time 557, size 6, AAC, raw> 
     25#00025 <VideoTag at offset 0x00002B3B, time 601, size 408, H.264 (interframe), NAL unit> 
     26#00026 <AudioTag at offset 0x00002CE2, time 604, size 6, AAC, raw> 
     27#00027 <AudioTag at offset 0x00002CF7, time 650, size 6, AAC, raw> 
     28#00028 <VideoTag at offset 0x00002D0C, time 667, size 596, H.264 (interframe), NAL unit> 
     29#00029 <AudioTag at offset 0x00002F6F, time 697, size 6, AAC, raw> 
     30#00030 <VideoTag at offset 0x00002F84, time 734, size 484, H.264 (interframe), NAL unit> 
     31#00031 <AudioTag at offset 0x00003177, time 743, size 6, AAC, raw> 
     32#00032 <AudioTag at offset 0x0000318C, time 789, size 6, AAC, raw> 
     33#00033 <VideoTag at offset 0x000031A1, time 801, size 734, H.264 (interframe), NAL unit> 
     34#00034 <AudioTag at offset 0x0000348E, time 836, size 6, AAC, raw> 
     35#00035 <VideoTag at offset 0x000034A3, time 868, size 496, H.264 (interframe), NAL unit> 
     36#00036 <AudioTag at offset 0x000036A2, time 882, size 6, AAC, raw> 
     37#00037 <AudioTag at offset 0x000036B7, time 929, size 6, AAC, raw> 
     38#00038 <VideoTag at offset 0x000036CC, time 934, size 485, H.264 (interframe), NAL unit> 
     39#00039 <AudioTag at offset 0x000038C0, time 975, size 6, AAC, raw> 
     40#00040 <VideoTag at offset 0x000038D5, time 1001, size 2669, H.264 (interframe), NAL unit> 
     41#00041 <AudioTag at offset 0x00004351, time 1022, size 6, AAC, raw> 
     42#00042 <VideoTag at offset 0x00004366, time 1068, size 864, H.264 (interframe), NAL unit> 
     43#00043 <AudioTag at offset 0x000046D5, time 1068, size 346, AAC, raw> 
     44#00044 <AudioTag at offset 0x0000483E, time 1115, size 6, AAC, raw> 
     45#00045 <VideoTag at offset 0x00004853, time 1134, size 655, H.264 (interframe), NAL unit> 
     46#00046 <AudioTag at offset 0x00004AF1, time 1161, size 6, AAC, raw> 
     47#00047 <VideoTag at offset 0x00004B06, time 1201, size 883, H.264 (interframe), NAL unit> 
     48#00048 <AudioTag at offset 0x00004E88, time 1207, size 6, AAC, raw> 
     49#00049 <AudioTag at offset 0x00004E9D, time 1254, size 6, AAC, raw> 
     50#00050 <VideoTag at offset 0x00004EB2, time 1268, size 493, H.264 (interframe), NAL unit> 
     51#00051 <AudioTag at offset 0x000050AE, time 1300, size 6, AAC, raw> 
     52#00052 <VideoTag at offset 0x000050C3, time 1335, size 719, H.264 (interframe), NAL unit> 
     53#00053 <AudioTag at offset 0x000053A1, time 1347, size 6, AAC, raw> 
     54#00054 <AudioTag at offset 0x000053B6, time 1393, size 6, AAC, raw> 
     55#00055 <VideoTag at offset 0x000053CB, time 1401, size 551, H.264 (interframe), NAL unit> 
     56#00056 <AudioTag at offset 0x00005601, time 1440, size 6, AAC, raw> 
     57#00057 <VideoTag at offset 0x00005616, time 1468, size 606, H.264 (interframe), NAL unit> 
     58#00058 <AudioTag at offset 0x00005883, time 1486, size 6, AAC, raw> 
     59#00059 <AudioTag at offset 0x00005898, time 1533, size 6, AAC, raw> 
     60#00060 <VideoTag at offset 0x000058AD, time 1535, size 496, H.264 (interframe), NAL unit> 
     61#00061 <AudioTag at offset 0x00005AAC, time 1579, size 6, AAC, raw> 
     62#00062 <VideoTag at offset 0x00005AC1, time 1602, size 491, H.264 (interframe), NAL unit> 
     63#00063 <AudioTag at offset 0x00005CBB, time 1625, size 6, AAC, raw> 
     64#00064 <VideoTag at offset 0x00005CD0, time 1668, size 836, H.264 (interframe), NAL unit> 
     65#00065 <AudioTag at offset 0x00006023, time 1672, size 6, AAC, raw> 
     66#00066 <AudioTag at offset 0x00006038, time 1718, size 6, AAC, raw> 
     67#00067 <VideoTag at offset 0x0000604D, time 1735, size 553, H.264 (interframe), NAL unit> 
     68#00068 <AudioTag at offset 0x00006285, time 1765, size 6, AAC, raw> 
     69#00069 <VideoTag at offset 0x0000629A, time 1802, size 712, H.264 (interframe), NAL unit> 
     70#00070 <AudioTag at offset 0x00006571, time 1811, size 6, AAC, raw> 
     71#00071 <AudioTag at offset 0x00006586, time 1858, size 6, AAC, raw> 
     72#00072 <VideoTag at offset 0x0000659B, time 1869, size 557, H.264 (interframe), NAL unit> 
     73#00073 <AudioTag at offset 0x000067D7, time 1904, size 6, AAC, raw> 
     74#00074 <VideoTag at offset 0x000067EC, time 1935, size 589, H.264 (interframe), NAL unit> 
     75#00075 <AudioTag at offset 0x00006A48, time 1950, size 6, AAC, raw> 
     76#00076 <AudioTag at offset 0x00006A5D, time 1997, size 6, AAC, raw> 
     77#00077 <VideoTag at offset 0x00006A72, time 2002, size 8586, H.264 (interframe), NAL unit> 
     78#00078 <AudioTag at offset 0x00008C0B, time 2043, size 179, AAC, raw> 
     79#00079 <VideoTag at offset 0x00008CCD, time 2069, size 1147, H.264 (interframe), NAL unit> 
     80#00080 <AudioTag at offset 0x00009157, time 2090, size 254, AAC, raw> 
     81#00081 <VideoTag at offset 0x00009264, time 2135, size 519, H.264 (interframe), NAL unit> 
     82#00082 <AudioTag at offset 0x0000947A, time 2136, size 6, AAC, raw> 
     83#00083 <AudioTag at offset 0x0000948F, time 2183, size 6, AAC, raw> 
     84#00084 <VideoTag at offset 0x000094A4, time 2202, size 578, H.264 (interframe), NAL unit> 
     85#00085 <AudioTag at offset 0x000096F5, time 2229, size 6, AAC, raw> 
     86#00086 <VideoTag at offset 0x0000970A, time 2269, size 459, H.264 (interframe), NAL unit> 
     87#00087 <AudioTag at offset 0x000098E4, time 2276, size 6, AAC, raw> 
     88#00088 <AudioTag at offset 0x000098F9, time 2322, size 6, AAC, raw> 
     89#00089 <VideoTag at offset 0x0000990E, time 2336, size 609, H.264 (interframe), NAL unit> 
     90#00090 <AudioTag at offset 0x00009B7E, time 2368, size 6, AAC, raw> 
     91#00091 <VideoTag at offset 0x00009B93, time 2402, size 659, H.264 (interframe), NAL unit> 
     92#00092 <AudioTag at offset 0x00009E35, time 2415, size 6, AAC, raw> 
     93#00093 <AudioTag at offset 0x00009E4A, time 2461, size 6, AAC, raw> 
     94#00094 <VideoTag at offset 0x00009E5F, time 2469, size 612, H.264 (interframe), NAL unit> 
     95#00095 <AudioTag at offset 0x0000A0D2, time 2508, size 6, AAC, raw> 
     96#00096 <VideoTag at offset 0x0000A0E7, time 2536, size 482, H.264 (interframe), NAL unit> 
     97#00097 <AudioTag at offset 0x0000A2D8, time 2554, size 6, AAC, raw> 
     98#00098 <AudioTag at offset 0x0000A2ED, time 2601, size 6, AAC, raw> 
     99#00099 <VideoTag at offset 0x0000A302, time 2603, size 496, H.264 (interframe), NAL unit> 
     100#00100 <AudioTag at offset 0x0000A501, time 2647, size 6, AAC, raw> 
     101#00101 <VideoTag at offset 0x0000A516, time 2669, size 702, H.264 (interframe), NAL unit> 
     102#00102 <AudioTag at offset 0x0000A7E3, time 2694, size 6, AAC, raw> 
     103#00103 <VideoTag at offset 0x0000A7F8, time 2736, size 491, H.264 (interframe), NAL unit> 
     104#00104 <AudioTag at offset 0x0000A9F2, time 2740, size 6, AAC, raw> 
     105#00105 <AudioTag at offset 0x0000AA07, time 2786, size 6, AAC, raw> 
     106#00106 <VideoTag at offset 0x0000AA1C, time 2803, size 651, H.264 (interframe), NAL unit> 
     107#00107 <AudioTag at offset 0x0000ACB6, time 2833, size 6, AAC, raw> 
     108#00108 <VideoTag at offset 0x0000ACCB, time 2870, size 611, H.264 (interframe), NAL unit> 
     109#00109 <AudioTag at offset 0x0000AF3D, time 2879, size 6, AAC, raw> 
     110#00110 <AudioTag at offset 0x0000AF52, time 2926, size 6, AAC, raw> 
     111#00111 <VideoTag at offset 0x0000AF67, time 2936, size 542, H.264 (interframe), NAL unit> 
     112#00112 <AudioTag at offset 0x0000B194, time 2972, size 6, AAC, raw> 
     113#00113 <VideoTag at offset 0x0000B1A9, time 3003, size 3032, H.264 (interframe), NAL unit> 
     114#00114 <AudioTag at offset 0x0000BD90, time 3019, size 6, AAC, raw> 
     115#00115 <AudioTag at offset 0x0000BDA5, time 3065, size 364, AAC, raw> 
     116#00116 <VideoTag at offset 0x0000BF20, time 3070, size 973, H.264 (interframe), NAL unit> 
     117#00117 <AudioTag at offset 0x0000C2FC, time 3111, size 56, AAC, raw> 
     118#00118 <VideoTag at offset 0x0000C343, time 3136, size 632, H.264 (interframe), NAL unit> 
     119#00119 <AudioTag at offset 0x0000C5CA, time 3158, size 6, AAC, raw> 
     120#00120 <VideoTag at offset 0x0000C5DF, time 3203, size 777, H.264 (interframe), NAL unit> 
     121#00121 <AudioTag at offset 0x0000C8F7, time 3204, size 6, AAC, raw> 
     122#00122 <AudioTag at offset 0x0000C90C, time 3251, size 6, AAC, raw> 
     123#00123 <VideoTag at offset 0x0000C921, time 3270, size 556, H.264 (interframe), NAL unit> 
     124#00124 <AudioTag at offset 0x0000CB5C, time 3297, size 6, AAC, raw> 
     125#00125 <VideoTag at offset 0x0000CB71, time 3337, size 774, H.264 (interframe), NAL unit> 
     126#00126 <AudioTag at offset 0x0000CE86, time 3344, size 6, AAC, raw> 
     127#00127 <AudioTag at offset 0x0000CE9B, time 3390, size 6, AAC, raw> 
     128#00128 <VideoTag at offset 0x0000CEB0, time 3403, size 607, H.264 (interframe), NAL unit> 
     129#00129 <AudioTag at offset 0x0000D11E, time 3437, size 6, AAC, raw> 
     130#00130 <VideoTag at offset 0x0000D133, time 3470, size 673, H.264 (interframe), NAL unit> 
     131#00131 <AudioTag at offset 0x0000D3E3, time 3483, size 6, AAC, raw> 
     132#00132 <AudioTag at offset 0x0000D3F8, time 3529, size 6, AAC, raw> 
     133#00133 <VideoTag at offset 0x0000D40D, time 3537, size 521, H.264 (interframe), NAL unit> 
     134#00134 <AudioTag at offset 0x0000D625, time 3576, size 6, AAC, raw> 
     135#00135 <VideoTag at offset 0x0000D63A, time 3604, size 531, H.264 (interframe), NAL unit> 
     136#00136 <AudioTag at offset 0x0000D85C, time 3622, size 6, AAC, raw> 
     137#00137 <AudioTag at offset 0x0000D871, time 3669, size 6, AAC, raw> 
     138#00138 <VideoTag at offset 0x0000D886, time 3670, size 696, H.264 (interframe), NAL unit> 
     139#00139 <AudioTag at offset 0x0000DB4D, time 3715, size 6, AAC, raw> 
     140#00140 <VideoTag at offset 0x0000DB62, time 3737, size 543, H.264 (interframe), NAL unit> 
     141#00141 <AudioTag at offset 0x0000DD90, time 3762, size 6, AAC, raw> 
     142#00142 <VideoTag at offset 0x0000DDA5, time 3804, size 648, H.264 (interframe), NAL unit> 
     143#00143 <AudioTag at offset 0x0000E03C, time 3808, size 6, AAC, raw> 
     144#00144 <AudioTag at offset 0x0000E051, time 3855, size 6, AAC, raw> 
     145#00145 <VideoTag at offset 0x0000E066, time 3871, size 670, H.264 (interframe), NAL unit> 
     146#00146 <AudioTag at offset 0x0000E313, time 3901, size 6, AAC, raw> 
     147#00147 <VideoTag at offset 0x0000E328, time 3937, size 625, H.264 (interframe), NAL unit> 
     148#00148 <AudioTag at offset 0x0000E5A8, time 3947, size 6, AAC, raw> 
     149#00149 <AudioTag at offset 0x0000E5BD, time 3994, size 6, AAC, raw> 
     150#00150 <VideoTag at offset 0x0000E5D2, time 4004, size 8934, H.264 (interframe), NAL unit> 
     151#00151 <AudioTag at offset 0x000108C7, time 4040, size 251, AAC, raw> 
     152#00152 <VideoTag at offset 0x000109D1, time 4071, size 1209, H.264 (interframe), NAL unit> 
     153#00153 <AudioTag at offset 0x00010E99, time 4087, size 283, AAC, raw> 
     154#00154 <AudioTag at offset 0x00010FC3, time 4133, size 176, AAC, raw> 
     155#00155 <VideoTag at offset 0x00011082, time 4137, size 560, H.264 (interframe), NAL unit> 
     156#00156 <AudioTag at offset 0x000112C1, time 4180, size 6, AAC, raw> 
     157#00157 <VideoTag at offset 0x000112D6, time 4204, size 637, H.264 (interframe), NAL unit> 
     158#00158 <AudioTag at offset 0x00011562, time 4226, size 6, AAC, raw> 
     159#00159 <VideoTag at offset 0x00011577, time 4271, size 508, H.264 (interframe), NAL unit> 
     160#00160 <AudioTag at offset 0x00011782, time 4272, size 6, AAC, raw> 
     161#00161 <AudioTag at offset 0x00011797, time 4319, size 6, AAC, raw> 
     162#00162 <VideoTag at offset 0x000117AC, time 4338, size 663, H.264 (interframe), NAL unit> 
     163#00163 <AudioTag at offset 0x00011A52, time 4365, size 6, AAC, raw> 
     164#00164 <VideoTag at offset 0x00011A67, time 4404, size 716, H.264 (interframe), NAL unit> 
     165#00165 <AudioTag at offset 0x00011D42, time 4412, size 6, AAC, raw> 
     166#00166 <AudioTag at offset 0x00011D57, time 4458, size 6, AAC, raw> 
     167#00167 <VideoTag at offset 0x00011D6C, time 4471, size 623, H.264 (interframe), NAL unit> 
     168#00168 <AudioTag at offset 0x00011FEA, time 4505, size 6, AAC, raw> 
     169#00169 <VideoTag at offset 0x00011FFF, time 4538, size 527, H.264 (interframe), NAL unit> 
     170#00170 <AudioTag at offset 0x0001221D, time 4551, size 6, AAC, raw> 
     171#00171 <AudioTag at offset 0x00012232, time 4598, size 6, AAC, raw> 
     172#00172 <VideoTag at offset 0x00012247, time 4605, size 515, H.264 (interframe), NAL unit> 
     173#00173 <AudioTag at offset 0x00012459, time 4644, size 6, AAC, raw> 
     174#00174 <VideoTag at offset 0x0001246E, time 4671, size 707, H.264 (interframe), NAL unit> 
     175#00175 <AudioTag at offset 0x00012740, time 4690, size 6, AAC, raw> 
     176#00176 <AudioTag at offset 0x00012755, time 4737, size 6, AAC, raw> 
     177#00177 <VideoTag at offset 0x0001276A, time 4738, size 507, H.264 (interframe), NAL unit> 
     178#00178 <AudioTag at offset 0x00012974, time 4783, size 6, AAC, raw> 
     179#00179 <VideoTag at offset 0x00012989, time 4805, size 659, H.264 (interframe), NAL unit> 
     180#00180 <AudioTag at offset 0x00012C2B, time 4830, size 6, AAC, raw> 
     181#00181 <VideoTag at offset 0x00012C40, time 4872, size 562, H.264 (interframe), NAL unit> 
     182#00182 <AudioTag at offset 0x00012E81, time 4876, size 6, AAC, raw> 
     183#00183 <AudioTag at offset 0x00012E96, time 4923, size 6, AAC, raw> 
     184#00184 <VideoTag at offset 0x00012EAB, time 4938, size 564, H.264 (interframe), NAL unit> 
     185#00185 <AudioTag at offset 0x000130EE, time 4969, size 6, AAC, raw> 
     186#00186 <VideoTag at offset 0x00013103, time 5005, size 3073, H.264 (interframe), NAL unit> 
     187#00187 <AudioTag at offset 0x00013D13, time 5016, size 6, AAC, raw> 
     188#00188 <AudioTag at offset 0x00013D28, time 5062, size 340, AAC, raw> 
     189#00189 <VideoTag at offset 0x00013E8B, time 5072, size 1081, H.264 (interframe), NAL unit> 
     190#00190 <AudioTag at offset 0x000142D3, time 5108, size 145, AAC, raw> 
     191#00191 <VideoTag at offset 0x00014373, time 5138, size 753, H.264 (interframe), NAL unit> 
     192#00192 <AudioTag at offset 0x00014673, time 5155, size 6, AAC, raw> 
     193#00193 <AudioTag at offset 0x00014688, time 5201, size 6, AAC, raw> 
     194#00194 <VideoTag at offset 0x0001469D, time 5205, size 753, H.264 (interframe), NAL unit> 
     195#00195 <AudioTag at offset 0x0001499D, time 5248, size 6, AAC, raw> 
     196#00196 <VideoTag at offset 0x000149B2, time 5272, size 538, H.264 (interframe), NAL unit> 
     197#00197 <AudioTag at offset 0x00014BDB, time 5294, size 6, AAC, raw> 
     198#00198 <VideoTag at offset 0x00014BF0, time 5339, size 797, H.264 (interframe), NAL unit> 
     199#00199 <AudioTag at offset 0x00014F1C, time 5341, size 6, AAC, raw> 
     200#00200 <AudioTag at offset 0x00014F31, time 5387, size 6, AAC, raw> 
     201#00201 <VideoTag at offset 0x00014F46, time 5405, size 616, H.264 (interframe), NAL unit> 
     202#00202 <AudioTag at offset 0x000151BD, time 5433, size 6, AAC, raw> 
     203#00203 <VideoTag at offset 0x000151D2, time 5472, size 679, H.264 (interframe), NAL unit> 
     204#00204 <AudioTag at offset 0x00015488, time 5480, size 6, AAC, raw> 
     205#00205 <AudioTag at offset 0x0001549D, time 5526, size 6, AAC, raw> 
     206#00206 <VideoTag at offset 0x000154B2, time 5539, size 552, H.264 (interframe), NAL unit> 
     207#00207 <AudioTag at offset 0x000156E9, time 5573, size 6, AAC, raw> 
     208#00208 <VideoTag at offset 0x000156FE, time 5606, size 547, H.264 (interframe), NAL unit> 
     209#00209 <AudioTag at offset 0x00015930, time 5619, size 6, AAC, raw> 
     210#00210 <AudioTag at offset 0x00015945, time 5666, size 6, AAC, raw> 
     211#00211 <VideoTag at offset 0x0001595A, time 5672, size 725, H.264 (interframe), NAL unit> 
     212#00212 <AudioTag at offset 0x00015C3E, time 5712, size 6, AAC, raw> 
     213#00213 <VideoTag at offset 0x00015C53, time 5739, size 549, H.264 (interframe), NAL unit> 
     214#00214 <AudioTag at offset 0x00015E87, time 5759, size 6, AAC, raw> 
     215#00215 <AudioTag at offset 0x00015E9C, time 5805, size 6, AAC, raw> 
     216#00216 <VideoTag at offset 0x00015EB1, time 5806, size 607, H.264 (interframe), NAL unit> 
     217#00217 <AudioTag at offset 0x0001611F, time 5851, size 6, AAC, raw> 
     218#00218 <VideoTag at offset 0x00016134, time 5873, size 642, H.264 (interframe), NAL unit> 
     219#00219 <AudioTag at offset 0x000163C5, time 5898, size 6, AAC, raw> 
     220#00220 <VideoTag at offset 0x000163DA, time 5939, size 611, H.264 (interframe), NAL unit> 
     221#00221 <AudioTag at offset 0x0001664C, time 5944, size 6, AAC, raw> 
     222#00222 <AudioTag at offset 0x00016661, time 5991, size 6, AAC, raw> 
     223#00223 <VideoTag at offset 0x00016676, time 6006, size 9298, H.264 (interframe), NAL unit> 
     224#00224 <AudioTag at offset 0x00018AD7, time 6037, size 185, AAC, raw> 
     225#00225 <VideoTag at offset 0x00018B9F, time 6073, size 1222, H.264 (interframe), NAL unit> 
     226#00226 <AudioTag at offset 0x00019074, time 6084, size 289, AAC, raw> 
     227#00227 <AudioTag at offset 0x000191A4, time 6130, size 283, AAC, raw> 
     228#00228 <VideoTag at offset 0x000192CE, time 6139, size 596, H.264 (interframe), NAL unit> 
     229#00229 <AudioTag at offset 0x00019531, time 6177, size 6, AAC, raw> 
     230#00230 <VideoTag at offset 0x00019546, time 6206, size 607, H.264 (interframe), NAL unit> 
     231#00231 <AudioTag at offset 0x000197B4, time 6223, size 6, AAC, raw> 
     232#00232 <AudioTag at offset 0x000197C9, time 6269, size 6, AAC, raw> 
     233#00233 <VideoTag at offset 0x000197DE, time 6273, size 553, H.264 (interframe), NAL unit> 
     234#00234 <AudioTag at offset 0x00019A16, time 6316, size 6, AAC, raw> 
     235#00235 <VideoTag at offset 0x00019A2B, time 6340, size 673, H.264 (interframe), NAL unit> 
     236#00236 <AudioTag at offset 0x00019CDB, time 6362, size 6, AAC, raw> 
     237#00237 <VideoTag at offset 0x00019CF0, time 6406, size 613, H.264 (interframe), NAL unit> 
     238#00238 <AudioTag at offset 0x00019F64, time 6409, size 6, AAC, raw> 
     239#00239 <AudioTag at offset 0x00019F79, time 6455, size 6, AAC, raw> 
     240#00240 <VideoTag at offset 0x00019F8E, time 6473, size 692, H.264 (interframe), NAL unit> 
     241#00241 <AudioTag at offset 0x0001A251, time 6502, size 6, AAC, raw> 
     242#00242 <VideoTag at offset 0x0001A266, time 6540, size 535, H.264 (interframe), NAL unit> 
     243#00243 <AudioTag at offset 0x0001A48C, time 6548, size 6, AAC, raw> 
     244#00244 <AudioTag at offset 0x0001A4A1, time 6594, size 6, AAC, raw> 
     245#00245 <VideoTag at offset 0x0001A4B6, time 6607, size 520, H.264 (interframe), NAL unit> 
     246#00246 <AudioTag at offset 0x0001A6CD, time 6641, size 6, AAC, raw> 
     247#00247 <VideoTag at offset 0x0001A6E2, time 6673, size 761, H.264 (interframe), NAL unit> 
     248#00248 <AudioTag at offset 0x0001A9EA, time 6687, size 6, AAC, raw> 
     249#00249 <AudioTag at offset 0x0001A9FF, time 6734, size 6, AAC, raw> 
     250#00250 <VideoTag at offset 0x0001AA14, time 6740, size 582, H.264 (interframe), NAL unit> 
     251#00251 <AudioTag at offset 0x0001AC69, time 6780, size 6, AAC, raw> 
     252#00252 <VideoTag at offset 0x0001AC7E, time 6807, size 579, H.264 (interframe), NAL unit> 
     253#00253 <AudioTag at offset 0x0001AED0, time 6827, size 6, AAC, raw> 
     254#00254 <AudioTag at offset 0x0001AEE5, time 6873, size 6, AAC, raw> 
     255#00255 <VideoTag at offset 0x0001AEFA, time 6874, size 664, H.264 (interframe), NAL unit> 
     256#00256 <AudioTag at offset 0x0001B1A1, time 6920, size 6, AAC, raw> 
     257#00257 <VideoTag at offset 0x0001B1B6, time 6940, size 567, H.264 (interframe), NAL unit> 
     258#00258 <AudioTag at offset 0x0001B3FC, time 6966, size 6, AAC, raw> 
     259#00259 <VideoTag at offset 0x0001B411, time 7007, size 3240, H.264 (interframe), NAL unit> 
     260#00260 <AudioTag at offset 0x0001C0C8, time 7012, size 6, AAC, raw> 
     261#00261 <AudioTag at offset 0x0001C0DD, time 7059, size 282, AAC, raw> 
     262#00262 <VideoTag at offset 0x0001C206, time 7074, size 1119, H.264 (interframe), NAL unit> 
     263#00263 <AudioTag at offset 0x0001C674, time 7105, size 24, AAC, raw> 
     264#00264 <AudioTag at offset 0x0001C69B, time 7105, size 168, AAC, raw> 
     265#00265 <VideoTag at offset 0x0001C752, time 7140, size 685, H.264 (interframe), NAL unit> 
     266#00266 <AudioTag at offset 0x0001CA0E, time 7152, size 6, AAC, raw> 
     267#00267 <AudioTag at offset 0x0001CA23, time 7198, size 6, AAC, raw> 
     268#00268 <VideoTag at offset 0x0001CA38, time 7207, size 951, H.264 (interframe), NAL unit> 
     269#00269 <AudioTag at offset 0x0001CDFE, time 7245, size 6, AAC, raw> 
     270#00270 <VideoTag at offset 0x0001CE13, time 7274, size 529, H.264 (interframe), NAL unit> 
     271#00271 <AudioTag at offset 0x0001D033, time 7291, size 6, AAC, raw> 
     272#00272 <AudioTag at offset 0x0001D048, time 7338, size 6, AAC, raw> 
     273#00273 <VideoTag at offset 0x0001D05D, time 7341, size 810, H.264 (interframe), NAL unit> 
     274#00274 <AudioTag at offset 0x0001D396, time 7384, size 6, AAC, raw> 
     275#00275 <VideoTag at offset 0x0001D3AB, time 7407, size 654, H.264 (interframe), NAL unit> 
     276#00276 <AudioTag at offset 0x0001D648, time 7430, size 6, AAC, raw> 
     277#00277 <VideoTag at offset 0x0001D65D, time 7474, size 647, H.264 (interframe), NAL unit> 
     278#00278 <AudioTag at offset 0x0001D8F3, time 7477, size 6, AAC, raw> 
     279#00279 <AudioTag at offset 0x0001D908, time 7523, size 6, AAC, raw> 
     280#00280 <VideoTag at offset 0x0001D91D, time 7541, size 552, H.264 (interframe), NAL unit> 
     281#00281 <AudioTag at offset 0x0001DB54, time 7570, size 6, AAC, raw> 
     282#00282 <VideoTag at offset 0x0001DB69, time 7608, size 559, H.264 (interframe), NAL unit> 
     283#00283 <AudioTag at offset 0x0001DDA7, time 7616, size 6, AAC, raw> 
     284#00284 <AudioTag at offset 0x0001DDBC, time 7663, size 6, AAC, raw> 
     285#00285 <VideoTag at offset 0x0001DDD1, time 7674, size 785, H.264 (interframe), NAL unit> 
     286#00286 <AudioTag at offset 0x0001E0F1, time 7709, size 6, AAC, raw> 
     287#00287 <VideoTag at offset 0x0001E106, time 7741, size 564, H.264 (interframe), NAL unit> 
     288#00288 <AudioTag at offset 0x0001E349, time 7755, size 6, AAC, raw> 
     289#00289 <AudioTag at offset 0x0001E35E, time 7802, size 6, AAC, raw> 
     290#00290 <VideoTag at offset 0x0001E373, time 7808, size 628, H.264 (interframe), NAL unit> 
     291#00291 <AudioTag at offset 0x0001E5F6, time 7848, size 6, AAC, raw> 
     292#00292 <VideoTag at offset 0x0001E60B, time 7875, size 597, H.264 (interframe), NAL unit> 
     293#00293 <AudioTag at offset 0x0001E86F, time 7895, size 6, AAC, raw> 
     294#00294 <VideoTag at offset 0x0001E884, time 7941, size 603, H.264 (interframe), NAL unit> 
     295#00295 <AudioTag at offset 0x0001EAEE, time 7941, size 6, AAC, raw> 
     296#00296 <AudioTag at offset 0x0001EB03, time 7988, size 6, AAC, raw> 
     297#00297 <VideoTag at offset 0x0001EB18, time 8008, size 9334, H.264 (interframe), NAL unit> 
     298#00298 <AudioTag at offset 0x00020F9D, time 8034, size 112, AAC, raw> 
     299#00299 <VideoTag at offset 0x0002101C, time 8075, size 1214, H.264 (interframe), NAL unit> 
     300#00300 <AudioTag at offset 0x000214E9, time 8081, size 364, AAC, raw> 
     301#00301 <AudioTag at offset 0x00021664, time 8127, size 6, AAC, raw> 
     302#00302 <VideoTag at offset 0x00021679, time 8141, size 624, H.264 (interframe), NAL unit> 
     303#00303 <AudioTag at offset 0x000218F8, time 8173, size 6, AAC, raw> 
     304#00304 <VideoTag at offset 0x0002190D, time 8208, size 650, H.264 (interframe), NAL unit> 
     305#00305 <AudioTag at offset 0x00021BA6, time 8220, size 6, AAC, raw> 
     306#00306 <AudioTag at offset 0x00021BBB, time 8266, size 6, AAC, raw> 
     307#00307 <VideoTag at offset 0x00021BD0, time 8275, size 549, H.264 (interframe), NAL unit> 
     308#00308 <AudioTag at offset 0x00021E04, time 8313, size 6, AAC, raw> 
     309#00309 <VideoTag at offset 0x00021E19, time 8342, size 717, H.264 (interframe), NAL unit> 
     310#00310 <AudioTag at offset 0x000220F5, time 8359, size 6, AAC, raw> 
     311#00311 <AudioTag at offset 0x0002210A, time 8406, size 6, AAC, raw> 
     312#00312 <VideoTag at offset 0x0002211F, time 8408, size 732, H.264 (interframe), NAL unit> 
     313#00313 <AudioTag at offset 0x0002240A, time 8452, size 6, AAC, raw> 
     314#00314 <VideoTag at offset 0x0002241F, time 8475, size 649, H.264 (interframe), NAL unit> 
     315#00315 <AudioTag at offset 0x000226B7, time 8499, size 6, AAC, raw> 
     316#00316 <VideoTag at offset 0x000226CC, time 8542, size 532, H.264 (interframe), NAL unit> 
     317#00317 <AudioTag at offset 0x000228EF, time 8545, size 6, AAC, raw> 
     318#00318 <AudioTag at offset 0x00022904, time 8591, size 6, AAC, raw> 
     319#00319 <VideoTag at offset 0x00022919, time 8609, size 525, H.264 (interframe), NAL unit> 
     320#00320 <AudioTag at offset 0x00022B35, time 8638, size 6, AAC, raw> 
     321#00321 <VideoTag at offset 0x00022B4A, time 8675, size 744, H.264 (interframe), NAL unit> 
     322#00322 <AudioTag at offset 0x00022E41, time 8684, size 6, AAC, raw> 
     323#00323 <AudioTag at offset 0x00022E56, time 8731, size 6, AAC, raw> 
     324#00324 <VideoTag at offset 0x00022E6B, time 8742, size 540, H.264 (interframe), NAL unit> 
     325#00325 <AudioTag at offset 0x00023096, time 8777, size 6, AAC, raw> 
     326#00326 <VideoTag at offset 0x000230AB, time 8809, size 722, H.264 (interframe), NAL unit> 
     327#00327 <AudioTag at offset 0x0002338C, time 8824, size 6, AAC, raw> 
     328#00328 <AudioTag at offset 0x000233A1, time 8870, size 6, AAC, raw> 
     329#00329 <VideoTag at offset 0x000233B6, time 8876, size 579, H.264 (interframe), NAL unit> 
     330#00330 <AudioTag at offset 0x00023608, time 8916, size 6, AAC, raw> 
     331#00331 <VideoTag at offset 0x0002361D, time 8942, size 551, H.264 (interframe), NAL unit> 
     332#00332 <AudioTag at offset 0x00023853, time 8963, size 6, AAC, raw> 
     333#00333 <VideoTag at offset 0x00023868, time 9009, size 3248, H.264 (interframe), NAL unit> 
     334#00334 <AudioTag at offset 0x00024527, time 9009, size 6, AAC, raw> 
     335#00335 <AudioTag at offset 0x0002453C, time 9056, size 249, AAC, raw> 
     336#00336 <VideoTag at offset 0x00024644, time 9076, size 1131, H.264 (interframe), NAL unit> 
     337#00337 <AudioTag at offset 0x00024ABE, time 9102, size 228, AAC, raw> 
     338#00338 <VideoTag at offset 0x00024BB1, time 9142, size 691, H.264 (interframe), NAL unit> 
     339#00339 <AudioTag at offset 0x00024E73, time 9149, size 6, AAC, raw> 
     340#00340 <AudioTag at offset 0x00024E88, time 9195, size 6, AAC, raw> 
     341#00341 <VideoTag at offset 0x00024E9D, time 9209, size 858, H.264 (interframe), NAL unit> 
     342#00342 <AudioTag at offset 0x00025206, time 9242, size 6, AAC, raw> 
     343#00343 <VideoTag at offset 0x0002521B, time 9276, size 561, H.264 (interframe), NAL unit> 
     344#00344 <AudioTag at offset 0x0002545B, time 9288, size 6, AAC, raw> 
     345#00345 <AudioTag at offset 0x00025470, time 9334, size 6, AAC, raw> 
     346#00346 <VideoTag at offset 0x00025485, time 9343, size 809, H.264 (interframe), NAL unit> 
     347#00347 <AudioTag at offset 0x000257BD, time 9381, size 6, AAC, raw> 
     348#00348 <VideoTag at offset 0x000257D2, time 9409, size 642, H.264 (interframe), NAL unit> 
     349#00349 <AudioTag at offset 0x00025A63, time 9427, size 6, AAC, raw> 
     350#00350 <AudioTag at offset 0x00025A78, time 9474, size 6, AAC, raw> 
     351#00351 <VideoTag at offset 0x00025A8D, time 9476, size 735, H.264 (interframe), NAL unit> 
     352#00352 <AudioTag at offset 0x00025D7B, time 9520, size 6, AAC, raw> 
     353#00353 <VideoTag at offset 0x00025D90, time 9543, size 544, H.264 (interframe), NAL unit> 
     354#00354 <AudioTag at offset 0x00025FBF, time 9567, size 6, AAC, raw> 
     355#00355 <VideoTag at offset 0x00025FD4, time 9610, size 553, H.264 (interframe), NAL unit> 
     356#00356 <AudioTag at offset 0x0002620C, time 9613, size 6, AAC, raw> 
     357#00357 <AudioTag at offset 0x00026221, time 9660, size 6, AAC, raw> 
     358#00358 <VideoTag at offset 0x00026236, time 9676, size 772, H.264 (interframe), NAL unit> 
     359#00359 <AudioTag at offset 0x00026549, time 9706, size 6, AAC, raw> 
     360#00360 <VideoTag at offset 0x0002655E, time 9743, size 557, H.264 (interframe), NAL unit> 
     361#00361 <AudioTag at offset 0x0002679A, time 9752, size 6, AAC, raw> 
     362#00362 <AudioTag at offset 0x000267AF, time 9799, size 6, AAC, raw> 
     363#00363 <VideoTag at offset 0x000267C4, time 9810, size 625, H.264 (interframe), NAL unit> 
     364#00364 <AudioTag at offset 0x00026A44, time 9845, size 6, AAC, raw> 
     365#00365 <VideoTag at offset 0x00026A59, time 9877, size 586, H.264 (interframe), NAL unit> 
     366#00366 <AudioTag at offset 0x00026CB2, time 9892, size 6, AAC, raw> 
     367#00367 <AudioTag at offset 0x00026CC7, time 9938, size 6, AAC, raw> 
     368#00368 <VideoTag at offset 0x00026CDC, time 9943, size 610, H.264 (interframe), NAL unit> 
  • providers/adaptive/test/assets/codeshop.txt

    r1462 r1476  
    1 === `codeshop.flv' === 
    2 #00001 <AudioTag at offset 0x0000000D, time 12540, size 9, AAC, sequence header> 
    3 #00002 <AudioTag at offset 0x00000025, time 12540, size 191, AAC, raw> 
    4 #00003 <AudioTag at offset 0x000000F3, time 12540, size 172, AAC, raw> 
    5 #00004 <AudioTag at offset 0x000001AE, time 12540, size 165, AAC, raw> 
    6 #00005 <AudioTag at offset 0x00000262, time 12540, size 169, AAC, raw> 
    7 #00006 <AudioTag at offset 0x0000031A, time 12540, size 168, AAC, raw> 
    8 #00007 <VideoTag at offset 0x000003D1, time 12658, size 81, H.264 (keyframe), sequence header> 
    9 #00008 <VideoTag at offset 0x00000431, time 12658, size 19780, H.264 (keyframe), NAL unit> 
    10 #00009 <AudioTag at offset 0x00005184, time 12647, size 171, AAC, raw> 
    11 #00010 <AudioTag at offset 0x0000523E, time 12647, size 171, AAC, raw> 
    12 #00011 <AudioTag at offset 0x000052F8, time 12647, size 170, AAC, raw> 
    13 #00012 <AudioTag at offset 0x000053B1, time 12647, size 165, AAC, raw> 
    14 #00013 <AudioTag at offset 0x00005465, time 12647, size 171, AAC, raw> 
    15 #00014 <VideoTag at offset 0x0000551F, time 12700, size 714, H.264 (interframe), NAL unit> 
    16 #00015 <VideoTag at offset 0x000057F8, time 12742, size 1089, H.264 (interframe), NAL unit> 
    17 #00016 <VideoTag at offset 0x00005C48, time 12783, size 1609, H.264 (interframe), NAL unit> 
    18 #00017 <AudioTag at offset 0x000062A0, time 12753, size 172, AAC, raw> 
    19 #00018 <AudioTag at offset 0x0000635B, time 12753, size 172, AAC, raw> 
    20 #00019 <AudioTag at offset 0x00006416, time 12753, size 179, AAC, raw> 
    21 #00020 <AudioTag at offset 0x000064D8, time 12753, size 165, AAC, raw> 
    22 #00021 <AudioTag at offset 0x0000658C, time 12753, size 176, AAC, raw> 
    23 #00022 <VideoTag at offset 0x0000664B, time 12825, size 1920, H.264 (interframe), NAL unit> 
    24 #00023 <VideoTag at offset 0x00006DDA, time 12867, size 2166, H.264 (interframe), NAL unit> 
    25 #00024 <AudioTag at offset 0x0000765F, time 12860, size 187, AAC, raw> 
    26 #00025 <AudioTag at offset 0x00007729, time 12860, size 183, AAC, raw> 
    27 #00026 <AudioTag at offset 0x000077EF, time 12860, size 185, AAC, raw> 
    28 #00027 <AudioTag at offset 0x000078B7, time 12860, size 182, AAC, raw> 
    29 #00028 <AudioTag at offset 0x0000797C, time 12860, size 167, AAC, raw> 
    30 #00029 <VideoTag at offset 0x00007A32, time 12908, size 787, H.264 (interframe), NAL unit> 
    31 #00030 <VideoTag at offset 0x00007D54, time 12950, size 1282, H.264 (interframe), NAL unit> 
    32 #00031 <VideoTag at offset 0x00008265, time 12992, size 1526, H.264 (interframe), NAL unit> 
    33 #00032 <AudioTag at offset 0x0000886A, time 12967, size 171, AAC, raw> 
    34 #00033 <AudioTag at offset 0x00008924, time 12967, size 175, AAC, raw> 
    35 #00034 <AudioTag at offset 0x000089E2, time 12967, size 183, AAC, raw> 
    36 #00035 <AudioTag at offset 0x00008AA8, time 12967, size 178, AAC, raw> 
    37 #00036 <AudioTag at offset 0x00008B69, time 12967, size 177, AAC, raw> 
    38 #00037 <VideoTag at offset 0x00008C29, time 13033, size 1246, H.264 (interframe), NAL unit> 
    39 #00038 <VideoTag at offset 0x00009116, time 13075, size 1587, H.264 (interframe), NAL unit> 
    40 #00039 <AudioTag at offset 0x00009758, time 13073, size 175, AAC, raw> 
    41 #00040 <AudioTag at offset 0x00009816, time 13073, size 179, AAC, raw> 
    42 #00041 <AudioTag at offset 0x000098D8, time 13073, size 177, AAC, raw> 
    43 #00042 <AudioTag at offset 0x00009998, time 13073, size 169, AAC, raw> 
    44 #00043 <AudioTag at offset 0x00009A50, time 13073, size 176, AAC, raw> 
    45 #00044 <VideoTag at offset 0x00009B0F, time 13117, size 1540, H.264 (interframe), NAL unit> 
    46 #00045 <VideoTag at offset 0x0000A122, time 13158, size 1354, H.264 (interframe), NAL unit> 
    47 #00046 <VideoTag at offset 0x0000A67B, time 13200, size 1811, H.264 (interframe), NAL unit> 
    48 #00047 <AudioTag at offset 0x0000AD9D, time 13180, size 175, AAC, raw> 
    49 #00048 <AudioTag at offset 0x0000AE5B, time 13180, size 184, AAC, raw> 
    50 #00049 <AudioTag at offset 0x0000AF22, time 13180, size 183, AAC, raw> 
    51 #00050 <AudioTag at offset 0x0000AFE8, time 13180, size 169, AAC, raw> 
    52 #00051 <AudioTag at offset 0x0000B0A0, time 13180, size 179, AAC, raw> 
    53 #00052 <VideoTag at offset 0x0000B162, time 13242, size 1709, H.264 (interframe), NAL unit> 
    54 #00053 <VideoTag at offset 0x0000B81E, time 13283, size 1261, H.264 (interframe), NAL unit> 
    55 #00054 <VideoTag at offset 0x0000BD1A, time 13325, size 1726, H.264 (interframe), NAL unit> 
    56 #00055 <AudioTag at offset 0x0000C3E7, time 13287, size 176, AAC, raw> 
    57 #00056 <AudioTag at offset 0x0000C4A6, time 13287, size 165, AAC, raw> 
    58 #00057 <AudioTag at offset 0x0000C55A, time 13287, size 165, AAC, raw> 
    59 #00058 <AudioTag at offset 0x0000C60E, time 13287, size 164, AAC, raw> 
    60 #00059 <AudioTag at offset 0x0000C6C1, time 13287, size 186, AAC, raw> 
    61 #00060 <VideoTag at offset 0x0000C78A, time 13367, size 1762, H.264 (interframe), NAL unit> 
    62 #00061 <VideoTag at offset 0x0000CE7B, time 13408, size 1337, H.264 (interframe), NAL unit> 
    63 #00062 <AudioTag at offset 0x0000D3C3, time 13393, size 179, AAC, raw> 
    64 #00063 <AudioTag at offset 0x0000D485, time 13393, size 174, AAC, raw> 
    65 #00064 <AudioTag at offset 0x0000D542, time 13393, size 170, AAC, raw> 
    66 #00065 <AudioTag at offset 0x0000D5FB, time 13393, size 145, AAC, raw> 
    67 #00066 <AudioTag at offset 0x0000D69B, time 13393, size 157, AAC, raw> 
    68 #00067 <VideoTag at offset 0x0000D747, time 13450, size 1701, H.264 (interframe), NAL unit> 
    69 #00068 <VideoTag at offset 0x0000DDFB, time 13492, size 1801, H.264 (interframe), NAL unit> 
    70 #00069 <VideoTag at offset 0x0000E513, time 13533, size 1297, H.264 (interframe), NAL unit> 
    71 #00070 <AudioTag at offset 0x0000EA33, time 13500, size 169, AAC, raw> 
    72 #00071 <AudioTag at offset 0x0000EAEB, time 13500, size 176, AAC, raw> 
    73 #00072 <AudioTag at offset 0x0000EBAA, time 13500, size 177, AAC, raw> 
    74 #00073 <AudioTag at offset 0x0000EC6A, time 13500, size 173, AAC, raw> 
    75 #00074 <AudioTag at offset 0x0000ED26, time 13500, size 176, AAC, raw> 
    76 #00075 <VideoTag at offset 0x0000EDE5, time 13575, size 1756, H.264 (interframe), NAL unit> 
    77 #00076 <VideoTag at offset 0x0000F4D0, time 13617, size 1689, H.264 (interframe), NAL unit> 
    78 #00077 <AudioTag at offset 0x0000FB78, time 13607, size 190, AAC, raw> 
    79 #00078 <AudioTag at offset 0x0000FC45, time 13607, size 180, AAC, raw> 
    80 #00079 <AudioTag at offset 0x0000FD08, time 13607, size 172, AAC, raw> 
    81 #00080 <AudioTag at offset 0x0000FDC3, time 13607, size 163, AAC, raw> 
    82 #00081 <AudioTag at offset 0x0000FE75, time 13607, size 170, AAC, raw> 
    83 #00082 <VideoTag at offset 0x0000FF2E, time 13658, size 1303, H.264 (interframe), NAL unit> 
    84 #00083 <VideoTag at offset 0x00010454, time 13700, size 1890, H.264 (interframe), NAL unit> 
    85 #00084 <VideoTag at offset 0x00010BC5, time 13742, size 1724, H.264 (interframe), NAL unit> 
    86 #00085 <AudioTag at offset 0x00011290, time 13713, size 154, AAC, raw> 
    87 #00086 <AudioTag at offset 0x00011339, time 13713, size 144, AAC, raw> 
    88 #00087 <AudioTag at offset 0x000113D8, time 13713, size 149, AAC, raw> 
    89 #00088 <AudioTag at offset 0x0001147C, time 13713, size 161, AAC, raw> 
    90 #00089 <AudioTag at offset 0x0001152C, time 13713, size 169, AAC, raw> 
    91 #00090 <VideoTag at offset 0x000115E4, time 13783, size 1441, H.264 (interframe), NAL unit> 
    92 #00091 <VideoTag at offset 0x00011B94, time 13825, size 1799, H.264 (interframe), NAL unit> 
    93 #00092 <AudioTag at offset 0x000122AA, time 13820, size 175, AAC, raw> 
    94 #00093 <AudioTag at offset 0x00012368, time 13820, size 163, AAC, raw> 
    95 #00094 <AudioTag at offset 0x0001241A, time 13820, size 166, AAC, raw> 
    96 #00095 <AudioTag at offset 0x000124CF, time 13820, size 154, AAC, raw> 
    97 #00096 <AudioTag at offset 0x00012578, time 13820, size 166, AAC, raw> 
    98 #00097 <VideoTag at offset 0x0001262D, time 13867, size 1941, H.264 (interframe), NAL unit> 
    99 #00098 <VideoTag at offset 0x00012DD1, time 13908, size 1279, H.264 (interframe), NAL unit> 
    100 #00099 <VideoTag at offset 0x000132DF, time 13950, size 1918, H.264 (interframe), NAL unit> 
    101 #00100 <AudioTag at offset 0x00013A6C, time 13927, size 170, AAC, raw> 
    102 #00101 <AudioTag at offset 0x00013B25, time 13927, size 175, AAC, raw> 
    103 #00102 <AudioTag at offset 0x00013BE3, time 13927, size 166, AAC, raw> 
    104 #00103 <AudioTag at offset 0x00013C98, time 13927, size 144, AAC, raw> 
    105 #00104 <AudioTag at offset 0x00013D37, time 13927, size 146, AAC, raw> 
    106 #00105 <VideoTag at offset 0x00013DD8, time 13992, size 1710, H.264 (interframe), NAL unit> 
    107 #00106 <VideoTag at offset 0x00014495, time 14033, size 1231, H.264 (interframe), NAL unit> 
    108 #00107 <AudioTag at offset 0x00014973, time 14033, size 152, AAC, raw> 
    109 #00108 <AudioTag at offset 0x00014A1A, time 14033, size 179, AAC, raw> 
    110 #00109 <AudioTag at offset 0x00014ADC, time 14033, size 164, AAC, raw> 
    111 #00110 <AudioTag at offset 0x00014B8F, time 14033, size 166, AAC, raw> 
    112 #00111 <AudioTag at offset 0x00014C44, time 14033, size 164, AAC, raw> 
    113 #00112 <VideoTag at offset 0x00014CF7, time 14075, size 1912, H.264 (interframe), NAL unit> 
    114 #00113 <VideoTag at offset 0x0001547E, time 14117, size 1911, H.264 (interframe), NAL unit> 
    115 #00114 <VideoTag at offset 0x00015C04, time 14158, size 1295, H.264 (interframe), NAL unit> 
    116 #00115 <AudioTag at offset 0x00016122, time 14140, size 168, AAC, raw> 
    117 #00116 <AudioTag at offset 0x000161D9, time 14140, size 172, AAC, raw> 
    118 #00117 <AudioTag at offset 0x00016294, time 14140, size 162, AAC, raw> 
    119 #00118 <AudioTag at offset 0x00016345, time 14140, size 163, AAC, raw> 
    120 #00119 <AudioTag at offset 0x000163F7, time 14140, size 176, AAC, raw> 
    121 #00120 <VideoTag at offset 0x000164B6, time 14200, size 2017, H.264 (interframe), NAL unit> 
    122 #00121 <VideoTag at offset 0x00016CA6, time 14242, size 1885, H.264 (interframe), NAL unit> 
    123 #00122 <VideoTag at offset 0x00017412, time 14283, size 1298, H.264 (interframe), NAL unit> 
    124 #00123 <AudioTag at offset 0x00017933, time 14247, size 185, AAC, raw> 
    125 #00124 <AudioTag at offset 0x000179FB, time 14247, size 167, AAC, raw> 
    126 #00125 <AudioTag at offset 0x00017AB1, time 14247, size 178, AAC, raw> 
    127 #00126 <AudioTag at offset 0x00017B72, time 14247, size 175, AAC, raw> 
    128 #00127 <AudioTag at offset 0x00017C30, time 14247, size 176, AAC, raw> 
    129 #00128 <VideoTag at offset 0x00017CEF, time 14325, size 1884, H.264 (interframe), NAL unit> 
    130 #00129 <VideoTag at offset 0x0001845A, time 14367, size 1906, H.264 (interframe), NAL unit> 
    131 #00130 <AudioTag at offset 0x00018BDB, time 14353, size 164, AAC, raw> 
    132 #00131 <AudioTag at offset 0x00018C8E, time 14353, size 181, AAC, raw> 
    133 #00132 <AudioTag at offset 0x00018D52, time 14353, size 171, AAC, raw> 
    134 #00133 <AudioTag at offset 0x00018E0C, time 14353, size 178, AAC, raw> 
    135 #00134 <AudioTag at offset 0x00018ECD, time 14353, size 176, AAC, raw> 
    136 #00135 <VideoTag at offset 0x00018F8C, time 14408, size 1471, H.264 (interframe), NAL unit> 
    137 #00136 <VideoTag at offset 0x0001955A, time 14450, size 1942, H.264 (interframe), NAL unit> 
    138 #00137 <VideoTag at offset 0x00019CFF, time 14492, size 1795, H.264 (interframe), NAL unit> 
    139 #00138 <AudioTag at offset 0x0001A411, time 14460, size 185, AAC, raw> 
    140 #00139 <AudioTag at offset 0x0001A4D9, time 14460, size 166, AAC, raw> 
    141 #00140 <AudioTag at offset 0x0001A58E, time 14460, size 162, AAC, raw> 
    142 #00141 <AudioTag at offset 0x0001A63F, time 14460, size 170, AAC, raw> 
    143 #00142 <AudioTag at offset 0x0001A6F8, time 14460, size 170, AAC, raw> 
    144 #00143 <VideoTag at offset 0x0001A7B1, time 14533, size 1387, H.264 (interframe), NAL unit> 
    145 #00144 <VideoTag at offset 0x0001AD2B, time 14575, size 1799, H.264 (interframe), NAL unit> 
    146 #00145 <AudioTag at offset 0x0001B441, time 14567, size 170, AAC, raw> 
    147 #00146 <AudioTag at offset 0x0001B4FA, time 14567, size 168, AAC, raw> 
    148 #00147 <AudioTag at offset 0x0001B5B1, time 14567, size 154, AAC, raw> 
    149 #00148 <AudioTag at offset 0x0001B65A, time 14567, size 150, AAC, raw> 
    150 #00149 <AudioTag at offset 0x0001B6FF, time 14567, size 155, AAC, raw> 
    151 #00150 <VideoTag at offset 0x0001B7A9, time 14617, size 1872, H.264 (interframe), NAL unit> 
    152 #00151 <VideoTag at offset 0x0001BF08, time 14658, size 1279, H.264 (interframe), NAL unit> 
    153 #00152 <VideoTag at offset 0x0001C416, time 14700, size 1897, H.264 (interframe), NAL unit> 
    154 #00153 <AudioTag at offset 0x0001CB8E, time 14673, size 167, AAC, raw> 
    155 #00154 <AudioTag at offset 0x0001CC44, time 14673, size 155, AAC, raw> 
    156 #00155 <AudioTag at offset 0x0001CCEE, time 14673, size 153, AAC, raw> 
    157 #00156 <AudioTag at offset 0x0001CD96, time 14673, size 161, AAC, raw> 
    158 #00157 <AudioTag at offset 0x0001CE46, time 14673, size 171, AAC, raw> 
    159 #00158 <VideoTag at offset 0x0001CF00, time 14742, size 1688, H.264 (interframe), NAL unit> 
    160 #00159 <VideoTag at offset 0x0001D5A7, time 14783, size 1462, H.264 (interframe), NAL unit> 
    161 #00160 <AudioTag at offset 0x0001DB6C, time 14780, size 151, AAC, raw> 
    162 #00161 <AudioTag at offset 0x0001DC12, time 14780, size 145, AAC, raw> 
    163 #00162 <AudioTag at offset 0x0001DCB2, time 14780, size 138, AAC, raw> 
    164 #00163 <AudioTag at offset 0x0001DD4B, time 14780, size 134, AAC, raw> 
    165 #00164 <AudioTag at offset 0x0001DDE0, time 14780, size 161, AAC, raw> 
    166 #00165 <VideoTag at offset 0x0001DE90, time 14825, size 1790, H.264 (interframe), NAL unit> 
    167 #00166 <VideoTag at offset 0x0001E59D, time 14867, size 1718, H.264 (interframe), NAL unit> 
    168 #00167 <VideoTag at offset 0x0001EC62, time 14908, size 1321, H.264 (interframe), NAL unit> 
    169 #00168 <AudioTag at offset 0x0001F19A, time 14887, size 165, AAC, raw> 
    170 #00169 <AudioTag at offset 0x0001F24E, time 14887, size 174, AAC, raw> 
    171 #00170 <AudioTag at offset 0x0001F30B, time 14887, size 171, AAC, raw> 
    172 #00171 <AudioTag at offset 0x0001F3C5, time 14887, size 177, AAC, raw> 
    173 #00172 <AudioTag at offset 0x0001F485, time 14887, size 172, AAC, raw> 
    174 #00173 <VideoTag at offset 0x0001F540, time 14950, size 2049, H.264 (interframe), NAL unit> 
    175 #00174 <VideoTag at offset 0x0001FD50, time 14992, size 1750, H.264 (interframe), NAL unit> 
    176 #00175 <VideoTag at offset 0x00020435, time 15033, size 1182, H.264 (interframe), NAL unit> 
    177 #00176 <AudioTag at offset 0x000208E2, time 14993, size 177, AAC, raw> 
    178 #00177 <AudioTag at offset 0x000209A2, time 14993, size 171, AAC, raw> 
    179 #00178 <AudioTag at offset 0x00020A5C, time 14993, size 157, AAC, raw> 
    180 #00179 <AudioTag at offset 0x00020B08, time 14993, size 156, AAC, raw> 
    181 #00180 <AudioTag at offset 0x00020BB3, time 14993, size 143, AAC, raw> 
    182 #00181 <VideoTag at offset 0x00020C51, time 15075, size 1807, H.264 (interframe), NAL unit> 
    183 #00182 <VideoTag at offset 0x0002136F, time 15117, size 1823, H.264 (interframe), NAL unit> 
    184 #00183 <AudioTag at offset 0x00021A9D, time 15100, size 140, AAC, raw> 
    185 #00184 <AudioTag at offset 0x00021B38, time 15100, size 142, AAC, raw> 
    186 #00185 <AudioTag at offset 0x00021BD5, time 15100, size 142, AAC, raw> 
    187 #00186 <AudioTag at offset 0x00021C72, time 15100, size 150, AAC, raw> 
    188 #00187 <AudioTag at offset 0x00021D17, time 15100, size 156, AAC, raw> 
    189 #00188 <VideoTag at offset 0x00021DC2, time 15158, size 1176, H.264 (interframe), NAL unit> 
    190 #00189 <VideoTag at offset 0x00022269, time 15200, size 2022, H.264 (interframe), NAL unit> 
    191 #00190 <VideoTag at offset 0x00022A5E, time 15242, size 1736, H.264 (interframe), NAL unit> 
    192 #00191 <AudioTag at offset 0x00023135, time 15207, size 170, AAC, raw> 
    193 #00192 <AudioTag at offset 0x000231EE, time 15207, size 169, AAC, raw> 
    194 #00193 <AudioTag at offset 0x000232A6, time 15207, size 185, AAC, raw> 
    195 #00194 <AudioTag at offset 0x0002336E, time 15207, size 165, AAC, raw> 
    196 #00195 <AudioTag at offset 0x00023422, time 15207, size 168, AAC, raw> 
    197 #00196 <VideoTag at offset 0x000234D9, time 15283, size 1536, H.264 (interframe), NAL unit> 
    198 #00197 <VideoTag at offset 0x00023AE8, time 15325, size 1888, H.264 (interframe), NAL unit> 
    199 #00198 <AudioTag at offset 0x00024257, time 15313, size 175, AAC, raw> 
    200 #00199 <AudioTag at offset 0x00024315, time 15313, size 180, AAC, raw> 
    201 #00200 <AudioTag at offset 0x000243D8, time 15313, size 179, AAC, raw> 
    202 #00201 <AudioTag at offset 0x0002449A, time 15313, size 165, AAC, raw> 
    203 #00202 <AudioTag at offset 0x0002454E, time 15313, size 192, AAC, raw> 
    204 #00203 <VideoTag at offset 0x0002461D, time 15367, size 1857, H.264 (interframe), NAL unit> 
    205 #00204 <VideoTag at offset 0x00024D6D, time 15408, size 1379, H.264 (interframe), NAL unit> 
    206 #00205 <VideoTag at offset 0x000252DF, time 15450, size 1869, H.264 (interframe), NAL unit> 
    207 #00206 <AudioTag at offset 0x00025A3B, time 15420, size 188, AAC, raw> 
    208 #00207 <AudioTag at offset 0x00025B06, time 15420, size 187, AAC, raw> 
    209 #00208 <AudioTag at offset 0x00025BD0, time 15420, size 184, AAC, raw> 
    210 #00209 <AudioTag at offset 0x00025C97, time 15420, size 170, AAC, raw> 
    211 #00210 <AudioTag at offset 0x00025D50, time 15420, size 176, AAC, raw> 
    212 #00211 <VideoTag at offset 0x00025E0F, time 15492, size 1823, H.264 (interframe), NAL unit> 
    213 #00212 <VideoTag at offset 0x0002653D, time 15533, size 1159, H.264 (interframe), NAL unit> 
    214 #00213 <AudioTag at offset 0x000269D3, time 15527, size 181, AAC, raw> 
    215 #00214 <AudioTag at offset 0x00026A97, time 15527, size 183, AAC, raw> 
    216 #00215 <AudioTag at offset 0x00026B5D, time 15527, size 193, AAC, raw> 
    217 #00216 <AudioTag at offset 0x00026C2D, time 15527, size 180, AAC, raw> 
    218 #00217 <AudioTag at offset 0x00026CF0, time 15527, size 166, AAC, raw> 
    219 #00218 <VideoTag at offset 0x00026DA5, time 15575, size 1662, H.264 (interframe), NAL unit> 
    220 #00219 <VideoTag at offset 0x00027432, time 15617, size 1728, H.264 (interframe), NAL unit> 
    221 #00220 <VideoTag at offset 0x00027B01, time 15658, size 1245, H.264 (interframe), NAL unit> 
    222 #00221 <AudioTag at offset 0x00027FED, time 15633, size 185, AAC, raw> 
    223 #00222 <AudioTag at offset 0x000280B5, time 15633, size 177, AAC, raw> 
    224 #00223 <AudioTag at offset 0x00028175, time 15633, size 173, AAC, raw> 
    225 #00224 <AudioTag at offset 0x00028231, time 15633, size 199, AAC, raw> 
    226 #00225 <AudioTag at offset 0x00028307, time 15633, size 186, AAC, raw> 
    227 #00226 <VideoTag at offset 0x000283D0, time 15700, size 2128, H.264 (interframe), NAL unit> 
    228 #00227 <VideoTag at offset 0x00028C2F, time 15742, size 1451, H.264 (interframe), NAL unit> 
    229 #00228 <AudioTag at offset 0x000291E9, time 15740, size 177, AAC, raw> 
    230 #00229 <AudioTag at offset 0x000292A9, time 15740, size 182, AAC, raw> 
    231 #00230 <AudioTag at offset 0x0002936E, time 15740, size 179, AAC, raw> 
    232 #00231 <AudioTag at offset 0x00029430, time 15740, size 188, AAC, raw> 
    233 #00232 <AudioTag at offset 0x000294FB, time 15740, size 199, AAC, raw> 
    234 #00233 <VideoTag at offset 0x000295D1, time 15783, size 1869, H.264 (interframe), NAL unit> 
    235 #00234 <VideoTag at offset 0x00029D2D, time 15825, size 1721, H.264 (interframe), NAL unit> 
    236 #00235 <VideoTag at offset 0x0002A3F5, time 15867, size 1361, H.264 (interframe), NAL unit> 
    237 #00236 <AudioTag at offset 0x0002A955, time 15847, size 192, AAC, raw> 
    238 #00237 <AudioTag at offset 0x0002AA24, time 15847, size 180, AAC, raw> 
    239 #00238 <AudioTag at offset 0x0002AAE7, time 15847, size 177, AAC, raw> 
    240 #00239 <AudioTag at offset 0x0002ABA7, time 15847, size 177, AAC, raw> 
    241 #00240 <AudioTag at offset 0x0002AC67, time 15847, size 177, AAC, raw> 
    242 #00241 <VideoTag at offset 0x0002AD27, time 15908, size 1867, H.264 (interframe), NAL unit> 
    243 #00242 <VideoTag at offset 0x0002B481, time 15950, size 1569, H.264 (interframe), NAL unit> 
    244 #00243 <VideoTag at offset 0x0002BAB1, time 15992, size 1838, H.264 (interframe), NAL unit> 
    245 #00244 <AudioTag at offset 0x0002C1EE, time 15953, size 165, AAC, raw> 
    246 #00245 <AudioTag at offset 0x0002C2A2, time 15953, size 184, AAC, raw> 
    247 #00246 <AudioTag at offset 0x0002C369, time 15953, size 185, AAC, raw> 
    248 #00247 <AudioTag at offset 0x0002C431, time 15953, size 181, AAC, raw> 
    249 #00248 <AudioTag at offset 0x0002C4F5, time 15953, size 189, AAC, raw> 
    250 #00249 <VideoTag at offset 0x0002C5C1, time 16033, size 1632, H.264 (interframe), NAL unit> 
    251 #00250 <VideoTag at offset 0x0002CC30, time 16075, size 1778, H.264 (interframe), NAL unit> 
    252 #00251 <AudioTag at offset 0x0002D331, time 16060, size 188, AAC, raw> 
    253 #00252 <AudioTag at offset 0x0002D3FC, time 16060, size 191, AAC, raw> 
    254 #00253 <AudioTag at offset 0x0002D4CA, time 16060, size 167, AAC, raw> 
    255 #00254 <AudioTag at offset 0x0002D580, time 16060, size 174, AAC, raw> 
    256 #00255 <AudioTag at offset 0x0002D63D, time 16060, size 176, AAC, raw> 
    257 #00256 <VideoTag at offset 0x0002D6FC, time 16117, size 1867, H.264 (interframe), NAL unit> 
    258 #00257 <VideoTag at offset 0x0002DE56, time 16158, size 1732, H.264 (interframe), NAL unit> 
    259 #00258 <VideoTag at offset 0x0002E529, time 16200, size 1936, H.264 (interframe), NAL unit> 
    260 #00259 <AudioTag at offset 0x0002ECC8, time 16167, size 193, AAC, raw> 
    261 #00260 <AudioTag at offset 0x0002ED98, time 16167, size 182, AAC, raw> 
    262 #00261 <AudioTag at offset 0x0002EE5D, time 16167, size 174, AAC, raw> 
    263 #00262 <AudioTag at offset 0x0002EF1A, time 16167, size 178, AAC, raw> 
    264 #00263 <AudioTag at offset 0x0002EFDB, time 16167, size 165, AAC, raw> 
    265 #00264 <VideoTag at offset 0x0002F08F, time 16242, size 1326, H.264 (interframe), NAL unit> 
    266 #00265 <VideoTag at offset 0x0002F5CC, time 16283, size 1913, H.264 (interframe), NAL unit> 
    267 #00266 <AudioTag at offset 0x0002FD54, time 16273, size 183, AAC, raw> 
    268 #00267 <AudioTag at offset 0x0002FE1A, time 16273, size 184, AAC, raw> 
    269 #00268 <AudioTag at offset 0x0002FEE1, time 16273, size 185, AAC, raw> 
    270 #00269 <AudioTag at offset 0x0002FFA9, time 16273, size 185, AAC, raw> 
    271 #00270 <AudioTag at offset 0x00030071, time 16273, size 169, AAC, raw> 
    272 #00271 <VideoTag at offset 0x00030129, time 16325, size 1854, H.264 (interframe), NAL unit> 
    273 #00272 <VideoTag at offset 0x00030876, time 16367, size 1242, H.264 (interframe), NAL unit> 
    274 #00273 <VideoTag at offset 0x00030D5F, time 16408, size 1890, H.264 (interframe), NAL unit> 
    275 #00274 <AudioTag at offset 0x000314D0, time 16380, size 172, AAC, raw> 
    276 #00275 <AudioTag at offset 0x0003158B, time 16380, size 193, AAC, raw> 
    277 #00276 <VideoTag at offset 0x0003165B, time 16450, size 1495, H.264 (interframe), NAL unit> 
    278 #00277 <VideoTag at offset 0x00031C41, time 16492, size 1648, H.264 (interframe), NAL unit> 
     1#00001 <AudioTag at offset 0x0000000D, time 0, size 4, AAC, sequence header> 
     2#00002 <AudioTag at offset 0x00000020, time 0, size 192, AAC, raw> 
     3#00003 <AudioTag at offset 0x000000EF, time 0, size 173, AAC, raw> 
     4#00004 <AudioTag at offset 0x000001AB, time 0, size 166, AAC, raw> 
     5#00005 <AudioTag at offset 0x00000260, time 0, size 170, AAC, raw> 
     6#00006 <AudioTag at offset 0x00000319, time 0, size 168, AAC, raw> 
     7#00007 <AudioTag at offset 0x000003D0, time 107, size 172, AAC, raw> 
     8#00008 <AudioTag at offset 0x0000048B, time 107, size 166, AAC, raw> 
     9#00009 <AudioTag at offset 0x00000540, time 107, size 171, AAC, raw> 
     10#00010 <AudioTag at offset 0x000005FA, time 107, size 172, AAC, raw> 
     11#00011 <AudioTag at offset 0x000006B5, time 107, size 171, AAC, raw> 
     12#00012 <VideoTag at offset 0x0000076F, time 118, size 78, H.264 (keyframe), sequence header> 
     13#00013 <VideoTag at offset 0x000007CC, time 118, size 19780, H.264 (keyframe), NAL unit> 
     14#00014 <VideoTag at offset 0x0000551F, time 160, size 714, H.264 (interframe), NAL unit> 
     15#00015 <VideoTag at offset 0x000057F8, time 202, size 1089, H.264 (interframe), NAL unit> 
     16#00016 <AudioTag at offset 0x00005C48, time 213, size 180, AAC, raw> 
     17#00017 <AudioTag at offset 0x00005D0B, time 213, size 173, AAC, raw> 
     18#00018 <AudioTag at offset 0x00005DC7, time 213, size 173, AAC, raw> 
     19#00019 <AudioTag at offset 0x00005E83, time 213, size 176, AAC, raw> 
     20#00020 <AudioTag at offset 0x00005F42, time 213, size 166, AAC, raw> 
     21#00021 <VideoTag at offset 0x00005FF7, time 243, size 1609, H.264 (interframe), NAL unit> 
     22#00022 <VideoTag at offset 0x0000664F, time 285, size 1920, H.264 (interframe), NAL unit> 
     23#00023 <AudioTag at offset 0x00006DDE, time 320, size 167, AAC, raw> 
     24#00024 <AudioTag at offset 0x00006E94, time 320, size 188, AAC, raw> 
     25#00025 <AudioTag at offset 0x00006F5F, time 320, size 184, AAC, raw> 
     26#00026 <AudioTag at offset 0x00007026, time 320, size 186, AAC, raw> 
     27#00027 <AudioTag at offset 0x000070EF, time 320, size 183, AAC, raw> 
     28#00028 <VideoTag at offset 0x000071B5, time 327, size 2166, H.264 (interframe), NAL unit> 
     29#00029 <VideoTag at offset 0x00007A3A, time 368, size 787, H.264 (interframe), NAL unit> 
     30#00030 <VideoTag at offset 0x00007D5C, time 410, size 1282, H.264 (interframe), NAL unit> 
     31#00031 <AudioTag at offset 0x0000826D, time 427, size 172, AAC, raw> 
     32#00032 <AudioTag at offset 0x00008328, time 427, size 184, AAC, raw> 
     33#00033 <AudioTag at offset 0x000083EF, time 427, size 176, AAC, raw> 
     34#00034 <AudioTag at offset 0x000084AE, time 427, size 179, AAC, raw> 
     35#00035 <AudioTag at offset 0x00008570, time 427, size 177, AAC, raw> 
     36#00036 <VideoTag at offset 0x00008630, time 452, size 1526, H.264 (interframe), NAL unit> 
     37#00037 <VideoTag at offset 0x00008C35, time 493, size 1246, H.264 (interframe), NAL unit> 
     38#00038 <AudioTag at offset 0x00009122, time 533, size 178, AAC, raw> 
     39#00039 <AudioTag at offset 0x000091E3, time 533, size 176, AAC, raw> 
     40#00040 <AudioTag at offset 0x000092A2, time 533, size 180, AAC, raw> 
     41#00041 <AudioTag at offset 0x00009365, time 533, size 170, AAC, raw> 
     42#00042 <AudioTag at offset 0x0000941E, time 533, size 176, AAC, raw> 
     43#00043 <VideoTag at offset 0x000094DD, time 535, size 1587, H.264 (interframe), NAL unit> 
     44#00044 <VideoTag at offset 0x00009B1F, time 577, size 1540, H.264 (interframe), NAL unit> 
     45#00045 <VideoTag at offset 0x0000A132, time 618, size 1354, H.264 (interframe), NAL unit> 
     46#00046 <AudioTag at offset 0x0000A68B, time 640, size 179, AAC, raw> 
     47#00047 <AudioTag at offset 0x0000A74D, time 640, size 176, AAC, raw> 
     48#00048 <AudioTag at offset 0x0000A80C, time 640, size 185, AAC, raw> 
     49#00049 <AudioTag at offset 0x0000A8D4, time 640, size 184, AAC, raw> 
     50#00050 <AudioTag at offset 0x0000A99B, time 640, size 170, AAC, raw> 
     51#00051 <VideoTag at offset 0x0000AA54, time 660, size 1811, H.264 (interframe), NAL unit> 
     52#00052 <VideoTag at offset 0x0000B176, time 702, size 1709, H.264 (interframe), NAL unit> 
     53#00053 <VideoTag at offset 0x0000B832, time 743, size 1261, H.264 (interframe), NAL unit> 
     54#00054 <AudioTag at offset 0x0000BD2E, time 747, size 186, AAC, raw> 
     55#00055 <AudioTag at offset 0x0000BDF7, time 747, size 177, AAC, raw> 
     56#00056 <AudioTag at offset 0x0000BEB7, time 747, size 165, AAC, raw> 
     57#00057 <AudioTag at offset 0x0000BF6B, time 747, size 166, AAC, raw> 
     58#00058 <AudioTag at offset 0x0000C020, time 747, size 166, AAC, raw> 
     59#00059 <VideoTag at offset 0x0000C0D5, time 785, size 1726, H.264 (interframe), NAL unit> 
     60#00060 <VideoTag at offset 0x0000C7A2, time 827, size 1762, H.264 (interframe), NAL unit> 
     61#00061 <AudioTag at offset 0x0000CE93, time 853, size 146, AAC, raw> 
     62#00062 <AudioTag at offset 0x0000CF34, time 853, size 180, AAC, raw> 
     63#00063 <AudioTag at offset 0x0000CFF7, time 853, size 175, AAC, raw> 
     64#00064 <AudioTag at offset 0x0000D0B5, time 853, size 171, AAC, raw> 
     65#00065 <AudioTag at offset 0x0000D16F, time 853, size 157, AAC, raw> 
     66#00066 <VideoTag at offset 0x0000D21B, time 868, size 1337, H.264 (interframe), NAL unit> 
     67#00067 <VideoTag at offset 0x0000D763, time 910, size 1701, H.264 (interframe), NAL unit> 
     68#00068 <VideoTag at offset 0x0000DE17, time 952, size 1801, H.264 (interframe), NAL unit> 
     69#00069 <AudioTag at offset 0x0000E52F, time 960, size 176, AAC, raw> 
     70#00070 <AudioTag at offset 0x0000E5EE, time 960, size 170, AAC, raw> 
     71#00071 <AudioTag at offset 0x0000E6A7, time 960, size 177, AAC, raw> 
     72#00072 <AudioTag at offset 0x0000E767, time 960, size 178, AAC, raw> 
     73#00073 <AudioTag at offset 0x0000E828, time 960, size 174, AAC, raw> 
     74#00074 <VideoTag at offset 0x0000E8E5, time 993, size 1297, H.264 (interframe), NAL unit> 
     75#00075 <VideoTag at offset 0x0000EE05, time 1035, size 1756, H.264 (interframe), NAL unit> 
     76#00076 <AudioTag at offset 0x0000F4F0, time 1067, size 181, AAC, raw> 
     77#00077 <AudioTag at offset 0x0000F5B4, time 1067, size 191, AAC, raw> 
     78#00078 <AudioTag at offset 0x0000F682, time 1067, size 164, AAC, raw> 
     79#00079 <AudioTag at offset 0x0000F735, time 1067, size 173, AAC, raw> 
     80#00080 <AudioTag at offset 0x0000F7F1, time 1067, size 170, AAC, raw> 
     81#00081 <VideoTag at offset 0x0000F8AA, time 1077, size 1689, H.264 (interframe), NAL unit> 
     82#00082 <VideoTag at offset 0x0000FF52, time 1118, size 1303, H.264 (interframe), NAL unit> 
     83#00083 <VideoTag at offset 0x00010478, time 1160, size 1890, H.264 (interframe), NAL unit> 
     84#00084 <AudioTag at offset 0x00010BE9, time 1173, size 145, AAC, raw> 
     85#00085 <AudioTag at offset 0x00010C89, time 1173, size 155, AAC, raw> 
     86#00086 <AudioTag at offset 0x00010D33, time 1173, size 162, AAC, raw> 
     87#00087 <AudioTag at offset 0x00010DE4, time 1173, size 150, AAC, raw> 
     88#00088 <AudioTag at offset 0x00010E89, time 1173, size 169, AAC, raw> 
     89#00089 <VideoTag at offset 0x00010F41, time 1202, size 1724, H.264 (interframe), NAL unit> 
     90#00090 <VideoTag at offset 0x0001160C, time 1243, size 1441, H.264 (interframe), NAL unit> 
     91#00091 <AudioTag at offset 0x00011BBC, time 1280, size 166, AAC, raw> 
     92#00092 <AudioTag at offset 0x00011C71, time 1280, size 176, AAC, raw> 
     93#00093 <AudioTag at offset 0x00011D30, time 1280, size 164, AAC, raw> 
     94#00094 <AudioTag at offset 0x00011DE3, time 1280, size 167, AAC, raw> 
     95#00095 <AudioTag at offset 0x00011E99, time 1280, size 155, AAC, raw> 
     96#00096 <VideoTag at offset 0x00011F43, time 1285, size 1799, H.264 (interframe), NAL unit> 
     97#00097 <VideoTag at offset 0x00012659, time 1327, size 1941, H.264 (interframe), NAL unit> 
     98#00098 <VideoTag at offset 0x00012DFD, time 1368, size 1279, H.264 (interframe), NAL unit> 
     99#00099 <AudioTag at offset 0x0001330B, time 1387, size 146, AAC, raw> 
     100#00100 <AudioTag at offset 0x000133AC, time 1387, size 171, AAC, raw> 
     101#00101 <AudioTag at offset 0x00013466, time 1387, size 176, AAC, raw> 
     102#00102 <AudioTag at offset 0x00013525, time 1387, size 167, AAC, raw> 
     103#00103 <AudioTag at offset 0x000135DB, time 1387, size 145, AAC, raw> 
     104#00104 <VideoTag at offset 0x0001367B, time 1410, size 1918, H.264 (interframe), NAL unit> 
     105#00105 <VideoTag at offset 0x00013E08, time 1452, size 1710, H.264 (interframe), NAL unit> 
     106#00106 <VideoTag at offset 0x000144C5, time 1493, size 1231, H.264 (interframe), NAL unit> 
     107#00107 <AudioTag at offset 0x000149A3, time 1493, size 164, AAC, raw> 
     108#00108 <AudioTag at offset 0x00014A56, time 1493, size 180, AAC, raw> 
     109#00109 <AudioTag at offset 0x00014B19, time 1493, size 165, AAC, raw> 
     110#00110 <AudioTag at offset 0x00014BCD, time 1493, size 153, AAC, raw> 
     111#00111 <AudioTag at offset 0x00014C75, time 1493, size 167, AAC, raw> 
     112#00112 <VideoTag at offset 0x00014D2B, time 1535, size 1912, H.264 (interframe), NAL unit> 
     113#00113 <VideoTag at offset 0x000154B2, time 1577, size 1911, H.264 (interframe), NAL unit> 
     114#00114 <AudioTag at offset 0x00015C38, time 1600, size 163, AAC, raw> 
     115#00115 <AudioTag at offset 0x00015CEA, time 1600, size 169, AAC, raw> 
     116#00116 <AudioTag at offset 0x00015DA2, time 1600, size 173, AAC, raw> 
     117#00117 <AudioTag at offset 0x00015E5E, time 1600, size 176, AAC, raw> 
     118#00118 <AudioTag at offset 0x00015F1D, time 1600, size 164, AAC, raw> 
     119#00119 <VideoTag at offset 0x00015FD0, time 1618, size 1295, H.264 (interframe), NAL unit> 
     120#00120 <VideoTag at offset 0x000164EE, time 1660, size 2017, H.264 (interframe), NAL unit> 
     121#00121 <VideoTag at offset 0x00016CDE, time 1702, size 1885, H.264 (interframe), NAL unit> 
     122#00122 <AudioTag at offset 0x0001744A, time 1707, size 176, AAC, raw> 
     123#00123 <AudioTag at offset 0x00017509, time 1707, size 186, AAC, raw> 
     124#00124 <AudioTag at offset 0x000175D2, time 1707, size 168, AAC, raw> 
     125#00125 <AudioTag at offset 0x00017689, time 1707, size 179, AAC, raw> 
     126#00126 <AudioTag at offset 0x0001774B, time 1707, size 176, AAC, raw> 
     127#00127 <VideoTag at offset 0x0001780A, time 1743, size 1298, H.264 (interframe), NAL unit> 
     128#00128 <VideoTag at offset 0x00017D2B, time 1785, size 1884, H.264 (interframe), NAL unit> 
     129#00129 <AudioTag at offset 0x00018496, time 1813, size 172, AAC, raw> 
     130#00130 <AudioTag at offset 0x00018551, time 1813, size 165, AAC, raw> 
     131#00131 <AudioTag at offset 0x00018605, time 1813, size 182, AAC, raw> 
     132#00132 <AudioTag at offset 0x000186CA, time 1813, size 176, AAC, raw> 
     133#00133 <AudioTag at offset 0x00018789, time 1813, size 179, AAC, raw> 
     134#00134 <VideoTag at offset 0x0001884B, time 1827, size 1906, H.264 (interframe), NAL unit> 
     135#00135 <VideoTag at offset 0x00018FCC, time 1868, size 1471, H.264 (interframe), NAL unit> 
     136#00136 <VideoTag at offset 0x0001959A, time 1910, size 1942, H.264 (interframe), NAL unit> 
     137#00137 <AudioTag at offset 0x00019D3F, time 1920, size 167, AAC, raw> 
     138#00138 <AudioTag at offset 0x00019DF5, time 1920, size 186, AAC, raw> 
     139#00139 <AudioTag at offset 0x00019EBE, time 1920, size 171, AAC, raw> 
     140#00140 <AudioTag at offset 0x00019F78, time 1920, size 163, AAC, raw> 
     141#00141 <AudioTag at offset 0x0001A02A, time 1920, size 170, AAC, raw> 
     142#00142 <VideoTag at offset 0x0001A0E3, time 1952, size 1795, H.264 (interframe), NAL unit> 
     143#00143 <VideoTag at offset 0x0001A7F5, time 1993, size 1387, H.264 (interframe), NAL unit> 
     144#00144 <AudioTag at offset 0x0001AD6F, time 2027, size 171, AAC, raw> 
     145#00145 <AudioTag at offset 0x0001AE29, time 2027, size 151, AAC, raw> 
     146#00146 <AudioTag at offset 0x0001AECF, time 2027, size 169, AAC, raw> 
     147#00147 <AudioTag at offset 0x0001AF87, time 2027, size 155, AAC, raw> 
     148#00148 <AudioTag at offset 0x0001B031, time 2027, size 155, AAC, raw> 
     149#00149 <VideoTag at offset 0x0001B0DB, time 2035, size 1799, H.264 (interframe), NAL unit> 
     150#00150 <VideoTag at offset 0x0001B7F1, time 2077, size 1872, H.264 (interframe), NAL unit> 
     151#00151 <VideoTag at offset 0x0001BF50, time 2118, size 1279, H.264 (interframe), NAL unit> 
     152#00152 <AudioTag at offset 0x0001C45E, time 2133, size 168, AAC, raw> 
     153#00153 <AudioTag at offset 0x0001C515, time 2133, size 162, AAC, raw> 
     154#00154 <AudioTag at offset 0x0001C5C6, time 2133, size 156, AAC, raw> 
     155#00155 <AudioTag at offset 0x0001C671, time 2133, size 154, AAC, raw> 
     156#00156 <AudioTag at offset 0x0001C71A, time 2133, size 171, AAC, raw> 
     157#00157 <VideoTag at offset 0x0001C7D4, time 2160, size 1897, H.264 (interframe), NAL unit> 
     158#00158 <VideoTag at offset 0x0001CF4C, time 2202, size 1688, H.264 (interframe), NAL unit> 
     159#00159 <AudioTag at offset 0x0001D5F3, time 2240, size 152, AAC, raw> 
     160#00160 <AudioTag at offset 0x0001D69A, time 2240, size 135, AAC, raw> 
     161#00161 <AudioTag at offset 0x0001D730, time 2240, size 146, AAC, raw> 
     162#00162 <AudioTag at offset 0x0001D7D1, time 2240, size 139, AAC, raw> 
     163#00163 <AudioTag at offset 0x0001D86B, time 2240, size 161, AAC, raw> 
     164#00164 <VideoTag at offset 0x0001D91B, time 2243, size 1462, H.264 (interframe), NAL unit> 
     165#00165 <VideoTag at offset 0x0001DEE0, time 2285, size 1790, H.264 (interframe), NAL unit> 
     166#00166 <VideoTag at offset 0x0001E5ED, time 2327, size 1718, H.264 (interframe), NAL unit> 
     167#00167 <AudioTag at offset 0x0001ECB2, time 2347, size 172, AAC, raw> 
     168#00168 <AudioTag at offset 0x0001ED6D, time 2347, size 166, AAC, raw> 
     169#00169 <AudioTag at offset 0x0001EE22, time 2347, size 175, AAC, raw> 
     170#00170 <AudioTag at offset 0x0001EEE0, time 2347, size 172, AAC, raw> 
     171#00171 <AudioTag at offset 0x0001EF9B, time 2347, size 178, AAC, raw> 
     172#00172 <VideoTag at offset 0x0001F05C, time 2368, size 1321, H.264 (interframe), NAL unit> 
     173#00173 <VideoTag at offset 0x0001F594, time 2410, size 2049, H.264 (interframe), NAL unit> 
     174#00174 <VideoTag at offset 0x0001FDA4, time 2452, size 1750, H.264 (interframe), NAL unit> 
     175#00175 <AudioTag at offset 0x00020489, time 2453, size 143, AAC, raw> 
     176#00176 <AudioTag at offset 0x00020527, time 2453, size 178, AAC, raw> 
     177#00177 <AudioTag at offset 0x000205E8, time 2453, size 172, AAC, raw> 
     178#00178 <AudioTag at offset 0x000206A3, time 2453, size 158, AAC, raw> 
     179#00179 <AudioTag at offset 0x00020750, time 2453, size 157, AAC, raw> 
     180#00180 <VideoTag at offset 0x000207FC, time 2493, size 1182, H.264 (interframe), NAL unit> 
     181#00181 <VideoTag at offset 0x00020CA9, time 2535, size 1807, H.264 (interframe), NAL unit> 
     182#00182 <AudioTag at offset 0x000213C7, time 2560, size 143, AAC, raw> 
     183#00183 <AudioTag at offset 0x00021465, time 2560, size 141, AAC, raw> 
     184#00184 <AudioTag at offset 0x00021501, time 2560, size 151, AAC, raw> 
     185#00185 <AudioTag at offset 0x000215A7, time 2560, size 143, AAC, raw> 
     186#00186 <AudioTag at offset 0x00021645, time 2560, size 156, AAC, raw> 
     187#00187 <VideoTag at offset 0x000216F0, time 2577, size 1823, H.264 (interframe), NAL unit> 
     188#00188 <VideoTag at offset 0x00021E1E, time 2618, size 1176, H.264 (interframe), NAL unit> 
     189#00189 <VideoTag at offset 0x000222C5, time 2660, size 2022, H.264 (interframe), NAL unit> 
     190#00190 <AudioTag at offset 0x00022ABA, time 2667, size 168, AAC, raw> 
     191#00191 <AudioTag at offset 0x00022B71, time 2667, size 171, AAC, raw> 
     192#00192 <AudioTag at offset 0x00022C2B, time 2667, size 170, AAC, raw> 
     193#00193 <AudioTag at offset 0x00022CE4, time 2667, size 186, AAC, raw> 
     194#00194 <AudioTag at offset 0x00022DAD, time 2667, size 166, AAC, raw> 
     195#00195 <VideoTag at offset 0x00022E62, time 2702, size 1736, H.264 (interframe), NAL unit> 
     196#00196 <VideoTag at offset 0x00023539, time 2743, size 1536, H.264 (interframe), NAL unit> 
     197#00197 <AudioTag at offset 0x00023B48, time 2773, size 176, AAC, raw> 
     198#00198 <AudioTag at offset 0x00023C07, time 2773, size 192, AAC, raw> 
     199#00199 <AudioTag at offset 0x00023CD6, time 2773, size 181, AAC, raw> 
     200#00200 <AudioTag at offset 0x00023D9A, time 2773, size 180, AAC, raw> 
     201#00201 <AudioTag at offset 0x00023E5D, time 2773, size 166, AAC, raw> 
     202#00202 <VideoTag at offset 0x00023F12, time 2785, size 1888, H.264 (interframe), NAL unit> 
     203#00203 <VideoTag at offset 0x00024681, time 2827, size 1857, H.264 (interframe), NAL unit> 
     204#00204 <VideoTag at offset 0x00024DD1, time 2868, size 1379, H.264 (interframe), NAL unit> 
     205#00205 <AudioTag at offset 0x00025343, time 2880, size 185, AAC, raw> 
     206#00206 <AudioTag at offset 0x0002540B, time 2880, size 189, AAC, raw> 
     207#00207 <AudioTag at offset 0x000254D7, time 2880, size 188, AAC, raw> 
     208#00208 <AudioTag at offset 0x000255A2, time 2880, size 176, AAC, raw> 
     209#00209 <AudioTag at offset 0x00025661, time 2880, size 171, AAC, raw> 
     210#00210 <VideoTag at offset 0x0002571B, time 2910, size 1869, H.264 (interframe), NAL unit> 
     211#00211 <VideoTag at offset 0x00025E77, time 2952, size 1823, H.264 (interframe), NAL unit> 
     212#00212 <AudioTag at offset 0x000265A5, time 2987, size 166, AAC, raw> 
     213#00213 <AudioTag at offset 0x0002665A, time 2987, size 182, AAC, raw> 
     214#00214 <AudioTag at offset 0x0002671F, time 2987, size 184, AAC, raw> 
     215#00215 <AudioTag at offset 0x000267E6, time 2987, size 194, AAC, raw> 
     216#00216 <AudioTag at offset 0x000268B7, time 2987, size 181, AAC, raw> 
     217#00217 <VideoTag at offset 0x0002697B, time 2993, size 1159, H.264 (interframe), NAL unit> 
     218#00218 <VideoTag at offset 0x00026E11, time 3035, size 1662, H.264 (interframe), NAL unit> 
     219#00219 <VideoTag at offset 0x0002749E, time 3077, size 1728, H.264 (interframe), NAL unit> 
     220#00220 <AudioTag at offset 0x00027B6D, time 3093, size 174, AAC, raw> 
     221#00221 <AudioTag at offset 0x00027C2A, time 3093, size 186, AAC, raw> 
     222#00222 <AudioTag at offset 0x00027CF3, time 3093, size 200, AAC, raw> 
     223#00223 <AudioTag at offset 0x00027DCA, time 3093, size 178, AAC, raw> 
     224#00224 <AudioTag at offset 0x00027E8B, time 3093, size 186, AAC, raw> 
     225#00225 <VideoTag at offset 0x00027F54, time 3118, size 1245, H.264 (interframe), NAL unit> 
     226#00226 <VideoTag at offset 0x00028440, time 3160, size 2128, H.264 (interframe), NAL unit> 
     227#00227 <AudioTag at offset 0x00028C9F, time 3200, size 178, AAC, raw> 
     228#00228 <AudioTag at offset 0x00028D60, time 3200, size 189, AAC, raw> 
     229#00229 <AudioTag at offset 0x00028E2C, time 3200, size 183, AAC, raw> 
     230#00230 <AudioTag at offset 0x00028EF2, time 3200, size 180, AAC, raw> 
     231#00231 <AudioTag at offset 0x00028FB5, time 3200, size 199, AAC, raw> 
     232#00232 <VideoTag at offset 0x0002908B, time 3202, size 1451, H.264 (interframe), NAL unit> 
     233#00233 <VideoTag at offset 0x00029645, time 3243, size 1869, H.264 (interframe), NAL unit> 
     234#00234 <VideoTag at offset 0x00029DA1, time 3285, size 1721, H.264 (interframe), NAL unit> 
     235#00235 <AudioTag at offset 0x0002A469, time 3307, size 178, AAC, raw> 
     236#00236 <AudioTag at offset 0x0002A52A, time 3307, size 193, AAC, raw> 
     237#00237 <AudioTag at offset 0x0002A5FA, time 3307, size 181, AAC, raw> 
     238#00238 <AudioTag at offset 0x0002A6BE, time 3307, size 177, AAC, raw> 
     239#00239 <AudioTag at offset 0x0002A77E, time 3307, size 178, AAC, raw> 
     240#00240 <VideoTag at offset 0x0002A83F, time 3327, size 1361, H.264 (interframe), NAL unit> 
     241#00241 <VideoTag at offset 0x0002AD9F, time 3368, size 1867, H.264 (interframe), NAL unit> 
     242#00242 <VideoTag at offset 0x0002B4F9, time 3410, size 1569, H.264 (interframe), NAL unit> 
     243#00243 <AudioTag at offset 0x0002BB29, time 3413, size 189, AAC, raw> 
     244#00244 <AudioTag at offset 0x0002BBF5, time 3413, size 166, AAC, raw> 
     245#00245 <AudioTag at offset 0x0002BCAA, time 3413, size 185, AAC, raw> 
     246#00246 <AudioTag at offset 0x0002BD72, time 3413, size 186, AAC, raw> 
     247#00247 <AudioTag at offset 0x0002BE3B, time 3413, size 182, AAC, raw> 
     248#00248 <VideoTag at offset 0x0002BF00, time 3452, size 1838, H.264 (interframe), NAL unit> 
     249#00249 <VideoTag at offset 0x0002C63D, time 3493, size 1632, H.264 (interframe), NAL unit> 
     250#00250 <AudioTag at offset 0x0002CCAC, time 3520, size 168, AAC, raw> 
     251#00251 <AudioTag at offset 0x0002CD63, time 3520, size 189, AAC, raw> 
     252#00252 <AudioTag at offset 0x0002CE2F, time 3520, size 192, AAC, raw> 
     253#00253 <AudioTag at offset 0x0002CEFE, time 3520, size 176, AAC, raw> 
     254#00254 <AudioTag at offset 0x0002CFBD, time 3520, size 175, AAC, raw> 
     255#00255 <VideoTag at offset 0x0002D07B, time 3535, size 1778, H.264 (interframe), NAL unit> 
     256#00256 <VideoTag at offset 0x0002D77C, time 3577, size 1867, H.264 (interframe), NAL unit> 
     257#00257 <VideoTag at offset 0x0002DED6, time 3618, size 1732, H.264 (interframe), NAL unit> 
     258#00258 <AudioTag at offset 0x0002E5A9, time 3627, size 165, AAC, raw> 
     259#00259 <AudioTag at offset 0x0002E65D, time 3627, size 194, AAC, raw> 
     260#00260 <AudioTag at offset 0x0002E72E, time 3627, size 183, AAC, raw> 
     261#00261 <AudioTag at offset 0x0002E7F4, time 3627, size 175, AAC, raw> 
     262#00262 <AudioTag at offset 0x0002E8B2, time 3627, size 179, AAC, raw> 
     263#00263 <VideoTag at offset 0x0002E974, time 3660, size 1936, H.264 (interframe), NAL unit> 
     264#00264 <VideoTag at offset 0x0002F113, time 3702, size 1326, H.264 (interframe), NAL unit> 
     265#00265 <AudioTag at offset 0x0002F650, time 3733, size 169, AAC, raw> 
     266#00266 <AudioTag at offset 0x0002F708, time 3733, size 184, AAC, raw> 
     267#00267 <AudioTag at offset 0x0002F7CF, time 3733, size 185, AAC, raw> 
     268#00268 <AudioTag at offset 0x0002F897, time 3733, size 186, AAC, raw> 
     269#00269 <AudioTag at offset 0x0002F960, time 3733, size 186, AAC, raw> 
     270#00270 <VideoTag at offset 0x0002FA29, time 3743, size 1913, H.264 (interframe), NAL unit> 
     271#00271 <VideoTag at offset 0x000301B1, time 3785, size 1854, H.264 (interframe), NAL unit> 
     272#00272 <VideoTag at offset 0x000308FE, time 3827, size 1242, H.264 (interframe), NAL unit> 
     273#00273 <AudioTag at offset 0x00030DE7, time 3840, size 173, AAC, raw> 
     274#00274 <AudioTag at offset 0x00030EA3, time 3840, size 193, AAC, raw> 
     275#00275 <VideoTag at offset 0x00030F73, time 3868, size 1890, H.264 (interframe), NAL unit> 
     276#00276 <VideoTag at offset 0x000316E4, time 3910, size 1495, H.264 (interframe), NAL unit> 
     277#00277 <VideoTag at offset 0x00031CCA, time 3952, size 1648, H.264 (interframe), NAL unit> 
  • providers/adaptive/test/assets/wowza.txt

    r1462 r1476  
    1 === `wowza.flv' === 
    2 #00001 <VideoTag at offset 0x0000000D, time 22500, size 46, H.264 (keyframe), sequence header> 
    3 #00002 <VideoTag at offset 0x0000004A, time 22500, size 13255, H.264 (keyframe), NAL unit> 
    4 #00003 <AudioTag at offset 0x00003420, time 22485, size 9, AAC, sequence header> 
    5 #00004 <AudioTag at offset 0x00003438, time 22485, size 241, AAC, raw> 
    6 #00005 <AudioTag at offset 0x00003538, time 22485, size 250, AAC, raw> 
    7 #00006 <AudioTag at offset 0x00003641, time 22485, size 247, AAC, raw> 
    8 #00007 <VideoTag at offset 0x00003747, time 22542, size 161, H.264 (interframe), NAL unit> 
    9 #00008 <VideoTag at offset 0x000037F7, time 22583, size 116, H.264 (interframe), NAL unit> 
    10 #00009 <AudioTag at offset 0x0000387A, time 22549, size 228, AAC, raw> 
    11 #00010 <AudioTag at offset 0x0000396D, time 22549, size 262, AAC, raw> 
    12 #00011 <AudioTag at offset 0x00003A82, time 22549, size 250, AAC, raw> 
    13 #00012 <VideoTag at offset 0x00003B8B, time 22625, size 114, H.264 (interframe), NAL unit> 
    14 #00013 <AudioTag at offset 0x00003C0C, time 22613, size 232, AAC, raw> 
    15 #00014 <AudioTag at offset 0x00003D03, time 22613, size 241, AAC, raw> 
    16 #00015 <AudioTag at offset 0x00003E03, time 22613, size 234, AAC, raw> 
    17 #00016 <VideoTag at offset 0x00003EFC, time 22667, size 81, H.264 (interframe), NAL unit> 
    18 #00017 <VideoTag at offset 0x00003F5C, time 22708, size 82, H.264 (interframe), NAL unit> 
    19 #00018 <AudioTag at offset 0x00003FBD, time 22677, size 259, AAC, raw> 
    20 #00019 <AudioTag at offset 0x000040CF, time 22677, size 256, AAC, raw> 
    21 #00020 <AudioTag at offset 0x000041DE, time 22677, size 242, AAC, raw> 
    22 #00021 <VideoTag at offset 0x000042DF, time 22750, size 104, H.264 (interframe), NAL unit> 
    23 #00022 <AudioTag at offset 0x00004356, time 22741, size 247, AAC, raw> 
    24 #00023 <AudioTag at offset 0x0000445C, time 22741, size 248, AAC, raw> 
    25 #00024 <AudioTag at offset 0x00004563, time 22741, size 257, AAC, raw> 
    26 #00025 <VideoTag at offset 0x00004673, time 22792, size 100, H.264 (interframe), NAL unit> 
    27 #00026 <VideoTag at offset 0x000046E6, time 22833, size 37, H.264 (interframe), NAL unit> 
    28 #00027 <AudioTag at offset 0x0000471A, time 22805, size 262, AAC, raw> 
    29 #00028 <AudioTag at offset 0x0000482F, time 22805, size 262, AAC, raw> 
    30 #00029 <AudioTag at offset 0x00004944, time 22805, size 243, AAC, raw> 
    31 #00030 <VideoTag at offset 0x00004A46, time 22875, size 29, H.264 (interframe), NAL unit> 
    32 #00031 <AudioTag at offset 0x00004A72, time 22869, size 253, AAC, raw> 
    33 #00032 <AudioTag at offset 0x00004B7E, time 22869, size 254, AAC, raw> 
    34 #00033 <AudioTag at offset 0x00004C8B, time 22869, size 253, AAC, raw> 
    35 #00034 <VideoTag at offset 0x00004D97, time 22917, size 51, H.264 (interframe), NAL unit> 
    36 #00035 <VideoTag at offset 0x00004DD9, time 22958, size 46, H.264 (interframe), NAL unit> 
    37 #00036 <AudioTag at offset 0x00004E16, time 22933, size 272, AAC, raw> 
    38 #00037 <AudioTag at offset 0x00004F35, time 22933, size 244, AAC, raw> 
    39 #00038 <AudioTag at offset 0x00005038, time 22933, size 254, AAC, raw> 
    40 #00039 <VideoTag at offset 0x00005145, time 23000, size 52, H.264 (interframe), NAL unit> 
    41 #00040 <AudioTag at offset 0x00005188, time 22997, size 253, AAC, raw> 
    42 #00041 <AudioTag at offset 0x00005294, time 22997, size 248, AAC, raw> 
    43 #00042 <AudioTag at offset 0x0000539B, time 22997, size 276, AAC, raw> 
    44 #00043 <VideoTag at offset 0x000054BE, time 23042, size 32730, H.264 (interframe), NAL unit> 
    45 #00044 <VideoTag at offset 0x0000D4A7, time 23083, size 551, H.264 (interframe), NAL unit> 
    46 #00045 <AudioTag at offset 0x0000D6DD, time 23061, size 281, AAC, raw> 
    47 #00046 <AudioTag at offset 0x0000D805, time 23061, size 268, AAC, raw> 
    48 #00047 <AudioTag at offset 0x0000D920, time 23061, size 269, AAC, raw> 
    49 #00048 <VideoTag at offset 0x0000DA3C, time 23125, size 1386, H.264 (interframe), NAL unit> 
    50 #00049 <VideoTag at offset 0x0000DFB5, time 23167, size 1832, H.264 (interframe), NAL unit> 
    51 #00050 <AudioTag at offset 0x0000E6EC, time 23125, size 285, AAC, raw> 
    52 #00051 <AudioTag at offset 0x0000E818, time 23125, size 280, AAC, raw> 
    53 #00052 <AudioTag at offset 0x0000E93F, time 23125, size 264, AAC, raw> 
    54 #00053 <VideoTag at offset 0x0000EA56, time 23208, size 2195, H.264 (interframe), NAL unit> 
    55 #00054 <AudioTag at offset 0x0000F2F8, time 23189, size 270, AAC, raw> 
    56 #00055 <AudioTag at offset 0x0000F415, time 23189, size 286, AAC, raw> 
    57 #00056 <AudioTag at offset 0x0000F542, time 23189, size 291, AAC, raw> 
    58 #00057 <VideoTag at offset 0x0000F674, time 23250, size 2354, H.264 (interframe), NAL unit> 
    59 #00058 <VideoTag at offset 0x0000FFB5, time 23292, size 2645, H.264 (interframe), NAL unit> 
    60 #00059 <AudioTag at offset 0x00010A19, time 23253, size 276, AAC, raw> 
    61 #00060 <AudioTag at offset 0x00010B3C, time 23253, size 275, AAC, raw> 
    62 #00061 <AudioTag at offset 0x00010C5E, time 23253, size 282, AAC, raw> 
    63 #00062 <VideoTag at offset 0x00010D87, time 23333, size 2720, H.264 (interframe), NAL unit> 
    64 #00063 <AudioTag at offset 0x00011836, time 23317, size 259, AAC, raw> 
    65 #00064 <AudioTag at offset 0x00011948, time 23317, size 282, AAC, raw> 
    66 #00065 <AudioTag at offset 0x00011A71, time 23317, size 267, AAC, raw> 
    67 #00066 <VideoTag at offset 0x00011B8B, time 23375, size 2854, H.264 (interframe), NAL unit> 
    68 #00067 <VideoTag at offset 0x000126C0, time 23417, size 2881, H.264 (interframe), NAL unit> 
    69 #00068 <AudioTag at offset 0x00013210, time 23381, size 279, AAC, raw> 
    70 #00069 <AudioTag at offset 0x00013336, time 23381, size 258, AAC, raw> 
    71 #00070 <AudioTag at offset 0x00013447, time 23381, size 293, AAC, raw> 
    72 #00071 <VideoTag at offset 0x0001357B, time 23458, size 3023, H.264 (interframe), NAL unit> 
    73 #00072 <AudioTag at offset 0x00014159, time 23445, size 245, AAC, raw> 
    74 #00073 <AudioTag at offset 0x0001425D, time 23445, size 292, AAC, raw> 
    75 #00074 <AudioTag at offset 0x00014390, time 23445, size 267, AAC, raw> 
    76 #00075 <VideoTag at offset 0x000144AA, time 23500, size 3136, H.264 (interframe), NAL unit> 
    77 #00076 <VideoTag at offset 0x000150F9, time 23542, size 3317, H.264 (interframe), NAL unit> 
    78 #00077 <AudioTag at offset 0x00015DFD, time 23509, size 290, AAC, raw> 
    79 #00078 <AudioTag at offset 0x00015F2E, time 23509, size 288, AAC, raw> 
    80 #00079 <AudioTag at offset 0x0001605D, time 23509, size 297, AAC, raw> 
    81 #00080 <VideoTag at offset 0x00016195, time 23583, size 3179, H.264 (interframe), NAL unit> 
    82 #00081 <AudioTag at offset 0x00016E0F, time 23573, size 261, AAC, raw> 
    83 #00082 <AudioTag at offset 0x00016F23, time 23573, size 272, AAC, raw> 
    84 #00083 <AudioTag at offset 0x00017042, time 23573, size 264, AAC, raw> 
    85 #00084 <VideoTag at offset 0x00017159, time 23625, size 3238, H.264 (interframe), NAL unit> 
    86 #00085 <VideoTag at offset 0x00017E0E, time 23667, size 3517, H.264 (interframe), NAL unit> 
    87 #00086 <AudioTag at offset 0x00018BDA, time 23637, size 271, AAC, raw> 
    88 #00087 <AudioTag at offset 0x00018CF8, time 23637, size 281, AAC, raw> 
    89 #00088 <AudioTag at offset 0x00018E20, time 23637, size 259, AAC, raw> 
    90 #00089 <VideoTag at offset 0x00018F32, time 23708, size 3149, H.264 (interframe), NAL unit> 
    91 #00090 <AudioTag at offset 0x00019B8E, time 23701, size 257, AAC, raw> 
    92 #00091 <AudioTag at offset 0x00019C9E, time 23701, size 247, AAC, raw> 
    93 #00092 <AudioTag at offset 0x00019DA4, time 23701, size 249, AAC, raw> 
    94 #00093 <VideoTag at offset 0x00019EAC, time 23750, size 3413, H.264 (interframe), NAL unit> 
    95 #00094 <VideoTag at offset 0x0001AC10, time 23792, size 3457, H.264 (interframe), NAL unit> 
    96 #00095 <AudioTag at offset 0x0001B9A0, time 23765, size 266, AAC, raw> 
    97 #00096 <AudioTag at offset 0x0001BAB9, time 23765, size 256, AAC, raw> 
    98 #00097 <AudioTag at offset 0x0001BBC8, time 23765, size 256, AAC, raw> 
    99 #00098 <VideoTag at offset 0x0001BCD7, time 23833, size 3622, H.264 (interframe), NAL unit> 
    100 #00099 <AudioTag at offset 0x0001CB0C, time 23829, size 275, AAC, raw> 
    101 #00100 <AudioTag at offset 0x0001CC2E, time 23829, size 266, AAC, raw> 
    102 #00101 <AudioTag at offset 0x0001CD47, time 23829, size 279, AAC, raw> 
    103 #00102 <VideoTag at offset 0x0001CE6D, time 23875, size 3552, H.264 (interframe), NAL unit> 
    104 #00103 <VideoTag at offset 0x0001DC5C, time 23917, size 3415, H.264 (interframe), NAL unit> 
    105 #00104 <AudioTag at offset 0x0001E9C2, time 23893, size 277, AAC, raw> 
    106 #00105 <AudioTag at offset 0x0001EAE6, time 23893, size 285, AAC, raw> 
    107 #00106 <AudioTag at offset 0x0001EC12, time 23893, size 274, AAC, raw> 
    108 #00107 <VideoTag at offset 0x0001ED33, time 23958, size 3580, H.264 (interframe), NAL unit> 
    109 #00108 <VideoTag at offset 0x0001FB3E, time 24000, size 3335, H.264 (interframe), NAL unit> 
    110 #00109 <AudioTag at offset 0x00020854, time 23957, size 249, AAC, raw> 
    111 #00110 <AudioTag at offset 0x0002095C, time 23957, size 266, AAC, raw> 
    112 #00111 <AudioTag at offset 0x00020A75, time 23957, size 277, AAC, raw> 
    113 #00112 <VideoTag at offset 0x00020B99, time 24042, size 3668, H.264 (interframe), NAL unit> 
    114 #00113 <AudioTag at offset 0x000219FC, time 24021, size 265, AAC, raw> 
    115 #00114 <AudioTag at offset 0x00021B14, time 24021, size 269, AAC, raw> 
    116 #00115 <AudioTag at offset 0x00021C30, time 24021, size 278, AAC, raw> 
    117 #00116 <VideoTag at offset 0x00021D55, time 24083, size 3424, H.264 (interframe), NAL unit> 
    118 #00117 <VideoTag at offset 0x00022AC4, time 24125, size 3771, H.264 (interframe), NAL unit> 
    119 #00118 <AudioTag at offset 0x0002398E, time 24085, size 278, AAC, raw> 
    120 #00119 <AudioTag at offset 0x00023AB3, time 24085, size 268, AAC, raw> 
    121 #00120 <AudioTag at offset 0x00023BCE, time 24085, size 282, AAC, raw> 
    122 #00121 <VideoTag at offset 0x00023CF7, time 24167, size 3495, H.264 (interframe), NAL unit> 
    123 #00122 <AudioTag at offset 0x00024AAD, time 24149, size 287, AAC, raw> 
    124 #00123 <AudioTag at offset 0x00024BDB, time 24149, size 285, AAC, raw> 
    125 #00124 <AudioTag at offset 0x00024D07, time 24149, size 285, AAC, raw> 
    126 #00125 <VideoTag at offset 0x00024E33, time 24208, size 3526, H.264 (interframe), NAL unit> 
    127 #00126 <VideoTag at offset 0x00025C08, time 24250, size 3631, H.264 (interframe), NAL unit> 
    128 #00127 <AudioTag at offset 0x00026A46, time 24213, size 254, AAC, raw> 
    129 #00128 <AudioTag at offset 0x00026B53, time 24213, size 260, AAC, raw> 
    130 #00129 <AudioTag at offset 0x00026C66, time 24213, size 270, AAC, raw> 
    131 #00130 <VideoTag at offset 0x00026D83, time 24292, size 3818, H.264 (interframe), NAL unit> 
    132 #00131 <AudioTag at offset 0x00027C7C, time 24277, size 266, AAC, raw> 
    133 #00132 <AudioTag at offset 0x00027D95, time 24277, size 273, AAC, raw> 
    134 #00133 <AudioTag at offset 0x00027EB5, time 24277, size 287, AAC, raw> 
    135 #00134 <VideoTag at offset 0x00027FE3, time 24333, size 3310, H.264 (interframe), NAL unit> 
    136 #00135 <VideoTag at offset 0x00028CE0, time 24375, size 3621, H.264 (interframe), NAL unit> 
    137 #00136 <AudioTag at offset 0x00029B14, time 24341, size 283, AAC, raw> 
    138 #00137 <AudioTag at offset 0x00029C3E, time 24341, size 246, AAC, raw> 
    139 #00138 <AudioTag at offset 0x00029D43, time 24341, size 269, AAC, raw> 
    140 #00139 <VideoTag at offset 0x00029E5F, time 24417, size 3580, H.264 (interframe), NAL unit> 
    141 #00140 <AudioTag at offset 0x0002AC6A, time 24405, size 252, AAC, raw> 
    142 #00141 <AudioTag at offset 0x0002AD75, time 24405, size 270, AAC, raw> 
    143 #00142 <AudioTag at offset 0x0002AE92, time 24405, size 267, AAC, raw> 
    144 #00143 <VideoTag at offset 0x0002AFAC, time 24458, size 2741, H.264 (interframe), NAL unit> 
    145 #00144 <VideoTag at offset 0x0002BA70, time 24500, size 3944, H.264 (interframe), NAL unit> 
    146 #00145 <AudioTag at offset 0x0002C9E7, time 24469, size 242, AAC, raw> 
    147 #00146 <AudioTag at offset 0x0002CAE8, time 24469, size 281, AAC, raw> 
    148 #00147 <AudioTag at offset 0x0002CC10, time 24469, size 273, AAC, raw> 
    149 #00148 <VideoTag at offset 0x0002CD30, time 24542, size 3498, H.264 (interframe), NAL unit> 
    150 #00149 <AudioTag at offset 0x0002DAE9, time 24533, size 292, AAC, raw> 
    151 #00150 <AudioTag at offset 0x0002DC1C, time 24533, size 298, AAC, raw> 
    152 #00151 <AudioTag at offset 0x0002DD55, time 24533, size 305, AAC, raw> 
    153 #00152 <VideoTag at offset 0x0002DE95, time 24583, size 3966, H.264 (interframe), NAL unit> 
    154 #00153 <VideoTag at offset 0x0002EE22, time 24625, size 3553, H.264 (interframe), NAL unit> 
    155 #00154 <AudioTag at offset 0x0002FC12, time 24597, size 264, AAC, raw> 
    156 #00155 <AudioTag at offset 0x0002FD29, time 24597, size 276, AAC, raw> 
    157 #00156 <AudioTag at offset 0x0002FE4C, time 24597, size 246, AAC, raw> 
    158 #00157 <VideoTag at offset 0x0002FF51, time 24667, size 2751, H.264 (interframe), NAL unit> 
    159 #00158 <AudioTag at offset 0x00030A1F, time 24661, size 251, AAC, raw> 
    160 #00159 <AudioTag at offset 0x00030B29, time 24661, size 265, AAC, raw> 
    161 #00160 <AudioTag at offset 0x00030C41, time 24661, size 256, AAC, raw> 
    162 #00161 <VideoTag at offset 0x00030D50, time 24708, size 2833, H.264 (interframe), NAL unit> 
    163 #00162 <VideoTag at offset 0x00031870, time 24750, size 4233, H.264 (interframe), NAL unit> 
    164 #00163 <AudioTag at offset 0x00032908, time 24725, size 270, AAC, raw> 
    165 #00164 <AudioTag at offset 0x00032A25, time 24725, size 295, AAC, raw> 
    166 #00165 <AudioTag at offset 0x00032B5B, time 24725, size 268, AAC, raw> 
    167 #00166 <VideoTag at offset 0x00032C76, time 24792, size 3563, H.264 (interframe), NAL unit> 
    168 #00167 <AudioTag at offset 0x00033A70, time 24789, size 297, AAC, raw> 
    169 #00168 <AudioTag at offset 0x00033BA8, time 24789, size 269, AAC, raw> 
    170 #00169 <AudioTag at offset 0x00033CC4, time 24789, size 257, AAC, raw> 
    171 #00170 <VideoTag at offset 0x00033DD4, time 24833, size 4034, H.264 (interframe), NAL unit> 
    172 #00171 <VideoTag at offset 0x00034DA5, time 24875, size 3986, H.264 (interframe), NAL unit> 
    173 #00172 <AudioTag at offset 0x00035D46, time 24853, size 285, AAC, raw> 
    174 #00173 <AudioTag at offset 0x00035E72, time 24853, size 267, AAC, raw> 
    175 #00174 <AudioTag at offset 0x00035F8C, time 24853, size 261, AAC, raw> 
    176 #00175 <VideoTag at offset 0x000360A0, time 24917, size 4129, H.264 (interframe), NAL unit> 
    177 #00176 <VideoTag at offset 0x000370D0, time 24958, size 3412, H.264 (interframe), NAL unit> 
    178 #00177 <AudioTag at offset 0x00037E33, time 24917, size 266, AAC, raw> 
    179 #00178 <AudioTag at offset 0x00037F4C, time 24917, size 281, AAC, raw> 
    180 #00179 <AudioTag at offset 0x00038074, time 24917, size 285, AAC, raw> 
    181 #00180 <VideoTag at offset 0x000381A0, time 25000, size 4812, H.264 (interframe), NAL unit> 
    182 #00181 <AudioTag at offset 0x0003947B, time 24981, size 262, AAC, raw> 
    183 #00182 <AudioTag at offset 0x00039590, time 24981, size 280, AAC, raw> 
    184 #00183 <AudioTag at offset 0x000396B7, time 24981, size 285, AAC, raw> 
    185 #00184 <VideoTag at offset 0x000397E3, time 25042, size 3245, H.264 (interframe), NAL unit> 
    186 #00185 <VideoTag at offset 0x0003A49F, time 25083, size 5120, H.264 (interframe), NAL unit> 
    187 #00186 <AudioTag at offset 0x0003B8AE, time 25045, size 261, AAC, raw> 
    188 #00187 <AudioTag at offset 0x0003B9C2, time 25045, size 283, AAC, raw> 
    189 #00188 <AudioTag at offset 0x0003BAEC, time 25045, size 247, AAC, raw> 
    190 #00189 <VideoTag at offset 0x0003BBF2, time 25125, size 4423, H.264 (interframe), NAL unit> 
    191 #00190 <AudioTag at offset 0x0003CD48, time 25109, size 276, AAC, raw> 
    192 #00191 <AudioTag at offset 0x0003CE6B, time 25109, size 265, AAC, raw> 
    193 #00192 <AudioTag at offset 0x0003CF83, time 25109, size 272, AAC, raw> 
    194 #00193 <VideoTag at offset 0x0003D0A2, time 25167, size 4635, H.264 (interframe), NAL unit> 
    195 #00194 <VideoTag at offset 0x0003E2CC, time 25208, size 4550, H.264 (interframe), NAL unit> 
    196 #00195 <AudioTag at offset 0x0003F4A1, time 25173, size 278, AAC, raw> 
    197 #00196 <AudioTag at offset 0x0003F5C6, time 25173, size 310, AAC, raw> 
    198 #00197 <AudioTag at offset 0x0003F70B, time 25173, size 279, AAC, raw> 
    199 #00198 <VideoTag at offset 0x0003F831, time 25250, size 4249, H.264 (interframe), NAL unit> 
    200 #00199 <AudioTag at offset 0x000408D9, time 25237, size 314, AAC, raw> 
    201 #00200 <AudioTag at offset 0x00040A22, time 25237, size 275, AAC, raw> 
    202 #00201 <AudioTag at offset 0x00040B44, time 25237, size 265, AAC, raw> 
    203 #00202 <VideoTag at offset 0x00040C5C, time 25292, size 4423, H.264 (interframe), NAL unit> 
    204 #00203 <VideoTag at offset 0x00041DB2, time 25333, size 4519, H.264 (interframe), NAL unit> 
    205 #00204 <AudioTag at offset 0x00042F68, time 25301, size 252, AAC, raw> 
    206 #00205 <AudioTag at offset 0x00043073, time 25301, size 264, AAC, raw> 
    207 #00206 <AudioTag at offset 0x0004318A, time 25301, size 311, AAC, raw> 
    208 #00207 <VideoTag at offset 0x000432D0, time 25375, size 4628, H.264 (interframe), NAL unit> 
    209 #00208 <AudioTag at offset 0x000444F3, time 25365, size 256, AAC, raw> 
    210 #00209 <AudioTag at offset 0x00044602, time 25365, size 278, AAC, raw> 
    211 #00210 <AudioTag at offset 0x00044727, time 25365, size 274, AAC, raw> 
    212 #00211 <VideoTag at offset 0x00044848, time 25417, size 4654, H.264 (interframe), NAL unit> 
    213 #00212 <VideoTag at offset 0x00045A85, time 25458, size 4896, H.264 (interframe), NAL unit> 
    214 #00213 <AudioTag at offset 0x00046DB4, time 25429, size 289, AAC, raw> 
    215 #00214 <AudioTag at offset 0x00046EE4, time 25429, size 297, AAC, raw> 
    216 #00215 <AudioTag at offset 0x0004701C, time 25429, size 311, AAC, raw> 
    217 #00216 <VideoTag at offset 0x00047162, time 25500, size 4625, H.264 (interframe), NAL unit> 
    218 #00217 <AudioTag at offset 0x00048382, time 25493, size 291, AAC, raw> 
    219 #00218 <AudioTag at offset 0x000484B4, time 25493, size 315, AAC, raw> 
    220 #00219 <AudioTag at offset 0x000485FE, time 25493, size 276, AAC, raw> 
    221 #00220 <VideoTag at offset 0x00048721, time 25542, size 4660, H.264 (interframe), NAL unit> 
    222 #00221 <VideoTag at offset 0x00049964, time 25583, size 4708, H.264 (interframe), NAL unit> 
    223 #00222 <AudioTag at offset 0x0004ABD7, time 25557, size 359, AAC, raw> 
    224 #00223 <AudioTag at offset 0x0004AD4D, time 25557, size 255, AAC, raw> 
    225 #00224 <AudioTag at offset 0x0004AE5B, time 25557, size 280, AAC, raw> 
    226 #00225 <VideoTag at offset 0x0004AF82, time 25625, size 4704, H.264 (interframe), NAL unit> 
    227 #00226 <AudioTag at offset 0x0004C1F1, time 25621, size 303, AAC, raw> 
    228 #00227 <AudioTag at offset 0x0004C32F, time 25621, size 304, AAC, raw> 
    229 #00228 <AudioTag at offset 0x0004C46E, time 25621, size 296, AAC, raw> 
    230 #00229 <VideoTag at offset 0x0004C5A5, time 25667, size 4757, H.264 (interframe), NAL unit> 
    231 #00230 <VideoTag at offset 0x0004D849, time 25708, size 4241, H.264 (interframe), NAL unit> 
    232 #00231 <AudioTag at offset 0x0004E8E9, time 25685, size 281, AAC, raw> 
    233 #00232 <AudioTag at offset 0x0004EA11, time 25685, size 305, AAC, raw> 
    234 #00233 <AudioTag at offset 0x0004EB51, time 25685, size 314, AAC, raw> 
    235 #00234 <VideoTag at offset 0x0004EC9A, time 25750, size 4731, H.264 (interframe), NAL unit> 
    236 #00235 <VideoTag at offset 0x0004FF24, time 25792, size 4163, H.264 (interframe), NAL unit> 
    237 #00236 <AudioTag at offset 0x00050F76, time 25749, size 306, AAC, raw> 
    238 #00237 <AudioTag at offset 0x000510B7, time 25749, size 281, AAC, raw> 
    239 #00238 <AudioTag at offset 0x000511DF, time 25749, size 309, AAC, raw> 
    240 #00239 <VideoTag at offset 0x00051323, time 25833, size 4222, H.264 (interframe), NAL unit> 
    241 #00240 <AudioTag at offset 0x000523B0, time 25813, size 281, AAC, raw> 
    242 #00241 <AudioTag at offset 0x000524D8, time 25813, size 282, AAC, raw> 
    243 #00242 <AudioTag at offset 0x00052601, time 25813, size 315, AAC, raw> 
    244 #00243 <VideoTag at offset 0x0005274B, time 25875, size 4374, H.264 (interframe), NAL unit> 
    245 #00244 <VideoTag at offset 0x00053870, time 25917, size 4235, H.264 (interframe), NAL unit> 
    246 #00245 <AudioTag at offset 0x0005490A, time 25877, size 307, AAC, raw> 
    247 #00246 <AudioTag at offset 0x00054A4C, time 25877, size 262, AAC, raw> 
    248 #00247 <AudioTag at offset 0x00054B61, time 25877, size 337, AAC, raw> 
    249 #00248 <VideoTag at offset 0x00054CC1, time 25958, size 4225, H.264 (interframe), NAL unit> 
    250 #00249 <AudioTag at offset 0x00055D51, time 25941, size 270, AAC, raw> 
    251 #00250 <AudioTag at offset 0x00055E6E, time 25941, size 299, AAC, raw> 
    252 #00251 <AudioTag at offset 0x00055FA8, time 25941, size 273, AAC, raw> 
    253 #00252 <VideoTag at offset 0x000560C8, time 26000, size 4124, H.264 (interframe), NAL unit> 
    254 #00253 <VideoTag at offset 0x000570F3, time 26042, size 4334, H.264 (interframe), NAL unit> 
    255 #00254 <AudioTag at offset 0x000581F0, time 26005, size 279, AAC, raw> 
    256 #00255 <AudioTag at offset 0x00058316, time 26005, size 302, AAC, raw> 
    257 #00256 <AudioTag at offset 0x00058453, time 26005, size 300, AAC, raw> 
    258 #00257 <VideoTag at offset 0x0005858E, time 26083, size 3726, H.264 (interframe), NAL unit> 
    259 #00258 <AudioTag at offset 0x0005942B, time 26069, size 302, AAC, raw> 
    260 #00259 <AudioTag at offset 0x00059568, time 26069, size 249, AAC, raw> 
    261 #00260 <AudioTag at offset 0x00059670, time 26069, size 271, AAC, raw> 
    262 #00261 <VideoTag at offset 0x0005978E, time 26125, size 3769, H.264 (interframe), NAL unit> 
    263 #00262 <VideoTag at offset 0x0005A656, time 26167, size 6045, H.264 (interframe), NAL unit> 
    264 #00263 <AudioTag at offset 0x0005BE02, time 26133, size 282, AAC, raw> 
    265 #00264 <AudioTag at offset 0x0005BF2B, time 26133, size 258, AAC, raw> 
    266 #00265 <AudioTag at offset 0x0005C03C, time 26133, size 259, AAC, raw> 
    267 #00266 <VideoTag at offset 0x0005C14E, time 26208, size 2843, H.264 (interframe), NAL unit> 
    268 #00267 <AudioTag at offset 0x0005CC78, time 26197, size 255, AAC, raw> 
    269 #00268 <AudioTag at offset 0x0005CD86, time 26197, size 236, AAC, raw> 
    270 #00269 <AudioTag at offset 0x0005CE81, time 26197, size 250, AAC, raw> 
    271 #00270 <VideoTag at offset 0x0005CF8A, time 26250, size 46, H.264 (keyframe), sequence header> 
    272 #00271 <VideoTag at offset 0x0005CFC7, time 26250, size 32695, H.264 (interframe), NAL unit> 
    273 #00272 <VideoTag at offset 0x00064F8D, time 26292, size 690, H.264 (interframe), NAL unit> 
    274 #00273 <AudioTag at offset 0x0006524E, time 26261, size 279, AAC, raw> 
    275 #00274 <AudioTag at offset 0x00065374, time 26261, size 289, AAC, raw> 
    276 #00275 <AudioTag at offset 0x000654A4, time 26261, size 306, AAC, raw> 
    277 #00276 <VideoTag at offset 0x000655E5, time 26333, size 1489, H.264 (interframe), NAL unit> 
    278 #00277 <AudioTag at offset 0x00065BC5, time 26325, size 278, AAC, raw> 
    279 #00278 <AudioTag at offset 0x00065CEA, time 26325, size 283, AAC, raw> 
    280 #00279 <AudioTag at offset 0x00065E14, time 26325, size 261, AAC, raw> 
    281 #00280 <VideoTag at offset 0x00065F28, time 26375, size 1735, H.264 (interframe), NAL unit> 
    282 #00281 <VideoTag at offset 0x000665FE, time 26417, size 2224, H.264 (interframe), NAL unit> 
    283 #00282 <AudioTag at offset 0x00066EBD, time 26389, size 271, AAC, raw> 
    284 #00283 <AudioTag at offset 0x00066FDB, time 26389, size 269, AAC, raw> 
    285 #00284 <AudioTag at offset 0x000670F7, time 26389, size 276, AAC, raw> 
    286 #00285 <VideoTag at offset 0x0006721A, time 26458, size 2354, H.264 (interframe), NAL unit> 
    287 #00286 <AudioTag at offset 0x00067B5B, time 26453, size 268, AAC, raw> 
    288 #00287 <AudioTag at offset 0x00067C76, time 26453, size 254, AAC, raw> 
    289 #00288 <AudioTag at offset 0x00067D83, time 26453, size 240, AAC, raw> 
    290 #00289 <VideoTag at offset 0x00067E82, time 26500, size 2598, H.264 (interframe), NAL unit> 
    291 #00290 <VideoTag at offset 0x000688B7, time 26542, size 2771, H.264 (interframe), NAL unit> 
    292 #00291 <AudioTag at offset 0x00069399, time 26517, size 261, AAC, raw> 
    293 #00292 <AudioTag at offset 0x000694AD, time 26517, size 237, AAC, raw> 
    294 #00293 <AudioTag at offset 0x000695A9, time 26517, size 264, AAC, raw> 
    295 #00294 <VideoTag at offset 0x000696C0, time 26583, size 2627, H.264 (interframe), NAL unit> 
    296 #00295 <AudioTag at offset 0x0006A112, time 26581, size 270, AAC, raw> 
    297 #00296 <AudioTag at offset 0x0006A22F, time 26581, size 313, AAC, raw> 
    298 #00297 <AudioTag at offset 0x0006A377, time 26581, size 284, AAC, raw> 
    299 #00298 <VideoTag at offset 0x0006A4A2, time 26625, size 3091, H.264 (interframe), NAL unit> 
    300 #00299 <VideoTag at offset 0x0006B0C4, time 26667, size 2760, H.264 (interframe), NAL unit> 
    301 #00300 <AudioTag at offset 0x0006BB9B, time 26645, size 274, AAC, raw> 
    302 #00301 <AudioTag at offset 0x0006BCBC, time 26645, size 270, AAC, raw> 
    303 #00302 <AudioTag at offset 0x0006BDD9, time 26645, size 303, AAC, raw> 
    304 #00303 <VideoTag at offset 0x0006BF17, time 26708, size 3062, H.264 (interframe), NAL unit> 
    305 #00304 <VideoTag at offset 0x0006CB1C, time 26750, size 3009, H.264 (interframe), NAL unit> 
    306 #00305 <AudioTag at offset 0x0006D6EC, time 26709, size 248, AAC, raw> 
    307 #00306 <AudioTag at offset 0x0006D7F3, time 26709, size 268, AAC, raw> 
    308 #00307 <AudioTag at offset 0x0006D90E, time 26709, size 311, AAC, raw> 
    309 #00308 <VideoTag at offset 0x0006DA54, time 26792, size 2996, H.264 (interframe), NAL unit> 
    310 #00309 <AudioTag at offset 0x0006E617, time 26773, size 278, AAC, raw> 
    311 #00310 <AudioTag at offset 0x0006E73C, time 26773, size 309, AAC, raw> 
    312 #00311 <AudioTag at offset 0x0006E880, time 26773, size 293, AAC, raw> 
    313 #00312 <VideoTag at offset 0x0006E9B4, time 26833, size 3188, H.264 (interframe), NAL unit> 
    314 #00313 <VideoTag at offset 0x0006F637, time 26875, size 2975, H.264 (interframe), NAL unit> 
    315 #00314 <AudioTag at offset 0x000701E5, time 26837, size 259, AAC, raw> 
    316 #00315 <AudioTag at offset 0x000702F7, time 26837, size 282, AAC, raw> 
    317 #00316 <AudioTag at offset 0x00070420, time 26837, size 290, AAC, raw> 
    318 #00317 <VideoTag at offset 0x00070551, time 26917, size 3245, H.264 (interframe), NAL unit> 
    319 #00318 <AudioTag at offset 0x0007120D, time 26901, size 276, AAC, raw> 
    320 #00319 <AudioTag at offset 0x00071330, time 26901, size 267, AAC, raw> 
    321 #00320 <AudioTag at offset 0x0007144A, time 26901, size 266, AAC, raw> 
    322 #00321 <VideoTag at offset 0x00071563, time 26958, size 3180, H.264 (interframe), NAL unit> 
    323 #00322 <VideoTag at offset 0x000721DE, time 27000, size 3003, H.264 (interframe), NAL unit> 
    324 #00323 <AudioTag at offset 0x00072DA8, time 26965, size 243, AAC, raw> 
    325 #00324 <AudioTag at offset 0x00072EAA, time 26965, size 269, AAC, raw> 
    326 #00325 <AudioTag at offset 0x00072FC6, time 26965, size 280, AAC, raw> 
    327 #00326 <VideoTag at offset 0x000730ED, time 27042, size 3077, H.264 (interframe), NAL unit> 
    328 #00327 <AudioTag at offset 0x00073D01, time 27029, size 254, AAC, raw> 
    329 #00328 <AudioTag at offset 0x00073E0E, time 27029, size 265, AAC, raw> 
    330 #00329 <AudioTag at offset 0x00073F26, time 27029, size 244, AAC, raw> 
    331 #00330 <VideoTag at offset 0x00074029, time 27083, size 3061, H.264 (interframe), NAL unit> 
    332 #00331 <VideoTag at offset 0x00074C2D, time 27125, size 3219, H.264 (interframe), NAL unit> 
    333 #00332 <AudioTag at offset 0x000758CF, time 27093, size 266, AAC, raw> 
    334 #00333 <AudioTag at offset 0x000759E8, time 27093, size 262, AAC, raw> 
    335 #00334 <AudioTag at offset 0x00075AFD, time 27093, size 262, AAC, raw> 
    336 #00335 <VideoTag at offset 0x00075C12, time 27167, size 3060, H.264 (interframe), NAL unit> 
    337 #00336 <AudioTag at offset 0x00076815, time 27157, size 264, AAC, raw> 
    338 #00337 <AudioTag at offset 0x0007692C, time 27157, size 269, AAC, raw> 
    339 #00338 <AudioTag at offset 0x00076A48, time 27157, size 267, AAC, raw> 
    340 #00339 <VideoTag at offset 0x00076B62, time 27208, size 3056, H.264 (interframe), NAL unit> 
    341 #00340 <VideoTag at offset 0x00077761, time 27250, size 3197, H.264 (interframe), NAL unit> 
    342 #00341 <AudioTag at offset 0x000783ED, time 27221, size 280, AAC, raw> 
    343 #00342 <AudioTag at offset 0x00078514, time 27221, size 263, AAC, raw> 
    344 #00343 <AudioTag at offset 0x0007862A, time 27221, size 260, AAC, raw> 
    345 #00344 <VideoTag at offset 0x0007873D, time 27292, size 3139, H.264 (interframe), NAL unit> 
    346 #00345 <AudioTag at offset 0x0007938F, time 27285, size 306, AAC, raw> 
    347 #00346 <AudioTag at offset 0x000794D0, time 27285, size 335, AAC, raw> 
    348 #00347 <AudioTag at offset 0x0007962E, time 27285, size 277, AAC, raw> 
    349 #00348 <VideoTag at offset 0x00079752, time 27333, size 3119, H.264 (interframe), NAL unit> 
    350 #00349 <VideoTag at offset 0x0007A390, time 27375, size 2966, H.264 (interframe), NAL unit> 
    351 #00350 <AudioTag at offset 0x0007AF35, time 27349, size 252, AAC, raw> 
    352 #00351 <AudioTag at offset 0x0007B040, time 27349, size 293, AAC, raw> 
    353 #00352 <AudioTag at offset 0x0007B174, time 27349, size 291, AAC, raw> 
    354 #00353 <VideoTag at offset 0x0007B2A6, time 27417, size 3080, H.264 (interframe), NAL unit> 
    355 #00354 <AudioTag at offset 0x0007BEBD, time 27413, size 263, AAC, raw> 
    356 #00355 <AudioTag at offset 0x0007BFD3, time 27413, size 245, AAC, raw> 
    357 #00356 <AudioTag at offset 0x0007C0D7, time 27413, size 258, AAC, raw> 
    358 #00357 <VideoTag at offset 0x0007C1E8, time 27458, size 2944, H.264 (interframe), NAL unit> 
    359 #00358 <VideoTag at offset 0x0007CD77, time 27500, size 2818, H.264 (interframe), NAL unit> 
    360 #00359 <AudioTag at offset 0x0007D888, time 27477, size 275, AAC, raw> 
    361 #00360 <AudioTag at offset 0x0007D9AA, time 27477, size 263, AAC, raw> 
    362 #00361 <AudioTag at offset 0x0007DAC0, time 27477, size 274, AAC, raw> 
    363 #00362 <VideoTag at offset 0x0007DBE1, time 27542, size 3125, H.264 (interframe), NAL unit> 
    364 #00363 <VideoTag at offset 0x0007E825, time 27583, size 2902, H.264 (interframe), NAL unit> 
    365 #00364 <AudioTag at offset 0x0007F38A, time 27541, size 272, AAC, raw> 
    366 #00365 <AudioTag at offset 0x0007F4A9, time 27541, size 304, AAC, raw> 
    367 #00366 <AudioTag at offset 0x0007F5E8, time 27541, size 260, AAC, raw> 
    368 #00367 <VideoTag at offset 0x0007F6FB, time 27625, size 3251, H.264 (interframe), NAL unit> 
    369 #00368 <AudioTag at offset 0x000803BD, time 27605, size 286, AAC, raw> 
    370 #00369 <AudioTag at offset 0x000804EA, time 27605, size 298, AAC, raw> 
    371 #00370 <AudioTag at offset 0x00080623, time 27605, size 286, AAC, raw> 
    372 #00371 <VideoTag at offset 0x00080750, time 27667, size 2866, H.264 (interframe), NAL unit> 
    373 #00372 <VideoTag at offset 0x00081291, time 27708, size 2839, H.264 (interframe), NAL unit> 
    374 #00373 <AudioTag at offset 0x00081DB7, time 27669, size 276, AAC, raw> 
    375 #00374 <AudioTag at offset 0x00081EDA, time 27669, size 313, AAC, raw> 
    376 #00375 <AudioTag at offset 0x00082022, time 27669, size 306, AAC, raw> 
    377 #00376 <VideoTag at offset 0x00082163, time 27750, size 3149, H.264 (interframe), NAL unit> 
    378 #00377 <AudioTag at offset 0x00082DBF, time 27733, size 291, AAC, raw> 
    379 #00378 <AudioTag at offset 0x00082EF1, time 27733, size 282, AAC, raw> 
    380 #00379 <AudioTag at offset 0x0008301A, time 27733, size 287, AAC, raw> 
    381 #00380 <VideoTag at offset 0x00083148, time 27792, size 2675, H.264 (interframe), NAL unit> 
    382 #00381 <VideoTag at offset 0x00083BCA, time 27833, size 2931, H.264 (interframe), NAL unit> 
    383 #00382 <AudioTag at offset 0x0008474C, time 27797, size 306, AAC, raw> 
    384 #00383 <AudioTag at offset 0x0008488D, time 27797, size 309, AAC, raw> 
    385 #00384 <AudioTag at offset 0x000849D1, time 27797, size 305, AAC, raw> 
    386 #00385 <VideoTag at offset 0x00084B11, time 27875, size 2943, H.264 (interframe), NAL unit> 
    387 #00386 <AudioTag at offset 0x0008569F, time 27861, size 267, AAC, raw> 
    388 #00387 <AudioTag at offset 0x000857B9, time 27861, size 294, AAC, raw> 
    389 #00388 <AudioTag at offset 0x000858EE, time 27861, size 288, AAC, raw> 
    390 #00389 <VideoTag at offset 0x00085A1D, time 27917, size 2774, H.264 (interframe), NAL unit> 
    391 #00390 <VideoTag at offset 0x00086502, time 27958, size 3067, H.264 (interframe), NAL unit> 
    392 #00391 <AudioTag at offset 0x0008710C, time 27925, size 297, AAC, raw> 
    393 #00392 <AudioTag at offset 0x00087244, time 27925, size 300, AAC, raw> 
    394 #00393 <AudioTag at offset 0x0008737F, time 27925, size 277, AAC, raw> 
    395 #00394 <VideoTag at offset 0x000874A3, time 28000, size 2963, H.264 (interframe), NAL unit> 
    396 #00395 <AudioTag at offset 0x00088045, time 27989, size 293, AAC, raw> 
    397 #00396 <AudioTag at offset 0x00088179, time 27989, size 306, AAC, raw> 
    398 #00397 <AudioTag at offset 0x000882BA, time 27989, size 287, AAC, raw> 
    399 #00398 <VideoTag at offset 0x000883E8, time 28042, size 2564, H.264 (interframe), NAL unit> 
    400 #00399 <VideoTag at offset 0x00088DFB, time 28083, size 3065, H.264 (interframe), NAL unit> 
    401 #00400 <AudioTag at offset 0x00089A03, time 28053, size 242, AAC, raw> 
    402 #00401 <AudioTag at offset 0x00089B04, time 28053, size 253, AAC, raw> 
    403 #00402 <AudioTag at offset 0x00089C10, time 28053, size 290, AAC, raw> 
    404 #00403 <VideoTag at offset 0x00089D41, time 28125, size 2974, H.264 (interframe), NAL unit> 
    405 #00404 <AudioTag at offset 0x0008A8EE, time 28117, size 276, AAC, raw> 
    406 #00405 <AudioTag at offset 0x0008AA11, time 28117, size 276, AAC, raw> 
    407 #00406 <AudioTag at offset 0x0008AB34, time 28117, size 246, AAC, raw> 
    408 #00407 <VideoTag at offset 0x0008AC39, time 28167, size 2746, H.264 (interframe), NAL unit> 
    409 #00408 <VideoTag at offset 0x0008B702, time 28208, size 2841, H.264 (interframe), NAL unit> 
    410 #00409 <AudioTag at offset 0x0008C22A, time 28181, size 265, AAC, raw> 
    411 #00410 <AudioTag at offset 0x0008C342, time 28181, size 254, AAC, raw> 
    412 #00411 <AudioTag at offset 0x0008C44F, time 28181, size 314, AAC, raw> 
    413 #00412 <VideoTag at offset 0x0008C598, time 28250, size 2950, H.264 (interframe), NAL unit> 
    414 #00413 <AudioTag at offset 0x0008D12D, time 28245, size 290, AAC, raw> 
    415 #00414 <AudioTag at offset 0x0008D25E, time 28245, size 269, AAC, raw> 
    416 #00415 <AudioTag at offset 0x0008D37A, time 28245, size 266, AAC, raw> 
    417 #00416 <VideoTag at offset 0x0008D493, time 28292, size 2523, H.264 (interframe), NAL unit> 
    418 #00417 <VideoTag at offset 0x0008DE7D, time 28333, size 2756, H.264 (interframe), NAL unit> 
    419 #00418 <AudioTag at offset 0x0008E950, time 28309, size 288, AAC, raw> 
    420 #00419 <AudioTag at offset 0x0008EA7F, time 28309, size 314, AAC, raw> 
    421 #00420 <AudioTag at offset 0x0008EBC8, time 28309, size 263, AAC, raw> 
    422 #00421 <VideoTag at offset 0x0008ECDE, time 28375, size 3006, H.264 (interframe), NAL unit> 
    423 #00422 <AudioTag at offset 0x0008F8AB, time 28373, size 262, AAC, raw> 
    424 #00423 <AudioTag at offset 0x0008F9C0, time 28373, size 257, AAC, raw> 
    425 #00424 <AudioTag at offset 0x0008FAD0, time 28373, size 275, AAC, raw> 
    426 #00425 <VideoTag at offset 0x0008FBF2, time 28417, size 2459, H.264 (interframe), NAL unit> 
    427 #00426 <VideoTag at offset 0x0009059C, time 28458, size 2783, H.264 (interframe), NAL unit> 
    428 #00427 <AudioTag at offset 0x0009108A, time 28437, size 270, AAC, raw> 
    429 #00428 <AudioTag at offset 0x000911A7, time 28437, size 271, AAC, raw> 
    430 #00429 <AudioTag at offset 0x000912C5, time 28437, size 253, AAC, raw> 
    431 #00430 <VideoTag at offset 0x000913D1, time 28500, size 3059, H.264 (interframe), NAL unit> 
    432 #00431 <VideoTag at offset 0x00091FD3, time 28542, size 2599, H.264 (interframe), NAL unit> 
    433 #00432 <AudioTag at offset 0x00092A09, time 28501, size 241, AAC, raw> 
    434 #00433 <AudioTag at offset 0x00092B09, time 28501, size 263, AAC, raw> 
    435 #00434 <AudioTag at offset 0x00092C1F, time 28501, size 268, AAC, raw> 
    436 #00435 <VideoTag at offset 0x00092D3A, time 28583, size 2647, H.264 (interframe), NAL unit> 
    437 #00436 <AudioTag at offset 0x000937A0, time 28565, size 258, AAC, raw> 
    438 #00437 <AudioTag at offset 0x000938B1, time 28565, size 380, AAC, raw> 
    439 #00438 <AudioTag at offset 0x00093A3C, time 28565, size 313, AAC, raw> 
    440 #00439 <VideoTag at offset 0x00093B84, time 28625, size 2757, H.264 (interframe), NAL unit> 
    441 #00440 <VideoTag at offset 0x00094658, time 28667, size 2894, H.264 (interframe), NAL unit> 
    442 #00441 <AudioTag at offset 0x000951B5, time 28629, size 264, AAC, raw> 
    443 #00442 <AudioTag at offset 0x000952CC, time 28629, size 301, AAC, raw> 
    444 #00443 <AudioTag at offset 0x00095408, time 28629, size 260, AAC, raw> 
    445 #00444 <VideoTag at offset 0x0009551B, time 28708, size 3131, H.264 (interframe), NAL unit> 
    446 #00445 <AudioTag at offset 0x00096165, time 28693, size 265, AAC, raw> 
    447 #00446 <AudioTag at offset 0x0009627D, time 28693, size 263, AAC, raw> 
    448 #00447 <AudioTag at offset 0x00096393, time 28693, size 273, AAC, raw> 
    449 #00448 <VideoTag at offset 0x000964B3, time 28750, size 2637, H.264 (interframe), NAL unit> 
    450 #00449 <VideoTag at offset 0x00096F0F, time 28792, size 2898, H.264 (interframe), NAL unit> 
    451 #00450 <AudioTag at offset 0x00097A70, time 28757, size 270, AAC, raw> 
    452 #00451 <AudioTag at offset 0x00097B8D, time 28757, size 259, AAC, raw> 
    453 #00452 <AudioTag at offset 0x00097C9F, time 28757, size 238, AAC, raw> 
    454 #00453 <VideoTag at offset 0x00097D9C, time 28833, size 3132, H.264 (interframe), NAL unit> 
    455 #00454 <AudioTag at offset 0x000989E7, time 28821, size 252, AAC, raw> 
    456 #00455 <AudioTag at offset 0x00098AF2, time 28821, size 280, AAC, raw> 
    457 #00456 <AudioTag at offset 0x00098C19, time 28821, size 204, AAC, raw> 
    458 #00457 <AudioTag at offset 0x00098CF4, time 28821, size 47, AAC, raw> 
    459 #00458 <VideoTag at offset 0x00098D32, time 28875, size 2960, H.264 (interframe), NAL unit> 
    460 #00459 <VideoTag at offset 0x000998D1, time 28917, size 2902, H.264 (interframe), NAL unit> 
    461 #00460 <AudioTag at offset 0x0009A436, time 28885, size 285, AAC, raw> 
    462 #00461 <AudioTag at offset 0x0009A562, time 28885, size 273, AAC, raw> 
    463 #00462 <AudioTag at offset 0x0009A682, time 28885, size 278, AAC, raw> 
    464 #00463 <VideoTag at offset 0x0009A7A7, time 28958, size 2918, H.264 (interframe), NAL unit> 
    465 #00464 <AudioTag at offset 0x0009B31C, time 28949, size 267, AAC, raw> 
    466 #00465 <AudioTag at offset 0x0009B436, time 28949, size 284, AAC, raw> 
    467 #00466 <AudioTag at offset 0x0009B561, time 28949, size 256, AAC, raw> 
    468 #00467 <VideoTag at offset 0x0009B670, time 29000, size 3143, H.264 (interframe), NAL unit> 
    469 #00468 <VideoTag at offset 0x0009C2C6, time 29042, size 2913, H.264 (interframe), NAL unit> 
    470 #00469 <AudioTag at offset 0x0009CE36, time 29013, size 255, AAC, raw> 
    471 #00470 <AudioTag at offset 0x0009CF44, time 29013, size 278, AAC, raw> 
    472 #00471 <AudioTag at offset 0x0009D069, time 29013, size 256, AAC, raw> 
    473 #00472 <VideoTag at offset 0x0009D178, time 29083, size 3136, H.264 (interframe), NAL unit> 
    474 #00473 <AudioTag at offset 0x0009DDC7, time 29077, size 268, AAC, raw> 
    475 #00474 <AudioTag at offset 0x0009DEE2, time 29077, size 291, AAC, raw> 
    476 #00475 <AudioTag at offset 0x0009E014, time 29077, size 326, AAC, raw> 
    477 #00476 <VideoTag at offset 0x0009E169, time 29125, size 3077, H.264 (interframe), NAL unit> 
    478 #00477 <VideoTag at offset 0x0009ED7D, time 29167, size 3408, H.264 (interframe), NAL unit> 
    479 #00478 <AudioTag at offset 0x0009FADC, time 29141, size 308, AAC, raw> 
    480 #00479 <AudioTag at offset 0x0009FC1F, time 29141, size 266, AAC, raw> 
    481 #00480 <AudioTag at offset 0x0009FD38, time 29141, size 278, AAC, raw> 
    482 #00481 <VideoTag at offset 0x0009FE5D, time 29208, size 3247, H.264 (interframe), NAL unit> 
    483 #00482 <AudioTag at offset 0x000A0B1B, time 29205, size 260, AAC, raw> 
    484 #00483 <AudioTag at offset 0x000A0C2E, time 29205, size 237, AAC, raw> 
    485 #00484 <AudioTag at offset 0x000A0D2A, time 29205, size 271, AAC, raw> 
    486 #00485 <VideoTag at offset 0x000A0E48, time 29250, size 3451, H.264 (interframe), NAL unit> 
    487 #00486 <VideoTag at offset 0x000A1BD2, time 29292, size 3203, H.264 (interframe), NAL unit> 
    488 #00487 <AudioTag at offset 0x000A2864, time 29269, size 260, AAC, raw> 
    489 #00488 <AudioTag at offset 0x000A2977, time 29269, size 259, AAC, raw> 
    490 #00489 <AudioTag at offset 0x000A2A89, time 29269, size 249, AAC, raw> 
    491 #00490 <VideoTag at offset 0x000A2B91, time 29333, size 3088, H.264 (interframe), NAL unit> 
    492 #00491 <VideoTag at offset 0x000A37B0, time 29375, size 3602, H.264 (interframe), NAL unit> 
    493 #00492 <AudioTag at offset 0x000A45D1, time 29333, size 225, AAC, raw> 
    494 #00493 <AudioTag at offset 0x000A46C1, time 29333, size 243, AAC, raw> 
    495 #00494 <AudioTag at offset 0x000A47C3, time 29333, size 239, AAC, raw> 
    496 #00495 <VideoTag at offset 0x000A48C1, time 29417, size 3650, H.264 (interframe), NAL unit> 
    497 #00496 <AudioTag at offset 0x000A5712, time 29397, size 254, AAC, raw> 
    498 #00497 <AudioTag at offset 0x000A581F, time 29397, size 246, AAC, raw> 
    499 #00498 <AudioTag at offset 0x000A5924, time 29397, size 242, AAC, raw> 
    500 #00499 <VideoTag at offset 0x000A5A25, time 29458, size 3691, H.264 (interframe), NAL unit> 
    501 #00500 <VideoTag at offset 0x000A689F, time 29500, size 3617, H.264 (interframe), NAL unit> 
    502 #00501 <AudioTag at offset 0x000A76CF, time 29461, size 275, AAC, raw> 
    503 #00502 <AudioTag at offset 0x000A77F1, time 29461, size 247, AAC, raw> 
    504 #00503 <AudioTag at offset 0x000A78F7, time 29461, size 249, AAC, raw> 
    505 #00504 <VideoTag at offset 0x000A79FF, time 29542, size 3385, H.264 (interframe), NAL unit> 
    506 #00505 <AudioTag at offset 0x000A8747, time 29525, size 249, AAC, raw> 
    507 #00506 <AudioTag at offset 0x000A884F, time 29525, size 267, AAC, raw> 
    508 #00507 <AudioTag at offset 0x000A8969, time 29525, size 251, AAC, raw> 
    509 #00508 <VideoTag at offset 0x000A8A73, time 29583, size 3475, H.264 (interframe), NAL unit> 
    510 #00509 <VideoTag at offset 0x000A9815, time 29625, size 3482, H.264 (interframe), NAL unit> 
    511 #00510 <AudioTag at offset 0x000AA5BE, time 29589, size 241, AAC, raw> 
    512 #00511 <AudioTag at offset 0x000AA6BE, time 29589, size 246, AAC, raw> 
    513 #00512 <AudioTag at offset 0x000AA7C3, time 29589, size 257, AAC, raw> 
    514 #00513 <VideoTag at offset 0x000AA8D3, time 29667, size 3610, H.264 (interframe), NAL unit> 
    515 #00514 <AudioTag at offset 0x000AB6FC, time 29653, size 247, AAC, raw> 
    516 #00515 <AudioTag at offset 0x000AB802, time 29653, size 232, AAC, raw> 
    517 #00516 <AudioTag at offset 0x000AB8F9, time 29653, size 250, AAC, raw> 
    518 #00517 <VideoTag at offset 0x000ABA02, time 29708, size 3148, H.264 (interframe), NAL unit> 
    519 #00518 <VideoTag at offset 0x000AC65D, time 29750, size 3668, H.264 (interframe), NAL unit> 
    520 #00519 <AudioTag at offset 0x000AD4C0, time 29717, size 251, AAC, raw> 
    521 #00520 <AudioTag at offset 0x000AD5CA, time 29717, size 246, AAC, raw> 
    522 #00521 <AudioTag at offset 0x000AD6CF, time 29717, size 255, AAC, raw> 
    523 #00522 <VideoTag at offset 0x000AD7DD, time 29792, size 3358, H.264 (interframe), NAL unit> 
    524 #00523 <AudioTag at offset 0x000AE50A, time 29781, size 254, AAC, raw> 
    525 #00524 <AudioTag at offset 0x000AE617, time 29781, size 278, AAC, raw> 
    526 #00525 <AudioTag at offset 0x000AE73C, time 29781, size 263, AAC, raw> 
    527 #00526 <VideoTag at offset 0x000AE852, time 29833, size 3404, H.264 (interframe), NAL unit> 
    528 #00527 <VideoTag at offset 0x000AF5AD, time 29875, size 3298, H.264 (interframe), NAL unit> 
    529 #00528 <AudioTag at offset 0x000B029E, time 29845, size 296, AAC, raw> 
    530 #00529 <AudioTag at offset 0x000B03D5, time 29845, size 265, AAC, raw> 
    531 #00530 <AudioTag at offset 0x000B04ED, time 29845, size 258, AAC, raw> 
    532 #00531 <VideoTag at offset 0x000B05FE, time 29917, size 3024, H.264 (interframe), NAL unit> 
    533 #00532 <AudioTag at offset 0x000B11DD, time 29909, size 268, AAC, raw> 
    534 #00533 <AudioTag at offset 0x000B12F8, time 29909, size 247, AAC, raw> 
    535 #00534 <AudioTag at offset 0x000B13FE, time 29909, size 249, AAC, raw> 
    536 #00535 <VideoTag at offset 0x000B1506, time 29958, size 3652, H.264 (interframe), NAL unit> 
    537 #00536 <VideoTag at offset 0x000B2359, time 30000, size 46, H.264 (keyframe), sequence header> 
    538 #00537 <VideoTag at offset 0x000B2396, time 30000, size 32695, H.264 (interframe), NAL unit> 
    539 #00538 <AudioTag at offset 0x000BA35C, time 29973, size 258, AAC, raw> 
    540 #00539 <AudioTag at offset 0x000BA46D, time 29973, size 255, AAC, raw> 
    541 #00540 <AudioTag at offset 0x000BA57B, time 29973, size 264, AAC, raw> 
    542 #00541 <VideoTag at offset 0x000BA692, time 30042, size 759, H.264 (interframe), NAL unit> 
    543 #00542 <AudioTag at offset 0x000BA998, time 30037, size 243, AAC, raw> 
    544 #00543 <AudioTag at offset 0x000BAA9A, time 30037, size 238, AAC, raw> 
    545 #00544 <AudioTag at offset 0x000BAB97, time 30037, size 245, AAC, raw> 
    546 #00545 <VideoTag at offset 0x000BAC9B, time 30083, size 1461, H.264 (interframe), NAL unit> 
    547 #00546 <VideoTag at offset 0x000BB25F, time 30125, size 2037, H.264 (interframe), NAL unit> 
    548 #00547 <AudioTag at offset 0x000BBA63, time 30101, size 261, AAC, raw> 
    549 #00548 <AudioTag at offset 0x000BBB77, time 30101, size 271, AAC, raw> 
    550 #00549 <AudioTag at offset 0x000BBC95, time 30101, size 266, AAC, raw> 
    551 #00550 <VideoTag at offset 0x000BBDAE, time 30167, size 1898, H.264 (interframe), NAL unit> 
    552 #00551 <VideoTag at offset 0x000BC527, time 30208, size 2587, H.264 (interframe), NAL unit> 
    553 #00552 <AudioTag at offset 0x000BCF51, time 30165, size 262, AAC, raw> 
    554 #00553 <AudioTag at offset 0x000BD066, time 30165, size 267, AAC, raw> 
    555 #00554 <AudioTag at offset 0x000BD180, time 30165, size 262, AAC, raw> 
    556 #00555 <VideoTag at offset 0x000BD295, time 30250, size 2389, H.264 (interframe), NAL unit> 
    557 #00556 <AudioTag at offset 0x000BDBF9, time 30229, size 278, AAC, raw> 
    558 #00557 <AudioTag at offset 0x000BDD1E, time 30229, size 270, AAC, raw> 
    559 #00558 <AudioTag at offset 0x000BDE3B, time 30229, size 288, AAC, raw> 
    560 #00559 <VideoTag at offset 0x000BDF6A, time 30292, size 2434, H.264 (interframe), NAL unit> 
    561 #00560 <VideoTag at offset 0x000BE8FB, time 30333, size 2506, H.264 (interframe), NAL unit> 
    562 #00561 <AudioTag at offset 0x000BF2D4, time 30293, size 368, AAC, raw> 
    563 #00562 <AudioTag at offset 0x000BF453, time 30293, size 268, AAC, raw> 
    564 #00563 <AudioTag at offset 0x000BF56E, time 30293, size 283, AAC, raw> 
    565 #00564 <VideoTag at offset 0x000BF698, time 30375, size 2468, H.264 (interframe), NAL unit> 
    566 #00565 <AudioTag at offset 0x000C004B, time 30357, size 281, AAC, raw> 
    567 #00566 <AudioTag at offset 0x000C0173, time 30357, size 285, AAC, raw> 
    568 #00567 <AudioTag at offset 0x000C029F, time 30357, size 308, AAC, raw> 
    569 #00568 <VideoTag at offset 0x000C03E2, time 30417, size 2564, H.264 (interframe), NAL unit> 
    570 #00569 <VideoTag at offset 0x000C0DF5, time 30458, size 2636, H.264 (interframe), NAL unit> 
    571 #00570 <AudioTag at offset 0x000C1850, time 30421, size 307, AAC, raw> 
    572 #00571 <AudioTag at offset 0x000C1992, time 30421, size 288, AAC, raw> 
    573 #00572 <AudioTag at offset 0x000C1AC1, time 30421, size 265, AAC, raw> 
    574 #00573 <VideoTag at offset 0x000C1BD9, time 30500, size 2285, H.264 (interframe), NAL unit> 
    575 #00574 <AudioTag at offset 0x000C24D5, time 30485, size 270, AAC, raw> 
    576 #00575 <AudioTag at offset 0x000C25F2, time 30485, size 276, AAC, raw> 
    577 #00576 <AudioTag at offset 0x000C2715, time 30485, size 274, AAC, raw> 
    578 #00577 <VideoTag at offset 0x000C2836, time 30542, size 2573, H.264 (interframe), NAL unit> 
    579 #00578 <VideoTag at offset 0x000C3252, time 30583, size 2570, H.264 (interframe), NAL unit> 
    580 #00579 <AudioTag at offset 0x000C3C6B, time 30549, size 339, AAC, raw> 
    581 #00580 <AudioTag at offset 0x000C3DCD, time 30549, size 274, AAC, raw> 
    582 #00581 <AudioTag at offset 0x000C3EEE, time 30549, size 271, AAC, raw> 
    583 #00582 <VideoTag at offset 0x000C400C, time 30625, size 2600, H.264 (interframe), NAL unit> 
    584 #00583 <AudioTag at offset 0x000C4A43, time 30613, size 291, AAC, raw> 
    585 #00584 <AudioTag at offset 0x000C4B75, time 30613, size 305, AAC, raw> 
    586 #00585 <AudioTag at offset 0x000C4CB5, time 30613, size 303, AAC, raw> 
    587 #00586 <VideoTag at offset 0x000C4DF3, time 30667, size 2431, H.264 (interframe), NAL unit> 
    588 #00587 <VideoTag at offset 0x000C5781, time 30708, size 2764, H.264 (interframe), NAL unit> 
    589 #00588 <AudioTag at offset 0x000C625C, time 30677, size 261, AAC, raw> 
    590 #00589 <AudioTag at offset 0x000C6370, time 30677, size 246, AAC, raw> 
    591 #00590 <AudioTag at offset 0x000C6475, time 30677, size 295, AAC, raw> 
    592 #00591 <VideoTag at offset 0x000C65AB, time 30750, size 2297, H.264 (interframe), NAL unit> 
    593 #00592 <AudioTag at offset 0x000C6EB3, time 30741, size 315, AAC, raw> 
    594 #00593 <AudioTag at offset 0x000C6FFD, time 30741, size 285, AAC, raw> 
    595 #00594 <AudioTag at offset 0x000C7129, time 30741, size 266, AAC, raw> 
    596 #00595 <VideoTag at offset 0x000C7242, time 30792, size 2527, H.264 (interframe), NAL unit> 
    597 #00596 <VideoTag at offset 0x000C7C30, time 30833, size 2164, H.264 (interframe), NAL unit> 
    598 #00597 <AudioTag at offset 0x000C84B3, time 30805, size 328, AAC, raw> 
    599 #00598 <AudioTag at offset 0x000C860A, time 30805, size 269, AAC, raw> 
    600 #00599 <AudioTag at offset 0x000C8726, time 30805, size 266, AAC, raw> 
    601 #00600 <VideoTag at offset 0x000C883F, time 30875, size 2777, H.264 (interframe), NAL unit> 
    602 #00601 <AudioTag at offset 0x000C9327, time 30869, size 280, AAC, raw> 
    603 #00602 <AudioTag at offset 0x000C944E, time 30869, size 254, AAC, raw> 
    604 #00603 <AudioTag at offset 0x000C955B, time 30869, size 267, AAC, raw> 
    605 #00604 <VideoTag at offset 0x000C9675, time 30917, size 2281, H.264 (interframe), NAL unit> 
    606 #00605 <VideoTag at offset 0x000C9F6D, time 30958, size 2505, H.264 (interframe), NAL unit> 
    607 #00606 <AudioTag at offset 0x000CA945, time 30933, size 270, AAC, raw> 
    608 #00607 <AudioTag at offset 0x000CAA62, time 30933, size 279, AAC, raw> 
    609 #00608 <AudioTag at offset 0x000CAB88, time 30933, size 267, AAC, raw> 
    610 #00609 <VideoTag at offset 0x000CACA2, time 31000, size 2346, H.264 (interframe), NAL unit> 
    611 #00610 <AudioTag at offset 0x000CB5DB, time 30997, size 266, AAC, raw> 
    612 #00611 <AudioTag at offset 0x000CB6F4, time 30997, size 274, AAC, raw> 
    613 #00612 <AudioTag at offset 0x000CB815, time 30997, size 252, AAC, raw> 
    614 #00613 <VideoTag at offset 0x000CB920, time 31042, size 2600, H.264 (interframe), NAL unit> 
    615 #00614 <VideoTag at offset 0x000CC357, time 31083, size 1949, H.264 (interframe), NAL unit> 
    616 #00615 <AudioTag at offset 0x000CCB03, time 31061, size 241, AAC, raw> 
    617 #00616 <AudioTag at offset 0x000CCC03, time 31061, size 269, AAC, raw> 
    618 #00617 <AudioTag at offset 0x000CCD1F, time 31061, size 274, AAC, raw> 
    619 #00618 <VideoTag at offset 0x000CCE40, time 31125, size 2286, H.264 (interframe), NAL unit> 
    620 #00619 <VideoTag at offset 0x000CD73D, time 31167, size 2179, H.264 (interframe), NAL unit> 
    621 #00620 <AudioTag at offset 0x000CDFCF, time 31125, size 266, AAC, raw> 
    622 #00621 <AudioTag at offset 0x000CE0E8, time 31125, size 275, AAC, raw> 
    623 #00622 <AudioTag at offset 0x000CE20A, time 31125, size 274, AAC, raw> 
    624 #00623 <VideoTag at offset 0x000CE32B, time 31208, size 1970, H.264 (interframe), NAL unit> 
    625 #00624 <AudioTag at offset 0x000CEAEC, time 31189, size 286, AAC, raw> 
    626 #00625 <AudioTag at offset 0x000CEC19, time 31189, size 239, AAC, raw> 
    627 #00626 <AudioTag at offset 0x000CED17, time 31189, size 238, AAC, raw> 
    628 #00627 <VideoTag at offset 0x000CEE14, time 31250, size 2667, H.264 (interframe), NAL unit> 
    629 #00628 <VideoTag at offset 0x000CF88E, time 31292, size 2870, H.264 (interframe), NAL unit> 
    630 #00629 <AudioTag at offset 0x000D03D3, time 31253, size 246, AAC, raw> 
    631 #00630 <AudioTag at offset 0x000D04D8, time 31253, size 256, AAC, raw> 
    632 #00631 <AudioTag at offset 0x000D05E7, time 31253, size 262, AAC, raw> 
    633 #00632 <VideoTag at offset 0x000D06FC, time 31333, size 3133, H.264 (interframe), NAL unit> 
    634 #00633 <AudioTag at offset 0x000D1348, time 31317, size 287, AAC, raw> 
    635 #00634 <AudioTag at offset 0x000D1476, time 31317, size 259, AAC, raw> 
    636 #00635 <AudioTag at offset 0x000D1588, time 31317, size 260, AAC, raw> 
    637 #00636 <VideoTag at offset 0x000D169B, time 31375, size 2793, H.264 (interframe), NAL unit> 
    638 #00637 <VideoTag at offset 0x000D2193, time 31417, size 3256, H.264 (interframe), NAL unit> 
    639 #00638 <AudioTag at offset 0x000D2E5A, time 31381, size 257, AAC, raw> 
    640 #00639 <AudioTag at offset 0x000D2F6A, time 31381, size 246, AAC, raw> 
    641 #00640 <AudioTag at offset 0x000D306F, time 31381, size 259, AAC, raw> 
    642 #00641 <VideoTag at offset 0x000D3181, time 31458, size 3311, H.264 (interframe), NAL unit> 
    643 #00642 <AudioTag at offset 0x000D3E7F, time 31445, size 246, AAC, raw> 
    644 #00643 <AudioTag at offset 0x000D3F84, time 31445, size 256, AAC, raw> 
    645 #00644 <AudioTag at offset 0x000D4093, time 31445, size 271, AAC, raw> 
    646 #00645 <VideoTag at offset 0x000D41B1, time 31500, size 3124, H.264 (interframe), NAL unit> 
    647 #00646 <VideoTag at offset 0x000D4DF4, time 31542, size 3441, H.264 (interframe), NAL unit> 
    648 #00647 <AudioTag at offset 0x000D5B74, time 31509, size 287, AAC, raw> 
    649 #00648 <AudioTag at offset 0x000D5CA2, time 31509, size 275, AAC, raw> 
    650 #00649 <AudioTag at offset 0x000D5DC4, time 31509, size 262, AAC, raw> 
    651 #00650 <VideoTag at offset 0x000D5ED9, time 31583, size 3225, H.264 (interframe), NAL unit> 
    652 #00651 <AudioTag at offset 0x000D6B81, time 31573, size 269, AAC, raw> 
    653 #00652 <AudioTag at offset 0x000D6C9D, time 31573, size 271, AAC, raw> 
    654 #00653 <AudioTag at offset 0x000D6DBB, time 31573, size 255, AAC, raw> 
    655 #00654 <VideoTag at offset 0x000D6EC9, time 31625, size 3329, H.264 (interframe), NAL unit> 
    656 #00655 <VideoTag at offset 0x000D7BD9, time 31667, size 3259, H.264 (interframe), NAL unit> 
    657 #00656 <AudioTag at offset 0x000D88A3, time 31637, size 288, AAC, raw> 
    658 #00657 <AudioTag at offset 0x000D89D2, time 31637, size 257, AAC, raw> 
    659 #00658 <AudioTag at offset 0x000D8AE2, time 31637, size 261, AAC, raw> 
    660 #00659 <VideoTag at offset 0x000D8BF6, time 31708, size 3470, H.264 (interframe), NAL unit> 
    661 #00660 <AudioTag at offset 0x000D9993, time 31701, size 260, AAC, raw> 
    662 #00661 <AudioTag at offset 0x000D9AA6, time 31701, size 252, AAC, raw> 
    663 #00662 <AudioTag at offset 0x000D9BB1, time 31701, size 286, AAC, raw> 
    664 #00663 <VideoTag at offset 0x000D9CDE, time 31750, size 3356, H.264 (interframe), NAL unit> 
    665 #00664 <VideoTag at offset 0x000DAA09, time 31792, size 3611, H.264 (interframe), NAL unit> 
    666 #00665 <AudioTag at offset 0x000DB833, time 31765, size 312, AAC, raw> 
    667 #00666 <AudioTag at offset 0x000DB97A, time 31765, size 284, AAC, raw> 
    668 #00667 <AudioTag at offset 0x000DBAA5, time 31765, size 299, AAC, raw> 
    669 #00668 <VideoTag at offset 0x000DBBDF, time 31833, size 3227, H.264 (interframe), NAL unit> 
    670 #00669 <AudioTag at offset 0x000DC889, time 31829, size 282, AAC, raw> 
    671 #00670 <AudioTag at offset 0x000DC9B2, time 31829, size 253, AAC, raw> 
    672 #00671 <AudioTag at offset 0x000DCABE, time 31829, size 283, AAC, raw> 
    673 #00672 <VideoTag at offset 0x000DCBE8, time 31875, size 3222, H.264 (interframe), NAL unit> 
    674 #00673 <VideoTag at offset 0x000DD88D, time 31917, size 3246, H.264 (interframe), NAL unit> 
    675 #00674 <AudioTag at offset 0x000DE54A, time 31893, size 270, AAC, raw> 
    676 #00675 <AudioTag at offset 0x000DE667, time 31893, size 251, AAC, raw> 
    677 #00676 <AudioTag at offset 0x000DE771, time 31893, size 249, AAC, raw> 
    678 #00677 <VideoTag at offset 0x000DE879, time 31958, size 3472, H.264 (interframe), NAL unit> 
    679 #00678 <VideoTag at offset 0x000DF618, time 32000, size 3108, H.264 (interframe), NAL unit> 
    680 #00679 <AudioTag at offset 0x000E024B, time 31957, size 255, AAC, raw> 
    681 #00680 <AudioTag at offset 0x000E0359, time 31957, size 254, AAC, raw> 
    682 #00681 <AudioTag at offset 0x000E0466, time 31957, size 254, AAC, raw> 
    683 #00682 <VideoTag at offset 0x000E0573, time 32042, size 3525, H.264 (interframe), NAL unit> 
    684 #00683 <AudioTag at offset 0x000E1347, time 32021, size 280, AAC, raw> 
    685 #00684 <AudioTag at offset 0x000E146E, time 32021, size 238, AAC, raw> 
    686 #00685 <AudioTag at offset 0x000E156B, time 32021, size 239, AAC, raw> 
    687 #00686 <VideoTag at offset 0x000E1669, time 32083, size 3398, H.264 (interframe), NAL unit> 
    688 #00687 <VideoTag at offset 0x000E23BE, time 32125, size 3310, H.264 (interframe), NAL unit> 
    689 #00688 <AudioTag at offset 0x000E30BB, time 32085, size 244, AAC, raw> 
    690 #00689 <AudioTag at offset 0x000E31BE, time 32085, size 258, AAC, raw> 
    691 #00690 <AudioTag at offset 0x000E32CF, time 32085, size 235, AAC, raw> 
    692 #00691 <VideoTag at offset 0x000E33C9, time 32167, size 4031, H.264 (interframe), NAL unit> 
    693 #00692 <AudioTag at offset 0x000E4397, time 32149, size 259, AAC, raw> 
    694 #00693 <AudioTag at offset 0x000E44A9, time 32149, size 253, AAC, raw> 
    695 #00694 <AudioTag at offset 0x000E45B5, time 32149, size 245, AAC, raw> 
    696 #00695 <VideoTag at offset 0x000E46B9, time 32208, size 2539, H.264 (interframe), NAL unit> 
    697 #00696 <VideoTag at offset 0x000E50B3, time 32250, size 3409, H.264 (interframe), NAL unit> 
    698 #00697 <AudioTag at offset 0x000E5E13, time 32213, size 250, AAC, raw> 
    699 #00698 <AudioTag at offset 0x000E5F1C, time 32213, size 261, AAC, raw> 
    700 #00699 <AudioTag at offset 0x000E6030, time 32213, size 261, AAC, raw> 
    701 #00700 <VideoTag at offset 0x000E6144, time 32292, size 4214, H.264 (interframe), NAL unit> 
    702 #00701 <AudioTag at offset 0x000E71C9, time 32277, size 243, AAC, raw> 
    703 #00702 <AudioTag at offset 0x000E72CB, time 32277, size 271, AAC, raw> 
    704 #00703 <AudioTag at offset 0x000E73E9, time 32277, size 245, AAC, raw> 
    705 #00704 <VideoTag at offset 0x000E74ED, time 32333, size 3519, H.264 (interframe), NAL unit> 
    706 #00705 <VideoTag at offset 0x000E82BB, time 32375, size 2830, H.264 (interframe), NAL unit> 
    707 #00706 <AudioTag at offset 0x000E8DD8, time 32341, size 247, AAC, raw> 
    708 #00707 <AudioTag at offset 0x000E8EDE, time 32341, size 248, AAC, raw> 
    709 #00708 <AudioTag at offset 0x000E8FE5, time 32341, size 239, AAC, raw> 
    710 #00709 <VideoTag at offset 0x000E90E3, time 32417, size 4076, H.264 (interframe), NAL unit> 
    711 #00710 <AudioTag at offset 0x000EA0DE, time 32405, size 254, AAC, raw> 
    712 #00711 <AudioTag at offset 0x000EA1EB, time 32405, size 245, AAC, raw> 
    713 #00712 <AudioTag at offset 0x000EA2EF, time 32405, size 259, AAC, raw> 
    714 #00713 <VideoTag at offset 0x000EA401, time 32458, size 3214, H.264 (interframe), NAL unit> 
    715 #00714 <VideoTag at offset 0x000EB09E, time 32500, size 3444, H.264 (interframe), NAL unit> 
    716 #00715 <AudioTag at offset 0x000EBE21, time 32469, size 250, AAC, raw> 
    717 #00716 <AudioTag at offset 0x000EBF2A, time 32469, size 248, AAC, raw> 
    718 #00717 <AudioTag at offset 0x000EC031, time 32469, size 245, AAC, raw> 
    719 #00718 <VideoTag at offset 0x000EC135, time 32542, size 3668, H.264 (interframe), NAL unit> 
    720 #00719 <AudioTag at offset 0x000ECF98, time 32533, size 226, AAC, raw> 
    721 #00720 <AudioTag at offset 0x000ED089, time 32533, size 245, AAC, raw> 
    722 #00721 <AudioTag at offset 0x000ED18D, time 32533, size 255, AAC, raw> 
    723 #00722 <VideoTag at offset 0x000ED29B, time 32583, size 3216, H.264 (interframe), NAL unit> 
    724 #00723 <VideoTag at offset 0x000EDF3A, time 32625, size 3465, H.264 (interframe), NAL unit> 
    725 #00724 <AudioTag at offset 0x000EECD2, time 32597, size 268, AAC, raw> 
    726 #00725 <AudioTag at offset 0x000EEDED, time 32597, size 244, AAC, raw> 
    727 #00726 <AudioTag at offset 0x000EEEF0, time 32597, size 254, AAC, raw> 
    728 #00727 <VideoTag at offset 0x000EEFFD, time 32667, size 3339, H.264 (interframe), NAL unit> 
    729 #00728 <AudioTag at offset 0x000EFD17, time 32661, size 242, AAC, raw> 
    730 #00729 <AudioTag at offset 0x000EFE18, time 32661, size 245, AAC, raw> 
    731 #00730 <AudioTag at offset 0x000EFF1C, time 32661, size 250, AAC, raw> 
    732 #00731 <VideoTag at offset 0x000F0025, time 32708, size 3314, H.264 (interframe), NAL unit> 
    733 #00732 <VideoTag at offset 0x000F0D26, time 32750, size 3315, H.264 (interframe), NAL unit> 
    734 #00733 <AudioTag at offset 0x000F1A28, time 32725, size 236, AAC, raw> 
    735 #00734 <AudioTag at offset 0x000F1B23, time 32725, size 242, AAC, raw> 
    736 #00735 <AudioTag at offset 0x000F1C24, time 32725, size 248, AAC, raw> 
    737 #00736 <VideoTag at offset 0x000F1D2B, time 32792, size 3288, H.264 (interframe), NAL unit> 
    738 #00737 <AudioTag at offset 0x000F2A12, time 32789, size 249, AAC, raw> 
    739 #00738 <AudioTag at offset 0x000F2B1A, time 32789, size 245, AAC, raw> 
    740 #00739 <AudioTag at offset 0x000F2C1E, time 32789, size 237, AAC, raw> 
    741 #00740 <VideoTag at offset 0x000F2D1A, time 32833, size 3525, H.264 (interframe), NAL unit> 
    742 #00741 <VideoTag at offset 0x000F3AEE, time 32875, size 3435, H.264 (interframe), NAL unit> 
    743 #00742 <AudioTag at offset 0x000F4868, time 32853, size 258, AAC, raw> 
    744 #00743 <AudioTag at offset 0x000F4979, time 32853, size 244, AAC, raw> 
    745 #00744 <AudioTag at offset 0x000F4A7C, time 32853, size 241, AAC, raw> 
    746 #00745 <VideoTag at offset 0x000F4B7C, time 32917, size 3424, H.264 (interframe), NAL unit> 
    747 #00746 <VideoTag at offset 0x000F58EB, time 32958, size 3582, H.264 (interframe), NAL unit> 
    748 #00747 <AudioTag at offset 0x000F66F8, time 32917, size 239, AAC, raw> 
    749 #00748 <AudioTag at offset 0x000F67F6, time 32917, size 247, AAC, raw> 
    750 #00749 <AudioTag at offset 0x000F68FC, time 32917, size 234, AAC, raw> 
    751 #00750 <VideoTag at offset 0x000F69F5, time 33000, size 3556, H.264 (interframe), NAL unit> 
    752 #00751 <AudioTag at offset 0x000F77E8, time 32981, size 248, AAC, raw> 
    753 #00752 <AudioTag at offset 0x000F78EF, time 32981, size 122, AAC, raw> 
    754 #00753 <AudioTag at offset 0x000F7978, time 32981, size 107, AAC, raw> 
    755 #00754 <AudioTag at offset 0x000F79F2, time 32981, size 220, AAC, raw> 
    756 #00755 <VideoTag at offset 0x000F7ADD, time 33042, size 3213, H.264 (interframe), NAL unit> 
    757 #00756 <VideoTag at offset 0x000F8779, time 33083, size 3510, H.264 (interframe), NAL unit> 
    758 #00757 <AudioTag at offset 0x000F953E, time 33045, size 244, AAC, raw> 
    759 #00758 <AudioTag at offset 0x000F9641, time 33045, size 247, AAC, raw> 
    760 #00759 <AudioTag at offset 0x000F9747, time 33045, size 244, AAC, raw> 
    761 #00760 <VideoTag at offset 0x000F984A, time 33125, size 3577, H.264 (interframe), NAL unit> 
    762 #00761 <AudioTag at offset 0x000FA652, time 33109, size 242, AAC, raw> 
    763 #00762 <AudioTag at offset 0x000FA753, time 33109, size 246, AAC, raw> 
    764 #00763 <AudioTag at offset 0x000FA858, time 33109, size 258, AAC, raw> 
    765 #00764 <VideoTag at offset 0x000FA969, time 33167, size 3644, H.264 (interframe), NAL unit> 
    766 #00765 <VideoTag at offset 0x000FB7B4, time 33208, size 3170, H.264 (interframe), NAL unit> 
    767 #00766 <AudioTag at offset 0x000FC425, time 33173, size 250, AAC, raw> 
    768 #00767 <AudioTag at offset 0x000FC52E, time 33173, size 252, AAC, raw> 
    769 #00768 <AudioTag at offset 0x000FC639, time 33173, size 235, AAC, raw> 
    770 #00769 <VideoTag at offset 0x000FC733, time 33250, size 3718, H.264 (interframe), NAL unit> 
    771 #00770 <AudioTag at offset 0x000FD5C8, time 33237, size 235, AAC, raw> 
    772 #00771 <AudioTag at offset 0x000FD6C2, time 33237, size 236, AAC, raw> 
    773 #00772 <AudioTag at offset 0x000FD7BD, time 33237, size 241, AAC, raw> 
    774 #00773 <VideoTag at offset 0x000FD8BD, time 33292, size 3472, H.264 (interframe), NAL unit> 
    775 #00774 <VideoTag at offset 0x000FE65C, time 33333, size 3094, H.264 (interframe), NAL unit> 
    776 #00775 <AudioTag at offset 0x000FF281, time 33301, size 233, AAC, raw> 
    777 #00776 <AudioTag at offset 0x000FF379, time 33301, size 244, AAC, raw> 
    778 #00777 <AudioTag at offset 0x000FF47C, time 33301, size 241, AAC, raw> 
    779 #00778 <VideoTag at offset 0x000FF57C, time 33375, size 3702, H.264 (interframe), NAL unit> 
    780 #00779 <AudioTag at offset 0x00100401, time 33365, size 236, AAC, raw> 
    781 #00780 <AudioTag at offset 0x001004FC, time 33365, size 255, AAC, raw> 
    782 #00781 <AudioTag at offset 0x0010060A, time 33365, size 257, AAC, raw> 
    783 #00782 <VideoTag at offset 0x0010071A, time 33417, size 3275, H.264 (interframe), NAL unit> 
    784 #00783 <VideoTag at offset 0x001013F4, time 33458, size 3712, H.264 (interframe), NAL unit> 
    785 #00784 <AudioTag at offset 0x00102283, time 33429, size 256, AAC, raw> 
    786 #00785 <AudioTag at offset 0x00102392, time 33429, size 236, AAC, raw> 
    787 #00786 <AudioTag at offset 0x0010248D, time 33429, size 241, AAC, raw> 
    788 #00787 <VideoTag at offset 0x0010258D, time 33500, size 3261, H.264 (interframe), NAL unit> 
    789 #00788 <AudioTag at offset 0x00103259, time 33493, size 242, AAC, raw> 
    790 #00789 <AudioTag at offset 0x0010335A, time 33493, size 246, AAC, raw> 
    791 #00790 <AudioTag at offset 0x0010345F, time 33493, size 241, AAC, raw> 
    792 #00791 <VideoTag at offset 0x0010355F, time 33542, size 3782, H.264 (interframe), NAL unit> 
    793 #00792 <VideoTag at offset 0x00104434, time 33583, size 3626, H.264 (interframe), NAL unit> 
    794 #00793 <AudioTag at offset 0x0010526D, time 33557, size 242, AAC, raw> 
    795 #00794 <AudioTag at offset 0x0010536E, time 33557, size 264, AAC, raw> 
    796 #00795 <AudioTag at offset 0x00105485, time 33557, size 242, AAC, raw> 
    797 #00796 <VideoTag at offset 0x00105586, time 33625, size 3486, H.264 (interframe), NAL unit> 
    798 #00797 <VideoTag at offset 0x00106333, time 33667, size 3809, H.264 (interframe), NAL unit> 
    799 #00798 <AudioTag at offset 0x00107223, time 33621, size 249, AAC, raw> 
    800 #00799 <AudioTag at offset 0x0010732B, time 33621, size 260, AAC, raw> 
    801 #00800 <AudioTag at offset 0x0010743E, time 33621, size 252, AAC, raw> 
    802 #00801 <AudioTag at offset 0x00107549, time 33621, size 255, AAC, raw> 
    803 #00802 <AudioTag at offset 0x00107657, time 33621, size 248, AAC, raw> 
    804 #00803 <VideoTag at offset 0x0010775E, time 33708, size 3918, H.264 (interframe), NAL unit> 
     1#00001 <AudioTag at offset 0x0000000D, time 0, size 4, AAC, sequence header> 
     2#00002 <AudioTag at offset 0x00000020, time 0, size 247, AAC, raw> 
     3#00003 <AudioTag at offset 0x00000126, time 0, size 251, AAC, raw> 
     4#00004 <AudioTag at offset 0x00000230, time 0, size 242, AAC, raw> 
     5#00005 <VideoTag at offset 0x00000331, time 15, size 43, H.264 (keyframe), sequence header> 
     6#00006 <VideoTag at offset 0x0000036B, time 15, size 13255, H.264 (keyframe), NAL unit> 
     7#00007 <VideoTag at offset 0x00003741, time 57, size 161, H.264 (interframe), NAL unit> 
     8#00008 <AudioTag at offset 0x000037F1, time 64, size 250, AAC, raw> 
     9#00009 <AudioTag at offset 0x000038FA, time 64, size 229, AAC, raw> 
     10#00010 <AudioTag at offset 0x000039EE, time 64, size 263, AAC, raw> 
     11#00011 <VideoTag at offset 0x00003B04, time 98, size 116, H.264 (interframe), NAL unit> 
     12#00012 <AudioTag at offset 0x00003B87, time 128, size 234, AAC, raw> 
     13#00013 <AudioTag at offset 0x00003C80, time 128, size 233, AAC, raw> 
     14#00014 <AudioTag at offset 0x00003D78, time 128, size 242, AAC, raw> 
     15#00015 <VideoTag at offset 0x00003E79, time 140, size 114, H.264 (interframe), NAL unit> 
     16#00016 <VideoTag at offset 0x00003EFA, time 182, size 81, H.264 (interframe), NAL unit> 
     17#00017 <AudioTag at offset 0x00003F5A, time 192, size 260, AAC, raw> 
     18#00018 <AudioTag at offset 0x0000406D, time 192, size 257, AAC, raw> 
     19#00019 <AudioTag at offset 0x0000417D, time 192, size 242, AAC, raw> 
     20#00020 <VideoTag at offset 0x0000427E, time 223, size 82, H.264 (interframe), NAL unit> 
     21#00021 <AudioTag at offset 0x000042DF, time 256, size 257, AAC, raw> 
     22#00022 <AudioTag at offset 0x000043EF, time 256, size 249, AAC, raw> 
     23#00023 <AudioTag at offset 0x000044F7, time 256, size 248, AAC, raw> 
     24#00024 <VideoTag at offset 0x000045FE, time 265, size 104, H.264 (interframe), NAL unit> 
     25#00025 <VideoTag at offset 0x00004675, time 307, size 100, H.264 (interframe), NAL unit> 
     26#00026 <AudioTag at offset 0x000046E8, time 320, size 243, AAC, raw> 
     27#00027 <AudioTag at offset 0x000047EA, time 320, size 263, AAC, raw> 
     28#00028 <AudioTag at offset 0x00004900, time 320, size 263, AAC, raw> 
     29#00029 <VideoTag at offset 0x00004A16, time 348, size 37, H.264 (interframe), NAL unit> 
     30#00030 <AudioTag at offset 0x00004A4A, time 384, size 255, AAC, raw> 
     31#00031 <AudioTag at offset 0x00004B58, time 384, size 254, AAC, raw> 
     32#00032 <AudioTag at offset 0x00004C65, time 384, size 253, AAC, raw> 
     33#00033 <VideoTag at offset 0x00004D71, time 390, size 29, H.264 (interframe), NAL unit> 
     34#00034 <VideoTag at offset 0x00004D9D, time 432, size 51, H.264 (interframe), NAL unit> 
     35#00035 <AudioTag at offset 0x00004DDF, time 448, size 254, AAC, raw> 
     36#00036 <AudioTag at offset 0x00004EEC, time 448, size 273, AAC, raw> 
     37#00037 <AudioTag at offset 0x0000500C, time 448, size 245, AAC, raw> 
     38#00038 <VideoTag at offset 0x00005110, time 473, size 46, H.264 (interframe), NAL unit> 
     39#00039 <AudioTag at offset 0x0000514D, time 512, size 249, AAC, raw> 
     40#00040 <AudioTag at offset 0x00005255, time 512, size 254, AAC, raw> 
     41#00041 <AudioTag at offset 0x00005362, time 512, size 276, AAC, raw> 
     42#00042 <VideoTag at offset 0x00005485, time 515, size 52, H.264 (interframe), NAL unit> 
     43#00043 <VideoTag at offset 0x000054C8, time 557, size 32730, H.264 (interframe), NAL unit> 
     44#00044 <AudioTag at offset 0x0000D4B1, time 576, size 269, AAC, raw> 
     45#00045 <AudioTag at offset 0x0000D5CD, time 576, size 282, AAC, raw> 
     46#00046 <AudioTag at offset 0x0000D6F6, time 576, size 269, AAC, raw> 
     47#00047 <VideoTag at offset 0x0000D812, time 598, size 551, H.264 (interframe), NAL unit> 
     48#00048 <VideoTag at offset 0x0000DA48, time 640, size 1386, H.264 (interframe), NAL unit> 
     49#00049 <AudioTag at offset 0x0000DFC1, time 640, size 264, AAC, raw> 
     50#00050 <AudioTag at offset 0x0000E0D8, time 640, size 286, AAC, raw> 
     51#00051 <AudioTag at offset 0x0000E205, time 640, size 281, AAC, raw> 
     52#00052 <VideoTag at offset 0x0000E32D, time 682, size 1832, H.264 (interframe), NAL unit> 
     53#00053 <AudioTag at offset 0x0000EA64, time 704, size 287, AAC, raw> 
     54#00054 <AudioTag at offset 0x0000EB92, time 704, size 271, AAC, raw> 
     55#00055 <AudioTag at offset 0x0000ECB0, time 704, size 291, AAC, raw> 
     56#00056 <VideoTag at offset 0x0000EDE2, time 723, size 2195, H.264 (interframe), NAL unit> 
     57#00057 <VideoTag at offset 0x0000F684, time 765, size 2354, H.264 (interframe), NAL unit> 
     58#00058 <AudioTag at offset 0x0000FFC5, time 768, size 276, AAC, raw> 
     59#00059 <AudioTag at offset 0x000100E8, time 768, size 277, AAC, raw> 
     60#00060 <AudioTag at offset 0x0001020C, time 768, size 282, AAC, raw> 
     61#00061 <VideoTag at offset 0x00010335, time 807, size 2645, H.264 (interframe), NAL unit> 
     62#00062 <AudioTag at offset 0x00010D99, time 832, size 283, AAC, raw> 
     63#00063 <AudioTag at offset 0x00010EC3, time 832, size 260, AAC, raw> 
     64#00064 <AudioTag at offset 0x00010FD6, time 832, size 267, AAC, raw> 
     65#00065 <VideoTag at offset 0x000110F0, time 848, size 2720, H.264 (interframe), NAL unit> 
     66#00066 <VideoTag at offset 0x00011B9F, time 890, size 2854, H.264 (interframe), NAL unit> 
     67#00067 <AudioTag at offset 0x000126D4, time 896, size 259, AAC, raw> 
     68#00068 <AudioTag at offset 0x000127E6, time 896, size 280, AAC, raw> 
     69#00069 <AudioTag at offset 0x0001290D, time 896, size 293, AAC, raw> 
     70#00070 <VideoTag at offset 0x00012A41, time 932, size 2881, H.264 (interframe), NAL unit> 
     71#00071 <AudioTag at offset 0x00013591, time 960, size 267, AAC, raw> 
     72#00072 <AudioTag at offset 0x000136AB, time 960, size 293, AAC, raw> 
     73#00073 <AudioTag at offset 0x000137DF, time 960, size 246, AAC, raw> 
     74#00074 <VideoTag at offset 0x000138E4, time 973, size 3023, H.264 (interframe), NAL unit> 
     75#00075 <VideoTag at offset 0x000144C2, time 1015, size 3136, H.264 (interframe), NAL unit> 
     76#00076 <AudioTag at offset 0x00015111, time 1024, size 297, AAC, raw> 
     77#00077 <AudioTag at offset 0x00015249, time 1024, size 291, AAC, raw> 
     78#00078 <AudioTag at offset 0x0001537B, time 1024, size 289, AAC, raw> 
     79#00079 <VideoTag at offset 0x000154AB, time 1057, size 3317, H.264 (interframe), NAL unit> 
     80#00080 <AudioTag at offset 0x000161AF, time 1088, size 262, AAC, raw> 
     81#00081 <AudioTag at offset 0x000162C4, time 1088, size 264, AAC, raw> 
     82#00082 <AudioTag at offset 0x000163DB, time 1088, size 273, AAC, raw> 
     83#00083 <VideoTag at offset 0x000164FB, time 1098, size 3179, H.264 (interframe), NAL unit> 
     84#00084 <VideoTag at offset 0x00017175, time 1140, size 3238, H.264 (interframe), NAL unit> 
     85#00085 <AudioTag at offset 0x00017E2A, time 1152, size 259, AAC, raw> 
     86#00086 <AudioTag at offset 0x00017F3C, time 1152, size 272, AAC, raw> 
     87#00087 <AudioTag at offset 0x0001805B, time 1152, size 282, AAC, raw> 
     88#00088 <VideoTag at offset 0x00018184, time 1182, size 3517, H.264 (interframe), NAL unit> 
     89#00089 <AudioTag at offset 0x00018F50, time 1216, size 249, AAC, raw> 
     90#00090 <AudioTag at offset 0x00019058, time 1216, size 258, AAC, raw> 
     91#00091 <AudioTag at offset 0x00019169, time 1216, size 248, AAC, raw> 
     92#00092 <VideoTag at offset 0x00019270, time 1223, size 3149, H.264 (interframe), NAL unit> 
     93#00093 <VideoTag at offset 0x00019ECC, time 1265, size 3413, H.264 (interframe), NAL unit> 
     94#00094 <AudioTag at offset 0x0001AC30, time 1280, size 267, AAC, raw> 
     95#00095 <AudioTag at offset 0x0001AD4A, time 1280, size 257, AAC, raw> 
     96#00096 <AudioTag at offset 0x0001AE5A, time 1280, size 256, AAC, raw> 
     97#00097 <VideoTag at offset 0x0001AF69, time 1307, size 3457, H.264 (interframe), NAL unit> 
     98#00098 <AudioTag at offset 0x0001BCF9, time 1344, size 276, AAC, raw> 
     99#00099 <AudioTag at offset 0x0001BE1C, time 1344, size 279, AAC, raw> 
     100#00100 <AudioTag at offset 0x0001BF42, time 1344, size 267, AAC, raw> 
     101#00101 <VideoTag at offset 0x0001C05C, time 1348, size 3622, H.264 (interframe), NAL unit> 
     102#00102 <VideoTag at offset 0x0001CE91, time 1390, size 3552, H.264 (interframe), NAL unit> 
     103#00103 <AudioTag at offset 0x0001DC80, time 1408, size 278, AAC, raw> 
     104#00104 <AudioTag at offset 0x0001DDA5, time 1408, size 274, AAC, raw> 
     105#00105 <AudioTag at offset 0x0001DEC6, time 1408, size 286, AAC, raw> 
     106#00106 <VideoTag at offset 0x0001DFF3, time 1432, size 3415, H.264 (interframe), NAL unit> 
     107#00107 <AudioTag at offset 0x0001ED59, time 1472, size 267, AAC, raw> 
     108#00108 <AudioTag at offset 0x0001EE73, time 1472, size 277, AAC, raw> 
     109#00109 <AudioTag at offset 0x0001EF97, time 1472, size 250, AAC, raw> 
     110#00110 <VideoTag at offset 0x0001F0A0, time 1473, size 3580, H.264 (interframe), NAL unit> 
     111#00111 <VideoTag at offset 0x0001FEAB, time 1515, size 3335, H.264 (interframe), NAL unit> 
     112#00112 <AudioTag at offset 0x00020BC1, time 1536, size 278, AAC, raw> 
     113#00113 <AudioTag at offset 0x00020CE6, time 1536, size 266, AAC, raw> 
     114#00114 <AudioTag at offset 0x00020DFF, time 1536, size 270, AAC, raw> 
     115#00115 <VideoTag at offset 0x00020F1C, time 1557, size 3668, H.264 (interframe), NAL unit> 
     116#00116 <VideoTag at offset 0x00021D7F, time 1598, size 3424, H.264 (interframe), NAL unit> 
     117#00117 <AudioTag at offset 0x00022AEE, time 1600, size 282, AAC, raw> 
     118#00118 <AudioTag at offset 0x00022C17, time 1600, size 279, AAC, raw> 
     119#00119 <AudioTag at offset 0x00022D3D, time 1600, size 269, AAC, raw> 
     120#00120 <VideoTag at offset 0x00022E59, time 1640, size 3771, H.264 (interframe), NAL unit> 
     121#00121 <AudioTag at offset 0x00023D23, time 1664, size 285, AAC, raw> 
     122#00122 <AudioTag at offset 0x00023E4F, time 1664, size 286, AAC, raw> 
     123#00123 <AudioTag at offset 0x00023F7C, time 1664, size 288, AAC, raw> 
     124#00124 <VideoTag at offset 0x000240AB, time 1682, size 3495, H.264 (interframe), NAL unit> 
     125#00125 <VideoTag at offset 0x00024E61, time 1723, size 3526, H.264 (interframe), NAL unit> 
     126#00126 <AudioTag at offset 0x00025C36, time 1728, size 270, AAC, raw> 
     127#00127 <AudioTag at offset 0x00025D53, time 1728, size 255, AAC, raw> 
     128#00128 <AudioTag at offset 0x00025E61, time 1728, size 261, AAC, raw> 
     129#00129 <VideoTag at offset 0x00025F75, time 1765, size 3631, H.264 (interframe), NAL unit> 
     130#00130 <AudioTag at offset 0x00026DB3, time 1792, size 267, AAC, raw> 
     131#00131 <AudioTag at offset 0x00026ECD, time 1792, size 287, AAC, raw> 
     132#00132 <AudioTag at offset 0x00026FFB, time 1792, size 274, AAC, raw> 
     133#00133 <VideoTag at offset 0x0002711C, time 1807, size 3818, H.264 (interframe), NAL unit> 
     134#00134 <VideoTag at offset 0x00028015, time 1848, size 3310, H.264 (interframe), NAL unit> 
     135#00135 <AudioTag at offset 0x00028D12, time 1856, size 247, AAC, raw> 
     136#00136 <AudioTag at offset 0x00028E18, time 1856, size 284, AAC, raw> 
     137#00137 <AudioTag at offset 0x00028F43, time 1856, size 269, AAC, raw> 
     138#00138 <VideoTag at offset 0x0002905F, time 1890, size 3621, H.264 (interframe), NAL unit> 
     139#00139 <AudioTag at offset 0x00029E93, time 1920, size 267, AAC, raw> 
     140#00140 <AudioTag at offset 0x00029FAD, time 1920, size 253, AAC, raw> 
     141#00141 <AudioTag at offset 0x0002A0B9, time 1920, size 271, AAC, raw> 
     142#00142 <VideoTag at offset 0x0002A1D7, time 1932, size 3580, H.264 (interframe), NAL unit> 
     143#00143 <VideoTag at offset 0x0002AFE2, time 1973, size 2741, H.264 (interframe), NAL unit> 
     144#00144 <AudioTag at offset 0x0002BAA6, time 1984, size 273, AAC, raw> 
     145#00145 <AudioTag at offset 0x0002BBC6, time 1984, size 243, AAC, raw> 
     146#00146 <AudioTag at offset 0x0002BCC8, time 1984, size 282, AAC, raw> 
     147#00147 <VideoTag at offset 0x0002BDF1, time 2015, size 3944, H.264 (interframe), NAL unit> 
     148#00148 <AudioTag at offset 0x0002CD68, time 2048, size 305, AAC, raw> 
     149#00149 <AudioTag at offset 0x0002CEA8, time 2048, size 293, AAC, raw> 
     150#00150 <AudioTag at offset 0x0002CFDC, time 2048, size 299, AAC, raw> 
     151#00151 <VideoTag at offset 0x0002D116, time 2057, size 3498, H.264 (interframe), NAL unit> 
     152#00152 <VideoTag at offset 0x0002DECF, time 2098, size 3966, H.264 (interframe), NAL unit> 
     153#00153 <AudioTag at offset 0x0002EE5C, time 2112, size 246, AAC, raw> 
     154#00154 <AudioTag at offset 0x0002EF61, time 2112, size 265, AAC, raw> 
     155#00155 <AudioTag at offset 0x0002F079, time 2112, size 277, AAC, raw> 
     156#00156 <VideoTag at offset 0x0002F19D, time 2140, size 3553, H.264 (interframe), NAL unit> 
     157#00157 <AudioTag at offset 0x0002FF8D, time 2176, size 252, AAC, raw> 
     158#00158 <AudioTag at offset 0x00030098, time 2176, size 256, AAC, raw> 
     159#00159 <AudioTag at offset 0x000301A7, time 2176, size 266, AAC, raw> 
     160#00160 <VideoTag at offset 0x000302C0, time 2182, size 2751, H.264 (interframe), NAL unit> 
     161#00161 <VideoTag at offset 0x00030D8E, time 2223, size 2833, H.264 (interframe), NAL unit> 
     162#00162 <AudioTag at offset 0x000318AE, time 2240, size 271, AAC, raw> 
     163#00163 <AudioTag at offset 0x000319CC, time 2240, size 296, AAC, raw> 
     164#00164 <AudioTag at offset 0x00031B03, time 2240, size 268, AAC, raw> 
     165#00165 <VideoTag at offset 0x00031C1E, time 2265, size 4233, H.264 (interframe), NAL unit> 
     166#00166 <AudioTag at offset 0x00032CB6, time 2304, size 257, AAC, raw> 
     167#00167 <AudioTag at offset 0x00032DC6, time 2304, size 298, AAC, raw> 
     168#00168 <AudioTag at offset 0x00032EFF, time 2304, size 270, AAC, raw> 
     169#00169 <VideoTag at offset 0x0003301C, time 2307, size 3563, H.264 (interframe), NAL unit> 
     170#00170 <VideoTag at offset 0x00033E16, time 2348, size 4034, H.264 (interframe), NAL unit> 
     171#00171 <AudioTag at offset 0x00034DE7, time 2368, size 261, AAC, raw> 
     172#00172 <AudioTag at offset 0x00034EFB, time 2368, size 268, AAC, raw> 
     173#00173 <AudioTag at offset 0x00035016, time 2368, size 286, AAC, raw> 
     174#00174 <VideoTag at offset 0x00035143, time 2390, size 3986, H.264 (interframe), NAL unit> 
     175#00175 <VideoTag at offset 0x000360E4, time 2432, size 4129, H.264 (interframe), NAL unit> 
     176#00176 <AudioTag at offset 0x00037114, time 2432, size 285, AAC, raw> 
     177#00177 <AudioTag at offset 0x00037240, time 2432, size 267, AAC, raw> 
     178#00178 <AudioTag at offset 0x0003735A, time 2432, size 282, AAC, raw> 
     179#00179 <VideoTag at offset 0x00037483, time 2473, size 3412, H.264 (interframe), NAL unit> 
     180#00180 <AudioTag at offset 0x000381E6, time 2496, size 263, AAC, raw> 
     181#00181 <AudioTag at offset 0x000382FC, time 2496, size 285, AAC, raw> 
     182#00182 <AudioTag at offset 0x00038428, time 2496, size 281, AAC, raw> 
     183#00183 <VideoTag at offset 0x00038550, time 2515, size 4812, H.264 (interframe), NAL unit> 
     184#00184 <VideoTag at offset 0x0003982B, time 2557, size 3245, H.264 (interframe), NAL unit> 
     185#00185 <AudioTag at offset 0x0003A4E7, time 2560, size 247, AAC, raw> 
     186#00186 <AudioTag at offset 0x0003A5ED, time 2560, size 262, AAC, raw> 
     187#00187 <AudioTag at offset 0x0003A702, time 2560, size 284, AAC, raw> 
     188#00188 <VideoTag at offset 0x0003A82D, time 2598, size 5120, H.264 (interframe), NAL unit> 
     189#00189 <AudioTag at offset 0x0003BC3C, time 2624, size 272, AAC, raw> 
     190#00190 <AudioTag at offset 0x0003BD5B, time 2624, size 277, AAC, raw> 
     191#00191 <AudioTag at offset 0x0003BE7F, time 2624, size 266, AAC, raw> 
     192#00192 <VideoTag at offset 0x0003BF98, time 2640, size 4423, H.264 (interframe), NAL unit> 
     193#00193 <VideoTag at offset 0x0003D0EE, time 2682, size 4635, H.264 (interframe), NAL unit> 
     194#00194 <AudioTag at offset 0x0003E318, time 2688, size 279, AAC, raw> 
     195#00195 <AudioTag at offset 0x0003E43E, time 2688, size 311, AAC, raw> 
     196#00196 <AudioTag at offset 0x0003E584, time 2688, size 279, AAC, raw> 
     197#00197 <VideoTag at offset 0x0003E6AA, time 2723, size 4550, H.264 (interframe), NAL unit> 
     198#00198 <AudioTag at offset 0x0003F87F, time 2752, size 315, AAC, raw> 
     199#00199 <AudioTag at offset 0x0003F9C9, time 2752, size 276, AAC, raw> 
     200#00200 <AudioTag at offset 0x0003FAEC, time 2752, size 265, AAC, raw> 
     201#00201 <VideoTag at offset 0x0003FC04, time 2765, size 4249, H.264 (interframe), NAL unit> 
     202#00202 <VideoTag at offset 0x00040CAC, time 2807, size 4423, H.264 (interframe), NAL unit> 
     203#00203 <AudioTag at offset 0x00041E02, time 2816, size 311, AAC, raw> 
     204#00204 <AudioTag at offset 0x00041F48, time 2816, size 253, AAC, raw> 
     205#00205 <AudioTag at offset 0x00042054, time 2816, size 265, AAC, raw> 
     206#00206 <VideoTag at offset 0x0004216C, time 2848, size 4519, H.264 (interframe), NAL unit> 
     207#00207 <AudioTag at offset 0x00043322, time 2880, size 274, AAC, raw> 
     208#00208 <AudioTag at offset 0x00043443, time 2880, size 257, AAC, raw> 
     209#00209 <AudioTag at offset 0x00043553, time 2880, size 279, AAC, raw> 
     210#00210 <VideoTag at offset 0x00043679, time 2890, size 4628, H.264 (interframe), NAL unit> 
     211#00211 <VideoTag at offset 0x0004489C, time 2932, size 4654, H.264 (interframe), NAL unit> 
     212#00212 <AudioTag at offset 0x00045AD9, time 2944, size 311, AAC, raw> 
     213#00213 <AudioTag at offset 0x00045C1F, time 2944, size 290, AAC, raw> 
     214#00214 <AudioTag at offset 0x00045D50, time 2944, size 298, AAC, raw> 
     215#00215 <VideoTag at offset 0x00045E89, time 2973, size 4896, H.264 (interframe), NAL unit> 
     216#00216 <AudioTag at offset 0x000471B8, time 3008, size 316, AAC, raw> 
     217#00217 <AudioTag at offset 0x00047303, time 3008, size 292, AAC, raw> 
     218#00218 <AudioTag at offset 0x00047436, time 3008, size 276, AAC, raw> 
     219#00219 <VideoTag at offset 0x00047559, time 3015, size 4625, H.264 (interframe), NAL unit> 
     220#00220 <VideoTag at offset 0x00048779, time 3057, size 4660, H.264 (interframe), NAL unit> 
     221#00221 <AudioTag at offset 0x000499BC, time 3072, size 280, AAC, raw> 
     222#00222 <AudioTag at offset 0x00049AE3, time 3072, size 360, AAC, raw> 
     223#00223 <AudioTag at offset 0x00049C5A, time 3072, size 256, AAC, raw> 
     224#00224 <VideoTag at offset 0x00049D69, time 3098, size 4708, H.264 (interframe), NAL unit> 
     225#00225 <AudioTag at offset 0x0004AFDC, time 3136, size 296, AAC, raw> 
     226#00226 <AudioTag at offset 0x0004B113, time 3136, size 304, AAC, raw> 
     227#00227 <AudioTag at offset 0x0004B252, time 3136, size 305, AAC, raw> 
     228#00228 <VideoTag at offset 0x0004B392, time 3140, size 4704, H.264 (interframe), NAL unit> 
     229#00229 <VideoTag at offset 0x0004C601, time 3182, size 4757, H.264 (interframe), NAL unit> 
     230#00230 <AudioTag at offset 0x0004D8A5, time 3200, size 314, AAC, raw> 
     231#00231 <AudioTag at offset 0x0004D9EE, time 3200, size 282, AAC, raw> 
     232#00232 <AudioTag at offset 0x0004DB17, time 3200, size 306, AAC, raw> 
     233#00233 <VideoTag at offset 0x0004DC58, time 3223, size 4241, H.264 (interframe), NAL unit> 
     234#00234 <AudioTag at offset 0x0004ECF8, time 3264, size 282, AAC, raw> 
     235#00235 <AudioTag at offset 0x0004EE21, time 3264, size 309, AAC, raw> 
     236#00236 <AudioTag at offset 0x0004EF65, time 3264, size 307, AAC, raw> 
     237#00237 <VideoTag at offset 0x0004F0A7, time 3265, size 4731, H.264 (interframe), NAL unit> 
     238#00238 <VideoTag at offset 0x00050331, time 3307, size 4163, H.264 (interframe), NAL unit> 
     239#00239 <AudioTag at offset 0x00051383, time 3328, size 283, AAC, raw> 
     240#00240 <AudioTag at offset 0x000514AD, time 3328, size 282, AAC, raw> 
     241#00241 <AudioTag at offset 0x000515D6, time 3328, size 315, AAC, raw> 
     242#00242 <VideoTag at offset 0x00051720, time 3348, size 4222, H.264 (interframe), NAL unit> 
     243#00243 <VideoTag at offset 0x000527AD, time 3390, size 4374, H.264 (interframe), NAL unit> 
     244#00244 <AudioTag at offset 0x000538D2, time 3392, size 263, AAC, raw> 
     245#00245 <AudioTag at offset 0x000539E8, time 3392, size 308, AAC, raw> 
     246#00246 <AudioTag at offset 0x00053B2B, time 3392, size 337, AAC, raw> 
     247#00247 <VideoTag at offset 0x00053C8B, time 3432, size 4235, H.264 (interframe), NAL unit> 
     248#00248 <AudioTag at offset 0x00054D25, time 3456, size 300, AAC, raw> 
     249#00249 <AudioTag at offset 0x00054E60, time 3456, size 271, AAC, raw> 
     250#00250 <AudioTag at offset 0x00054F7E, time 3456, size 273, AAC, raw> 
     251#00251 <VideoTag at offset 0x0005509E, time 3473, size 4225, H.264 (interframe), NAL unit> 
     252#00252 <VideoTag at offset 0x0005612E, time 3515, size 4124, H.264 (interframe), NAL unit> 
     253#00253 <AudioTag at offset 0x00057159, time 3520, size 300, AAC, raw> 
     254#00254 <AudioTag at offset 0x00057294, time 3520, size 280, AAC, raw> 
     255#00255 <AudioTag at offset 0x000573BB, time 3520, size 303, AAC, raw> 
     256#00256 <VideoTag at offset 0x000574F9, time 3557, size 4334, H.264 (interframe), NAL unit> 
     257#00257 <AudioTag at offset 0x000585F6, time 3584, size 250, AAC, raw> 
     258#00258 <AudioTag at offset 0x000586FF, time 3584, size 303, AAC, raw> 
     259#00259 <AudioTag at offset 0x0005883D, time 3584, size 271, AAC, raw> 
     260#00260 <VideoTag at offset 0x0005895B, time 3598, size 3726, H.264 (interframe), NAL unit> 
     261#00261 <VideoTag at offset 0x000597F8, time 3640, size 3769, H.264 (interframe), NAL unit> 
     262#00262 <AudioTag at offset 0x0005A6C0, time 3648, size 259, AAC, raw> 
     263#00263 <AudioTag at offset 0x0005A7D2, time 3648, size 283, AAC, raw> 
     264#00264 <AudioTag at offset 0x0005A8FC, time 3648, size 259, AAC, raw> 
     265#00265 <VideoTag at offset 0x0005AA0E, time 3682, size 6045, H.264 (interframe), NAL unit> 
     266#00266 <AudioTag at offset 0x0005C1BA, time 3712, size 250, AAC, raw> 
     267#00267 <AudioTag at offset 0x0005C2C3, time 3712, size 256, AAC, raw> 
     268#00268 <AudioTag at offset 0x0005C3D2, time 3712, size 237, AAC, raw> 
     269#00269 <VideoTag at offset 0x0005C4CE, time 3723, size 2843, H.264 (interframe), NAL unit> 
     270#00270 <VideoTag at offset 0x0005CFF8, time 3765, size 32695, H.264 (interframe), NAL unit> 
     271#00271 <AudioTag at offset 0x00064FBE, time 3776, size 290, AAC, raw> 
     272#00272 <AudioTag at offset 0x000650EF, time 3776, size 280, AAC, raw> 
     273#00273 <AudioTag at offset 0x00065216, time 3776, size 306, AAC, raw> 
     274#00274 <VideoTag at offset 0x00065357, time 3807, size 690, H.264 (interframe), NAL unit> 
     275#00275 <AudioTag at offset 0x00065618, time 3840, size 261, AAC, raw> 
     276#00276 <AudioTag at offset 0x0006572C, time 3840, size 279, AAC, raw> 
     277#00277 <AudioTag at offset 0x00065852, time 3840, size 284, AAC, raw> 
     278#00278 <VideoTag at offset 0x0006597D, time 3848, size 1489, H.264 (interframe), NAL unit> 
     279#00279 <VideoTag at offset 0x00065F5D, time 3890, size 1735, H.264 (interframe), NAL unit> 
     280#00280 <AudioTag at offset 0x00066633, time 3904, size 276, AAC, raw> 
     281#00281 <AudioTag at offset 0x00066756, time 3904, size 272, AAC, raw> 
     282#00282 <AudioTag at offset 0x00066875, time 3904, size 270, AAC, raw> 
     283#00283 <VideoTag at offset 0x00066992, time 3932, size 2224, H.264 (interframe), NAL unit> 
     284#00284 <AudioTag at offset 0x00067251, time 3968, size 255, AAC, raw> 
     285#00285 <AudioTag at offset 0x0006735F, time 3968, size 240, AAC, raw> 
     286#00286 <AudioTag at offset 0x0006745E, time 3968, size 269, AAC, raw> 
     287#00287 <VideoTag at offset 0x0006757A, time 3973, size 2354, H.264 (interframe), NAL unit> 
     288#00288 <VideoTag at offset 0x00067EBB, time 4015, size 2598, H.264 (interframe), NAL unit> 
     289#00289 <AudioTag at offset 0x000688F0, time 4032, size 262, AAC, raw> 
     290#00290 <AudioTag at offset 0x00068A05, time 4032, size 238, AAC, raw> 
     291#00291 <AudioTag at offset 0x00068B02, time 4032, size 264, AAC, raw> 
     292#00292 <VideoTag at offset 0x00068C19, time 4057, size 2771, H.264 (interframe), NAL unit> 
     293#00293 <AudioTag at offset 0x000696FB, time 4096, size 314, AAC, raw> 
     294#00294 <AudioTag at offset 0x00069844, time 4096, size 271, AAC, raw> 
     295#00295 <AudioTag at offset 0x00069962, time 4096, size 284, AAC, raw> 
     296#00296 <VideoTag at offset 0x00069A8D, time 4098, size 2627, H.264 (interframe), NAL unit> 
     297#00297 <VideoTag at offset 0x0006A4DF, time 4140, size 3091, H.264 (interframe), NAL unit> 
     298#00298 <AudioTag at offset 0x0006B101, time 4160, size 303, AAC, raw> 
     299#00299 <AudioTag at offset 0x0006B23F, time 4160, size 275, AAC, raw> 
     300#00300 <AudioTag at offset 0x0006B361, time 4160, size 271, AAC, raw> 
     301#00301 <VideoTag at offset 0x0006B47F, time 4182, size 2760, H.264 (interframe), NAL unit> 
     302#00302 <VideoTag at offset 0x0006BF56, time 4223, size 3062, H.264 (interframe), NAL unit> 
     303#00303 <AudioTag at offset 0x0006CB5B, time 4224, size 311, AAC, raw> 
     304#00304 <AudioTag at offset 0x0006CCA1, time 4224, size 249, AAC, raw> 
     305#00305 <AudioTag at offset 0x0006CDA9, time 4224, size 269, AAC, raw> 
     306#00306 <VideoTag at offset 0x0006CEC5, time 4265, size 3009, H.264 (interframe), NAL unit> 
     307#00307 <AudioTag at offset 0x0006DA95, time 4288, size 279, AAC, raw> 
     308#00308 <AudioTag at offset 0x0006DBBB, time 4288, size 293, AAC, raw> 
     309#00309 <AudioTag at offset 0x0006DCEF, time 4288, size 310, AAC, raw> 
     310#00310 <VideoTag at offset 0x0006DE34, time 4307, size 2996, H.264 (interframe), NAL unit> 
     311#00311 <VideoTag at offset 0x0006E9F7, time 4348, size 3188, H.264 (interframe), NAL unit> 
     312#00312 <AudioTag at offset 0x0006F67A, time 4352, size 290, AAC, raw> 
     313#00313 <AudioTag at offset 0x0006F7AB, time 4352, size 260, AAC, raw> 
     314#00314 <AudioTag at offset 0x0006F8BE, time 4352, size 283, AAC, raw> 
     315#00315 <VideoTag at offset 0x0006F9E8, time 4390, size 2975, H.264 (interframe), NAL unit> 
     316#00316 <AudioTag at offset 0x00070596, time 4416, size 266, AAC, raw> 
     317#00317 <AudioTag at offset 0x000706AF, time 4416, size 277, AAC, raw> 
     318#00318 <AudioTag at offset 0x000707D3, time 4416, size 268, AAC, raw> 
     319#00319 <VideoTag at offset 0x000708EE, time 4432, size 3245, H.264 (interframe), NAL unit> 
     320#00320 <VideoTag at offset 0x000715AA, time 4473, size 3180, H.264 (interframe), NAL unit> 
     321#00321 <AudioTag at offset 0x00072225, time 4480, size 270, AAC, raw> 
     322#00322 <AudioTag at offset 0x00072342, time 4480, size 244, AAC, raw> 
     323#00323 <AudioTag at offset 0x00072445, time 4480, size 280, AAC, raw> 
     324#00324 <VideoTag at offset 0x0007256C, time 4515, size 3003, H.264 (interframe), NAL unit> 
     325#00325 <AudioTag at offset 0x00073136, time 4544, size 244, AAC, raw> 
     326#00326 <AudioTag at offset 0x00073239, time 4544, size 255, AAC, raw> 
     327#00327 <AudioTag at offset 0x00073347, time 4544, size 266, AAC, raw> 
     328#00328 <VideoTag at offset 0x00073460, time 4557, size 3077, H.264 (interframe), NAL unit> 
     329#00329 <VideoTag at offset 0x00074074, time 4598, size 3061, H.264 (interframe), NAL unit> 
     330#00330 <AudioTag at offset 0x00074C78, time 4608, size 262, AAC, raw> 
     331#00331 <AudioTag at offset 0x00074D8D, time 4608, size 267, AAC, raw> 
     332#00332 <AudioTag at offset 0x00074EA7, time 4608, size 263, AAC, raw> 
     333#00333 <VideoTag at offset 0x00074FBD, time 4640, size 3219, H.264 (interframe), NAL unit> 
     334#00334 <AudioTag at offset 0x00075C5F, time 4672, size 267, AAC, raw> 
     335#00335 <AudioTag at offset 0x00075D79, time 4672, size 270, AAC, raw> 
     336#00336 <AudioTag at offset 0x00075E96, time 4672, size 265, AAC, raw> 
     337#00337 <VideoTag at offset 0x00075FAE, time 4682, size 3060, H.264 (interframe), NAL unit> 
     338#00338 <VideoTag at offset 0x00076BB1, time 4723, size 3056, H.264 (interframe), NAL unit> 
     339#00339 <AudioTag at offset 0x000777B0, time 4736, size 260, AAC, raw> 
     340#00340 <AudioTag at offset 0x000778C3, time 4736, size 281, AAC, raw> 
     341#00341 <AudioTag at offset 0x000779EB, time 4736, size 264, AAC, raw> 
     342#00342 <VideoTag at offset 0x00077B02, time 4765, size 3197, H.264 (interframe), NAL unit> 
     343#00343 <AudioTag at offset 0x0007878E, time 4800, size 307, AAC, raw> 
     344#00344 <AudioTag at offset 0x000788D0, time 4800, size 277, AAC, raw> 
     345#00345 <AudioTag at offset 0x000789F4, time 4800, size 336, AAC, raw> 
     346#00346 <VideoTag at offset 0x00078B53, time 4807, size 3139, H.264 (interframe), NAL unit> 
     347#00347 <VideoTag at offset 0x000797A5, time 4848, size 3119, H.264 (interframe), NAL unit> 
     348#00348 <AudioTag at offset 0x0007A3E3, time 4864, size 294, AAC, raw> 
     349#00349 <AudioTag at offset 0x0007A518, time 4864, size 253, AAC, raw> 
     350#00350 <AudioTag at offset 0x0007A624, time 4864, size 291, AAC, raw> 
     351#00351 <VideoTag at offset 0x0007A756, time 4890, size 2966, H.264 (interframe), NAL unit> 
     352#00352 <AudioTag at offset 0x0007B2FB, time 4928, size 264, AAC, raw> 
     353#00353 <AudioTag at offset 0x0007B412, time 4928, size 258, AAC, raw> 
     354#00354 <AudioTag at offset 0x0007B523, time 4928, size 246, AAC, raw> 
     355#00355 <VideoTag at offset 0x0007B628, time 4932, size 3080, H.264 (interframe), NAL unit> 
     356#00356 <VideoTag at offset 0x0007C23F, time 4973, size 2944, H.264 (interframe), NAL unit> 
     357#00357 <AudioTag at offset 0x0007CDCE, time 4992, size 274, AAC, raw> 
     358#00358 <AudioTag at offset 0x0007CEEF, time 4992, size 276, AAC, raw> 
     359#00359 <AudioTag at offset 0x0007D012, time 4992, size 264, AAC, raw> 
     360#00360 <VideoTag at offset 0x0007D129, time 5015, size 2818, H.264 (interframe), NAL unit> 
     361#00361 <AudioTag at offset 0x0007DC3A, time 5056, size 260, AAC, raw> 
     362#00362 <AudioTag at offset 0x0007DD4D, time 5056, size 305, AAC, raw> 
     363#00363 <AudioTag at offset 0x0007DE8D, time 5056, size 273, AAC, raw> 
     364#00364 <VideoTag at offset 0x0007DFAD, time 5057, size 3125, H.264 (interframe), NAL unit> 
     365#00365 <VideoTag at offset 0x0007EBF1, time 5098, size 2902, H.264 (interframe), NAL unit> 
     366#00366 <AudioTag at offset 0x0007F756, time 5120, size 287, AAC, raw> 
     367#00367 <AudioTag at offset 0x0007F884, time 5120, size 286, AAC, raw> 
     368#00368 <AudioTag at offset 0x0007F9B1, time 5120, size 299, AAC, raw> 
     369#00369 <VideoTag at offset 0x0007FAEB, time 5140, size 3251, H.264 (interframe), NAL unit> 
     370#00370 <VideoTag at offset 0x000807AD, time 5182, size 2866, H.264 (interframe), NAL unit> 
     371#00371 <AudioTag at offset 0x000812EE, time 5184, size 314, AAC, raw> 
     372#00372 <AudioTag at offset 0x00081437, time 5184, size 277, AAC, raw> 
     373#00373 <AudioTag at offset 0x0008155B, time 5184, size 306, AAC, raw> 
     374#00374 <VideoTag at offset 0x0008169C, time 5223, size 2839, H.264 (interframe), NAL unit> 
     375#00375 <AudioTag at offset 0x000821C2, time 5248, size 292, AAC, raw> 
     376#00376 <AudioTag at offset 0x000822F5, time 5248, size 283, AAC, raw> 
     377#00377 <AudioTag at offset 0x0008241F, time 5248, size 287, AAC, raw> 
     378#00378 <VideoTag at offset 0x0008254D, time 5265, size 3149, H.264 (interframe), NAL unit> 
     379#00379 <VideoTag at offset 0x000831A9, time 5307, size 2675, H.264 (interframe), NAL unit> 
     380#00380 <AudioTag at offset 0x00083C2B, time 5312, size 310, AAC, raw> 
     381#00381 <AudioTag at offset 0x00083D70, time 5312, size 307, AAC, raw> 
     382#00382 <AudioTag at offset 0x00083EB2, time 5312, size 305, AAC, raw> 
     383#00383 <VideoTag at offset 0x00083FF2, time 5348, size 2931, H.264 (interframe), NAL unit> 
     384#00384 <AudioTag at offset 0x00084B74, time 5376, size 288, AAC, raw> 
     385#00385 <AudioTag at offset 0x00084CA3, time 5376, size 268, AAC, raw> 
     386#00386 <AudioTag at offset 0x00084DBE, time 5376, size 295, AAC, raw> 
     387#00387 <VideoTag at offset 0x00084EF4, time 5390, size 2943, H.264 (interframe), NAL unit> 
     388#00388 <VideoTag at offset 0x00085A82, time 5432, size 2774, H.264 (interframe), NAL unit> 
     389#00389 <AudioTag at offset 0x00086567, time 5440, size 277, AAC, raw> 
     390#00390 <AudioTag at offset 0x0008668B, time 5440, size 298, AAC, raw> 
     391#00391 <AudioTag at offset 0x000867C4, time 5440, size 301, AAC, raw> 
     392#00392 <VideoTag at offset 0x00086900, time 5473, size 3067, H.264 (interframe), NAL unit> 
     393#00393 <AudioTag at offset 0x0008750A, time 5504, size 307, AAC, raw> 
     394#00394 <AudioTag at offset 0x0008764C, time 5504, size 294, AAC, raw> 
     395#00395 <AudioTag at offset 0x00087781, time 5504, size 287, AAC, raw> 
     396#00396 <VideoTag at offset 0x000878AF, time 5515, size 2963, H.264 (interframe), NAL unit> 
     397#00397 <VideoTag at offset 0x00088451, time 5557, size 2564, H.264 (interframe), NAL unit> 
     398#00398 <AudioTag at offset 0x00088E64, time 5568, size 290, AAC, raw> 
     399#00399 <AudioTag at offset 0x00088F95, time 5568, size 243, AAC, raw> 
     400#00400 <AudioTag at offset 0x00089097, time 5568, size 254, AAC, raw> 
     401#00401 <VideoTag at offset 0x000891A4, time 5598, size 3065, H.264 (interframe), NAL unit> 
     402#00402 <AudioTag at offset 0x00089DAC, time 5632, size 277, AAC, raw> 
     403#00403 <AudioTag at offset 0x00089ED0, time 5632, size 277, AAC, raw> 
     404#00404 <AudioTag at offset 0x00089FF4, time 5632, size 246, AAC, raw> 
     405#00405 <VideoTag at offset 0x0008A0F9, time 5640, size 2974, H.264 (interframe), NAL unit> 
     406#00406 <VideoTag at offset 0x0008ACA6, time 5682, size 2746, H.264 (interframe), NAL unit> 
     407#00407 <AudioTag at offset 0x0008B76F, time 5696, size 255, AAC, raw> 
     408#00408 <AudioTag at offset 0x0008B87D, time 5696, size 266, AAC, raw> 
     409#00409 <AudioTag at offset 0x0008B996, time 5696, size 314, AAC, raw> 
     410#00410 <VideoTag at offset 0x0008BADF, time 5723, size 2841, H.264 (interframe), NAL unit> 
     411#00411 <AudioTag at offset 0x0008C607, time 5760, size 291, AAC, raw> 
     412#00412 <AudioTag at offset 0x0008C739, time 5760, size 266, AAC, raw> 
     413#00413 <AudioTag at offset 0x0008C852, time 5760, size 270, AAC, raw> 
     414#00414 <VideoTag at offset 0x0008C96F, time 5765, size 2950, H.264 (interframe), NAL unit> 
     415#00415 <VideoTag at offset 0x0008D504, time 5807, size 2523, H.264 (interframe), NAL unit> 
     416#00416 <AudioTag at offset 0x0008DEEE, time 5824, size 315, AAC, raw> 
     417#00417 <AudioTag at offset 0x0008E038, time 5824, size 289, AAC, raw> 
     418#00418 <AudioTag at offset 0x0008E168, time 5824, size 263, AAC, raw> 
     419#00419 <VideoTag at offset 0x0008E27E, time 5848, size 2756, H.264 (interframe), NAL unit> 
     420#00420 <AudioTag at offset 0x0008ED51, time 5888, size 263, AAC, raw> 
     421#00421 <AudioTag at offset 0x0008EE67, time 5888, size 258, AAC, raw> 
     422#00422 <AudioTag at offset 0x0008EF78, time 5888, size 275, AAC, raw> 
     423#00423 <VideoTag at offset 0x0008F09A, time 5890, size 3006, H.264 (interframe), NAL unit> 
     424#00424 <VideoTag at offset 0x0008FC67, time 5932, size 2459, H.264 (interframe), NAL unit> 
     425#00425 <AudioTag at offset 0x00090611, time 5952, size 272, AAC, raw> 
     426#00426 <AudioTag at offset 0x00090730, time 5952, size 271, AAC, raw> 
     427#00427 <AudioTag at offset 0x0009084E, time 5952, size 253, AAC, raw> 
     428#00428 <VideoTag at offset 0x0009095A, time 5973, size 2783, H.264 (interframe), NAL unit> 
     429#00429 <VideoTag at offset 0x00091448, time 6015, size 3059, H.264 (interframe), NAL unit> 
     430#00430 <AudioTag at offset 0x0009204A, time 6016, size 264, AAC, raw> 
     431#00431 <AudioTag at offset 0x00092161, time 6016, size 242, AAC, raw> 
     432#00432 <AudioTag at offset 0x00092262, time 6016, size 268, AAC, raw> 
     433#00433 <VideoTag at offset 0x0009237D, time 6057, size 2599, H.264 (interframe), NAL unit> 
     434#00434 <AudioTag at offset 0x00092DB3, time 6080, size 381, AAC, raw> 
     435#00435 <AudioTag at offset 0x00092F3F, time 6080, size 259, AAC, raw> 
     436#00436 <AudioTag at offset 0x00093051, time 6080, size 313, AAC, raw> 
     437#00437 <VideoTag at offset 0x00093199, time 6098, size 2647, H.264 (interframe), NAL unit> 
     438#00438 <VideoTag at offset 0x00093BFF, time 6140, size 2757, H.264 (interframe), NAL unit> 
     439#00439 <AudioTag at offset 0x000946D3, time 6144, size 260, AAC, raw> 
     440#00440 <AudioTag at offset 0x000947E6, time 6144, size 265, AAC, raw> 
     441#00441 <AudioTag at offset 0x000948FE, time 6144, size 302, AAC, raw> 
     442#00442 <VideoTag at offset 0x00094A3B, time 6182, size 2894, H.264 (interframe), NAL unit> 
     443#00443 <AudioTag at offset 0x00095598, time 6208, size 264, AAC, raw> 
     444#00444 <AudioTag at offset 0x000956AF, time 6208, size 266, AAC, raw> 
     445#00445 <AudioTag at offset 0x000957C8, time 6208, size 273, AAC, raw> 
     446#00446 <VideoTag at offset 0x000958E8, time 6223, size 3131, H.264 (interframe), NAL unit> 
     447#00447 <VideoTag at offset 0x00096532, time 6265, size 2637, H.264 (interframe), NAL unit> 
     448#00448 <AudioTag at offset 0x00096F8E, time 6272, size 260, AAC, raw> 
     449#00449 <AudioTag at offset 0x000970A1, time 6272, size 271, AAC, raw> 
     450#00450 <AudioTag at offset 0x000971BF, time 6272, size 238, AAC, raw> 
     451#00451 <VideoTag at offset 0x000972BC, time 6307, size 2898, H.264 (interframe), NAL unit> 
     452#00452 <AudioTag at offset 0x00097E1D, time 6336, size 47, AAC, raw> 
     453#00453 <AudioTag at offset 0x00097E5B, time 6336, size 253, AAC, raw> 
     454#00454 <AudioTag at offset 0x00097F67, time 6336, size 281, AAC, raw> 
     455#00455 <AudioTag at offset 0x0009808F, time 6336, size 205, AAC, raw> 
     456#00456 <VideoTag at offset 0x0009816B, time 6348, size 3132, H.264 (interframe), NAL unit> 
     457#00457 <VideoTag at offset 0x00098DB6, time 6390, size 2960, H.264 (interframe), NAL unit> 
     458#00458 <AudioTag at offset 0x00099955, time 6400, size 286, AAC, raw> 
     459#00459 <AudioTag at offset 0x00099A82, time 6400, size 274, AAC, raw> 
     460#00460 <AudioTag at offset 0x00099BA3, time 6400, size 278, AAC, raw> 
     461#00461 <VideoTag at offset 0x00099CC8, time 6432, size 2902, H.264 (interframe), NAL unit> 
     462#00462 <AudioTag at offset 0x0009A82D, time 6464, size 285, AAC, raw> 
     463#00463 <AudioTag at offset 0x0009A959, time 6464, size 268, AAC, raw> 
     464#00464 <AudioTag at offset 0x0009AA74, time 6464, size 256, AAC, raw> 
     465#00465 <VideoTag at offset 0x0009AB83, time 6473, size 2918, H.264 (interframe), NAL unit> 
     466#00466 <VideoTag at offset 0x0009B6F8, time 6515, size 3143, H.264 (interframe), NAL unit> 
     467#00467 <AudioTag at offset 0x0009C34E, time 6528, size 256, AAC, raw> 
     468#00468 <AudioTag at offset 0x0009C45D, time 6528, size 279, AAC, raw> 
     469#00469 <AudioTag at offset 0x0009C583, time 6528, size 256, AAC, raw> 
     470#00470 <VideoTag at offset 0x0009C692, time 6557, size 2913, H.264 (interframe), NAL unit> 
     471#00471 <AudioTag at offset 0x0009D202, time 6592, size 269, AAC, raw> 
     472#00472 <AudioTag at offset 0x0009D31E, time 6592, size 292, AAC, raw> 
     473#00473 <AudioTag at offset 0x0009D451, time 6592, size 326, AAC, raw> 
     474#00474 <VideoTag at offset 0x0009D5A6, time 6598, size 3136, H.264 (interframe), NAL unit> 
     475#00475 <VideoTag at offset 0x0009E1F5, time 6640, size 3077, H.264 (interframe), NAL unit> 
     476#00476 <AudioTag at offset 0x0009EE09, time 6656, size 278, AAC, raw> 
     477#00477 <AudioTag at offset 0x0009EF2E, time 6656, size 309, AAC, raw> 
     478#00478 <AudioTag at offset 0x0009F072, time 6656, size 267, AAC, raw> 
     479#00479 <VideoTag at offset 0x0009F18C, time 6682, size 3408, H.264 (interframe), NAL unit> 
     480#00480 <AudioTag at offset 0x0009FEEB, time 6720, size 271, AAC, raw> 
     481#00481 <AudioTag at offset 0x000A0009, time 6720, size 261, AAC, raw> 
     482#00482 <AudioTag at offset 0x000A011D, time 6720, size 238, AAC, raw> 
     483#00483 <VideoTag at offset 0x000A021A, time 6723, size 3247, H.264 (interframe), NAL unit> 
     484#00484 <VideoTag at offset 0x000A0ED8, time 6765, size 3451, H.264 (interframe), NAL unit> 
     485#00485 <AudioTag at offset 0x000A1C62, time 6784, size 249, AAC, raw> 
     486#00486 <AudioTag at offset 0x000A1D6A, time 6784, size 261, AAC, raw> 
     487#00487 <AudioTag at offset 0x000A1E7E, time 6784, size 260, AAC, raw> 
     488#00488 <VideoTag at offset 0x000A1F91, time 6807, size 3203, H.264 (interframe), NAL unit> 
     489#00489 <VideoTag at offset 0x000A2C23, time 6848, size 3088, H.264 (interframe), NAL unit> 
     490#00490 <AudioTag at offset 0x000A3842, time 6848, size 226, AAC, raw> 
     491#00491 <AudioTag at offset 0x000A3933, time 6848, size 244, AAC, raw> 
     492#00492 <AudioTag at offset 0x000A3A36, time 6848, size 239, AAC, raw> 
     493#00493 <VideoTag at offset 0x000A3B34, time 6890, size 3602, H.264 (interframe), NAL unit> 
     494#00494 <AudioTag at offset 0x000A4955, time 6912, size 247, AAC, raw> 
     495#00495 <AudioTag at offset 0x000A4A5B, time 6912, size 255, AAC, raw> 
     496#00496 <AudioTag at offset 0x000A4B69, time 6912, size 242, AAC, raw> 
     497#00497 <VideoTag at offset 0x000A4C6A, time 6932, size 3650, H.264 (interframe), NAL unit> 
     498#00498 <VideoTag at offset 0x000A5ABB, time 6973, size 3691, H.264 (interframe), NAL unit> 
     499#00499 <AudioTag at offset 0x000A6935, time 6976, size 249, AAC, raw> 
     500#00500 <AudioTag at offset 0x000A6A3D, time 6976, size 276, AAC, raw> 
     501#00501 <AudioTag at offset 0x000A6B60, time 6976, size 248, AAC, raw> 
     502#00502 <VideoTag at offset 0x000A6C67, time 7015, size 3617, H.264 (interframe), NAL unit> 
     503#00503 <AudioTag at offset 0x000A7A97, time 7040, size 268, AAC, raw> 
     504#00504 <AudioTag at offset 0x000A7BB2, time 7040, size 250, AAC, raw> 
     505#00505 <AudioTag at offset 0x000A7CBB, time 7040, size 251, AAC, raw> 
     506#00506 <VideoTag at offset 0x000A7DC5, time 7057, size 3385, H.264 (interframe), NAL unit> 
     507#00507 <VideoTag at offset 0x000A8B0D, time 7098, size 3475, H.264 (interframe), NAL unit> 
     508#00508 <AudioTag at offset 0x000A98AF, time 7104, size 247, AAC, raw> 
     509#00509 <AudioTag at offset 0x000A99B5, time 7104, size 242, AAC, raw> 
     510#00510 <AudioTag at offset 0x000A9AB6, time 7104, size 257, AAC, raw> 
     511#00511 <VideoTag at offset 0x000A9BC6, time 7140, size 3482, H.264 (interframe), NAL unit> 
     512#00512 <AudioTag at offset 0x000AA96F, time 7168, size 233, AAC, raw> 
     513#00513 <AudioTag at offset 0x000AAA67, time 7168, size 248, AAC, raw> 
     514#00514 <AudioTag at offset 0x000AAB6E, time 7168, size 250, AAC, raw> 
     515#00515 <VideoTag at offset 0x000AAC77, time 7182, size 3610, H.264 (interframe), NAL unit> 
     516#00516 <VideoTag at offset 0x000ABAA0, time 7223, size 3148, H.264 (interframe), NAL unit> 
     517#00517 <AudioTag at offset 0x000AC6FB, time 7232, size 247, AAC, raw> 
     518#00518 <AudioTag at offset 0x000AC801, time 7232, size 252, AAC, raw> 
     519#00519 <AudioTag at offset 0x000AC90C, time 7232, size 255, AAC, raw> 
     520#00520 <VideoTag at offset 0x000ACA1A, time 7265, size 3668, H.264 (interframe), NAL unit> 
     521#00521 <AudioTag at offset 0x000AD87D, time 7296, size 255, AAC, raw> 
     522#00522 <AudioTag at offset 0x000AD98B, time 7296, size 279, AAC, raw> 
     523#00523 <AudioTag at offset 0x000ADAB1, time 7296, size 263, AAC, raw> 
     524#00524 <VideoTag at offset 0x000ADBC7, time 7307, size 3358, H.264 (interframe), NAL unit> 
     525#00525 <VideoTag at offset 0x000AE8F4, time 7348, size 3404, H.264 (interframe), NAL unit> 
     526#00526 <AudioTag at offset 0x000AF64F, time 7360, size 258, AAC, raw> 
     527#00527 <AudioTag at offset 0x000AF760, time 7360, size 297, AAC, raw> 
     528#00528 <AudioTag at offset 0x000AF898, time 7360, size 266, AAC, raw> 
     529#00529 <VideoTag at offset 0x000AF9B1, time 7390, size 3298, H.264 (interframe), NAL unit> 
     530#00530 <AudioTag at offset 0x000B06A2, time 7424, size 269, AAC, raw> 
     531#00531 <AudioTag at offset 0x000B07BE, time 7424, size 249, AAC, raw> 
     532#00532 <AudioTag at offset 0x000B08C6, time 7424, size 248, AAC, raw> 
     533#00533 <VideoTag at offset 0x000B09CD, time 7432, size 3024, H.264 (interframe), NAL unit> 
     534#00534 <VideoTag at offset 0x000B15AC, time 7473, size 3652, H.264 (interframe), NAL unit> 
     535#00535 <AudioTag at offset 0x000B23FF, time 7488, size 264, AAC, raw> 
     536#00536 <AudioTag at offset 0x000B2516, time 7488, size 259, AAC, raw> 
     537#00537 <AudioTag at offset 0x000B2628, time 7488, size 256, AAC, raw> 
     538#00538 <VideoTag at offset 0x000B2737, time 7515, size 32695, H.264 (interframe), NAL unit> 
     539#00539 <AudioTag at offset 0x000BA6FD, time 7552, size 245, AAC, raw> 
     540#00540 <AudioTag at offset 0x000BA801, time 7552, size 244, AAC, raw> 
     541#00541 <AudioTag at offset 0x000BA904, time 7552, size 239, AAC, raw> 
     542#00542 <VideoTag at offset 0x000BAA02, time 7557, size 759, H.264 (interframe), NAL unit> 
     543#00543 <VideoTag at offset 0x000BAD08, time 7598, size 1461, H.264 (interframe), NAL unit> 
     544#00544 <AudioTag at offset 0x000BB2CC, time 7616, size 262, AAC, raw> 
     545#00545 <AudioTag at offset 0x000BB3E1, time 7616, size 272, AAC, raw> 
     546#00546 <AudioTag at offset 0x000BB500, time 7616, size 266, AAC, raw> 
     547#00547 <VideoTag at offset 0x000BB619, time 7640, size 2037, H.264 (interframe), NAL unit> 
     548#00548 <AudioTag at offset 0x000BBE1D, time 7680, size 268, AAC, raw> 
     549#00549 <AudioTag at offset 0x000BBF38, time 7680, size 262, AAC, raw> 
     550#00550 <AudioTag at offset 0x000BC04D, time 7680, size 263, AAC, raw> 
     551#00551 <VideoTag at offset 0x000BC163, time 7682, size 1898, H.264 (interframe), NAL unit> 
     552#00552 <VideoTag at offset 0x000BC8DC, time 7723, size 2587, H.264 (interframe), NAL unit> 
     553#00553 <AudioTag at offset 0x000BD306, time 7744, size 288, AAC, raw> 
     554#00554 <AudioTag at offset 0x000BD435, time 7744, size 279, AAC, raw> 
     555#00555 <AudioTag at offset 0x000BD55B, time 7744, size 271, AAC, raw> 
     556#00556 <VideoTag at offset 0x000BD679, time 7765, size 2389, H.264 (interframe), NAL unit> 
     557#00557 <VideoTag at offset 0x000BDFDD, time 7807, size 2434, H.264 (interframe), NAL unit> 
     558#00558 <AudioTag at offset 0x000BE96E, time 7808, size 269, AAC, raw> 
     559#00559 <AudioTag at offset 0x000BEA8A, time 7808, size 369, AAC, raw> 
     560#00560 <AudioTag at offset 0x000BEC0A, time 7808, size 283, AAC, raw> 
     561#00561 <VideoTag at offset 0x000BED34, time 7848, size 2506, H.264 (interframe), NAL unit> 
     562#00562 <AudioTag at offset 0x000BF70D, time 7872, size 308, AAC, raw> 
     563#00563 <AudioTag at offset 0x000BF850, time 7872, size 282, AAC, raw> 
     564#00564 <AudioTag at offset 0x000BF979, time 7872, size 286, AAC, raw> 
     565#00565 <VideoTag at offset 0x000BFAA6, time 7890, size 2468, H.264 (interframe), NAL unit> 
     566#00566 <VideoTag at offset 0x000C0459, time 7932, size 2564, H.264 (interframe), NAL unit> 
     567#00567 <AudioTag at offset 0x000C0E6C, time 7936, size 308, AAC, raw> 
     568#00568 <AudioTag at offset 0x000C0FAF, time 7936, size 289, AAC, raw> 
     569#00569 <AudioTag at offset 0x000C10DF, time 7936, size 265, AAC, raw> 
     570#00570 <VideoTag at offset 0x000C11F7, time 7973, size 2636, H.264 (interframe), NAL unit> 
     571#00571 <AudioTag at offset 0x000C1C52, time 8000, size 277, AAC, raw> 
     572#00572 <AudioTag at offset 0x000C1D76, time 8000, size 271, AAC, raw> 
     573#00573 <AudioTag at offset 0x000C1E94, time 8000, size 274, AAC, raw> 
     574#00574 <VideoTag at offset 0x000C1FB5, time 8015, size 2285, H.264 (interframe), NAL unit> 
     575#00575 <VideoTag at offset 0x000C28B1, time 8057, size 2573, H.264 (interframe), NAL unit> 
     576#00576 <AudioTag at offset 0x000C32CD, time 8064, size 275, AAC, raw> 
     577#00577 <AudioTag at offset 0x000C33EF, time 8064, size 340, AAC, raw> 
     578#00578 <AudioTag at offset 0x000C3552, time 8064, size 271, AAC, raw> 
     579#00579 <VideoTag at offset 0x000C3670, time 8098, size 2570, H.264 (interframe), NAL unit> 
     580#00580 <AudioTag at offset 0x000C4089, time 8128, size 303, AAC, raw> 
     581#00581 <AudioTag at offset 0x000C41C7, time 8128, size 292, AAC, raw> 
     582#00582 <AudioTag at offset 0x000C42FA, time 8128, size 306, AAC, raw> 
     583#00583 <VideoTag at offset 0x000C443B, time 8140, size 2600, H.264 (interframe), NAL unit> 
     584#00584 <VideoTag at offset 0x000C4E72, time 8182, size 2431, H.264 (interframe), NAL unit> 
     585#00585 <AudioTag at offset 0x000C5800, time 8192, size 247, AAC, raw> 
     586#00586 <AudioTag at offset 0x000C5906, time 8192, size 262, AAC, raw> 
     587#00587 <AudioTag at offset 0x000C5A1B, time 8192, size 295, AAC, raw> 
     588#00588 <VideoTag at offset 0x000C5B51, time 8223, size 2764, H.264 (interframe), NAL unit> 
     589#00589 <AudioTag at offset 0x000C662C, time 8256, size 286, AAC, raw> 
     590#00590 <AudioTag at offset 0x000C6759, time 8256, size 316, AAC, raw> 
     591#00591 <AudioTag at offset 0x000C68A4, time 8256, size 266, AAC, raw> 
     592#00592 <VideoTag at offset 0x000C69BD, time 8265, size 2297, H.264 (interframe), NAL unit> 
     593#00593 <VideoTag at offset 0x000C72C5, time 8307, size 2527, H.264 (interframe), NAL unit> 
     594#00594 <AudioTag at offset 0x000C7CB3, time 8320, size 270, AAC, raw> 
     595#00595 <AudioTag at offset 0x000C7DD0, time 8320, size 329, AAC, raw> 
     596#00596 <AudioTag at offset 0x000C7F28, time 8320, size 266, AAC, raw> 
     597#00597 <VideoTag at offset 0x000C8041, time 8348, size 2164, H.264 (interframe), NAL unit> 
     598#00598 <AudioTag at offset 0x000C88C4, time 8384, size 255, AAC, raw> 
     599#00599 <AudioTag at offset 0x000C89D2, time 8384, size 281, AAC, raw> 
     600#00600 <AudioTag at offset 0x000C8AFA, time 8384, size 267, AAC, raw> 
     601#00601 <VideoTag at offset 0x000C8C14, time 8390, size 2777, H.264 (interframe), NAL unit> 
     602#00602 <VideoTag at offset 0x000C96FC, time 8432, size 2281, H.264 (interframe), NAL unit> 
     603#00603 <AudioTag at offset 0x000C9FF4, time 8448, size 267, AAC, raw> 
     604#00604 <AudioTag at offset 0x000CA10E, time 8448, size 271, AAC, raw> 
     605#00605 <AudioTag at offset 0x000CA22C, time 8448, size 280, AAC, raw> 
     606#00606 <VideoTag at offset 0x000CA353, time 8473, size 2505, H.264 (interframe), NAL unit> 
     607#00607 <AudioTag at offset 0x000CAD2B, time 8512, size 267, AAC, raw> 
     608#00608 <AudioTag at offset 0x000CAE45, time 8512, size 275, AAC, raw> 
     609#00609 <AudioTag at offset 0x000CAF67, time 8512, size 252, AAC, raw> 
     610#00610 <VideoTag at offset 0x000CB072, time 8515, size 2346, H.264 (interframe), NAL unit> 
     611#00611 <VideoTag at offset 0x000CB9AB, time 8557, size 2600, H.264 (interframe), NAL unit> 
     612#00612 <AudioTag at offset 0x000CC3E2, time 8576, size 270, AAC, raw> 
     613#00613 <AudioTag at offset 0x000CC4FF, time 8576, size 242, AAC, raw> 
     614#00614 <AudioTag at offset 0x000CC600, time 8576, size 274, AAC, raw> 
     615#00615 <VideoTag at offset 0x000CC721, time 8598, size 1949, H.264 (interframe), NAL unit> 
     616#00616 <VideoTag at offset 0x000CCECD, time 8640, size 2286, H.264 (interframe), NAL unit> 
     617#00617 <AudioTag at offset 0x000CD7CA, time 8640, size 276, AAC, raw> 
     618#00618 <AudioTag at offset 0x000CD8ED, time 8640, size 267, AAC, raw> 
     619#00619 <AudioTag at offset 0x000CDA07, time 8640, size 274, AAC, raw> 
     620#00620 <VideoTag at offset 0x000CDB28, time 8682, size 2179, H.264 (interframe), NAL unit> 
     621#00621 <AudioTag at offset 0x000CE3BA, time 8704, size 238, AAC, raw> 
     622#00622 <AudioTag at offset 0x000CE4B7, time 8704, size 287, AAC, raw> 
     623#00623 <AudioTag at offset 0x000CE5E5, time 8704, size 240, AAC, raw> 
     624#00624 <VideoTag at offset 0x000CE6E4, time 8723, size 1970, H.264 (interframe), NAL unit> 
     625#00625 <VideoTag at offset 0x000CEEA5, time 8765, size 2667, H.264 (interframe), NAL unit> 
     626#00626 <AudioTag at offset 0x000CF91F, time 8768, size 262, AAC, raw> 
     627#00627 <AudioTag at offset 0x000CFA34, time 8768, size 247, AAC, raw> 
     628#00628 <AudioTag at offset 0x000CFB3A, time 8768, size 257, AAC, raw> 
     629#00629 <VideoTag at offset 0x000CFC4A, time 8807, size 2870, H.264 (interframe), NAL unit> 
     630#00630 <AudioTag at offset 0x000D078F, time 8832, size 260, AAC, raw> 
     631#00631 <AudioTag at offset 0x000D08A2, time 8832, size 288, AAC, raw> 
     632#00632 <AudioTag at offset 0x000D09D1, time 8832, size 260, AAC, raw> 
     633#00633 <VideoTag at offset 0x000D0AE4, time 8848, size 3133, H.264 (interframe), NAL unit> 
     634#00634 <VideoTag at offset 0x000D1730, time 8890, size 2793, H.264 (interframe), NAL unit> 
     635#00635 <AudioTag at offset 0x000D2228, time 8896, size 259, AAC, raw> 
     636#00636 <AudioTag at offset 0x000D233A, time 8896, size 247, AAC, raw> 
     637#00637 <AudioTag at offset 0x000D2440, time 8896, size 258, AAC, raw> 
     638#00638 <VideoTag at offset 0x000D2551, time 8932, size 3256, H.264 (interframe), NAL unit> 
     639#00639 <AudioTag at offset 0x000D3218, time 8960, size 271, AAC, raw> 
     640#00640 <AudioTag at offset 0x000D3336, time 8960, size 247, AAC, raw> 
     641#00641 <AudioTag at offset 0x000D343C, time 8960, size 257, AAC, raw> 
     642#00642 <VideoTag at offset 0x000D354C, time 8973, size 3311, H.264 (interframe), NAL unit> 
     643#00643 <VideoTag at offset 0x000D424A, time 9015, size 3124, H.264 (interframe), NAL unit> 
     644#00644 <AudioTag at offset 0x000D4E8D, time 9024, size 288, AAC, raw> 
     645#00645 <AudioTag at offset 0x000D4FBC, time 9024, size 276, AAC, raw> 
     646#00646 <AudioTag at offset 0x000D50DF, time 9024, size 262, AAC, raw> 
     647#00647 <VideoTag at offset 0x000D51F4, time 9057, size 3441, H.264 (interframe), NAL unit> 
     648#00648 <AudioTag at offset 0x000D5F74, time 9088, size 255, AAC, raw> 
     649#00649 <AudioTag at offset 0x000D6082, time 9088, size 272, AAC, raw> 
     650#00650 <AudioTag at offset 0x000D61A1, time 9088, size 270, AAC, raw> 
     651#00651 <VideoTag at offset 0x000D62BE, time 9098, size 3225, H.264 (interframe), NAL unit> 
     652#00652 <VideoTag at offset 0x000D6F66, time 9140, size 3329, H.264 (interframe), NAL unit> 
     653#00653 <AudioTag at offset 0x000D7C76, time 9152, size 261, AAC, raw> 
     654#00654 <AudioTag at offset 0x000D7D8A, time 9152, size 289, AAC, raw> 
     655#00655 <AudioTag at offset 0x000D7EBA, time 9152, size 258, AAC, raw> 
     656#00656 <VideoTag at offset 0x000D7FCB, time 9182, size 3259, H.264 (interframe), NAL unit> 
     657#00657 <AudioTag at offset 0x000D8C95, time 9216, size 286, AAC, raw> 
     658#00658 <AudioTag at offset 0x000D8DC2, time 9216, size 261, AAC, raw> 
     659#00659 <AudioTag at offset 0x000D8ED6, time 9216, size 253, AAC, raw> 
     660#00660 <VideoTag at offset 0x000D8FE2, time 9223, size 3470, H.264 (interframe), NAL unit> 
     661#00661 <VideoTag at offset 0x000D9D7F, time 9265, size 3356, H.264 (interframe), NAL unit> 
     662#00662 <AudioTag at offset 0x000DAAAA, time 9280, size 299, AAC, raw> 
     663#00663 <AudioTag at offset 0x000DABE4, time 9280, size 313, AAC, raw> 
     664#00664 <AudioTag at offset 0x000DAD2C, time 9280, size 285, AAC, raw> 
     665#00665 <VideoTag at offset 0x000DAE58, time 9307, size 3611, H.264 (interframe), NAL unit> 
     666#00666 <AudioTag at offset 0x000DBC82, time 9344, size 283, AAC, raw> 
     667#00667 <AudioTag at offset 0x000DBDAC, time 9344, size 283, AAC, raw> 
     668#00668 <AudioTag at offset 0x000DBED6, time 9344, size 254, AAC, raw> 
     669#00669 <VideoTag at offset 0x000DBFE3, time 9348, size 3227, H.264 (interframe), NAL unit> 
     670#00670 <VideoTag at offset 0x000DCC8D, time 9390, size 3222, H.264 (interframe), NAL unit> 
     671#00671 <AudioTag at offset 0x000DD932, time 9408, size 252, AAC, raw> 
     672#00672 <AudioTag at offset 0x000DDA3D, time 9408, size 271, AAC, raw> 
     673#00673 <AudioTag at offset 0x000DDB5B, time 9408, size 249, AAC, raw> 
     674#00674 <VideoTag at offset 0x000DDC63, time 9432, size 3246, H.264 (interframe), NAL unit> 
     675#00675 <AudioTag at offset 0x000DE920, time 9472, size 255, AAC, raw> 
     676#00676 <AudioTag at offset 0x000DEA2E, time 9472, size 254, AAC, raw> 
     677#00677 <AudioTag at offset 0x000DEB3B, time 9472, size 256, AAC, raw> 
     678#00678 <VideoTag at offset 0x000DEC4A, time 9473, size 3472, H.264 (interframe), NAL unit> 
     679#00679 <VideoTag at offset 0x000DF9E9, time 9515, size 3108, H.264 (interframe), NAL unit> 
     680#00680 <AudioTag at offset 0x000E061C, time 9536, size 239, AAC, raw> 
     681#00681 <AudioTag at offset 0x000E071A, time 9536, size 281, AAC, raw> 
     682#00682 <AudioTag at offset 0x000E0842, time 9536, size 239, AAC, raw> 
     683#00683 <VideoTag at offset 0x000E0940, time 9557, size 3525, H.264 (interframe), NAL unit> 
     684#00684 <VideoTag at offset 0x000E1714, time 9598, size 3398, H.264 (interframe), NAL unit> 
     685#00685 <AudioTag at offset 0x000E2469, time 9600, size 259, AAC, raw> 
     686#00686 <AudioTag at offset 0x000E257B, time 9600, size 245, AAC, raw> 
     687#00687 <AudioTag at offset 0x000E267F, time 9600, size 235, AAC, raw> 
     688#00688 <VideoTag at offset 0x000E2779, time 9640, size 3310, H.264 (interframe), NAL unit> 
     689#00689 <AudioTag at offset 0x000E3476, time 9664, size 254, AAC, raw> 
     690#00690 <AudioTag at offset 0x000E3583, time 9664, size 260, AAC, raw> 
     691#00691 <AudioTag at offset 0x000E3696, time 9664, size 245, AAC, raw> 
     692#00692 <VideoTag at offset 0x000E379A, time 9682, size 4031, H.264 (interframe), NAL unit> 
     693#00693 <VideoTag at offset 0x000E4768, time 9723, size 2539, H.264 (interframe), NAL unit> 
     694#00694 <AudioTag at offset 0x000E5162, time 9728, size 262, AAC, raw> 
     695#00695 <AudioTag at offset 0x000E5277, time 9728, size 251, AAC, raw> 
     696#00696 <AudioTag at offset 0x000E5381, time 9728, size 261, AAC, raw> 
     697#00697 <VideoTag at offset 0x000E5495, time 9765, size 3409, H.264 (interframe), NAL unit> 
     698#00698 <AudioTag at offset 0x000E61F5, time 9792, size 272, AAC, raw> 
     699#00699 <AudioTag at offset 0x000E6314, time 9792, size 244, AAC, raw> 
     700#00700 <AudioTag at offset 0x000E6417, time 9792, size 245, AAC, raw> 
     701#00701 <VideoTag at offset 0x000E651B, time 9807, size 4214, H.264 (interframe), NAL unit> 
     702#00702 <VideoTag at offset 0x000E75A0, time 9848, size 3519, H.264 (interframe), NAL unit> 
     703#00703 <AudioTag at offset 0x000E836E, time 9856, size 239, AAC, raw> 
     704#00704 <AudioTag at offset 0x000E846C, time 9856, size 248, AAC, raw> 
     705#00705 <AudioTag at offset 0x000E8573, time 9856, size 249, AAC, raw> 
     706#00706 <VideoTag at offset 0x000E867B, time 9890, size 2830, H.264 (interframe), NAL unit> 
     707#00707 <AudioTag at offset 0x000E9198, time 9920, size 255, AAC, raw> 
     708#00708 <AudioTag at offset 0x000E92A6, time 9920, size 246, AAC, raw> 
     709#00709 <AudioTag at offset 0x000E93AB, time 9920, size 259, AAC, raw> 
     710#00710 <VideoTag at offset 0x000E94BD, time 9932, size 4076, H.264 (interframe), NAL unit> 
     711#00711 <VideoTag at offset 0x000EA4B8, time 9973, size 3214, H.264 (interframe), NAL unit> 
     712#00712 <AudioTag at offset 0x000EB155, time 9984, size 245, AAC, raw> 
     713#00713 <AudioTag at offset 0x000EB259, time 9984, size 251, AAC, raw> 
     714#00714 <AudioTag at offset 0x000EB363, time 9984, size 249, AAC, raw> 
     715#00715 <VideoTag at offset 0x000EB46B, time 10015, size 3444, H.264 (interframe), NAL unit> 
     716#00716 <AudioTag at offset 0x000EC1EE, time 10048, size 246, AAC, raw> 
     717#00717 <AudioTag at offset 0x000EC2F3, time 10048, size 255, AAC, raw> 
     718#00718 <AudioTag at offset 0x000EC401, time 10048, size 227, AAC, raw> 
     719#00719 <VideoTag at offset 0x000EC4F3, time 10057, size 3668, H.264 (interframe), NAL unit> 
     720#00720 <VideoTag at offset 0x000ED356, time 10098, size 3216, H.264 (interframe), NAL unit> 
     721#00721 <AudioTag at offset 0x000EDFF5, time 10112, size 254, AAC, raw> 
     722#00722 <AudioTag at offset 0x000EE102, time 10112, size 269, AAC, raw> 
     723#00723 <AudioTag at offset 0x000EE21E, time 10112, size 245, AAC, raw> 
     724#00724 <VideoTag at offset 0x000EE322, time 10140, size 3465, H.264 (interframe), NAL unit> 
     725#00725 <AudioTag at offset 0x000EF0BA, time 10176, size 243, AAC, raw> 
     726#00726 <AudioTag at offset 0x000EF1BC, time 10176, size 246, AAC, raw> 
     727#00727 <AudioTag at offset 0x000EF2C1, time 10176, size 250, AAC, raw> 
     728#00728 <VideoTag at offset 0x000EF3CA, time 10182, size 3339, H.264 (interframe), NAL unit> 
     729#00729 <VideoTag at offset 0x000F00E4, time 10223, size 3314, H.264 (interframe), NAL unit> 
     730#00730 <AudioTag at offset 0x000F0DE5, time 10240, size 243, AAC, raw> 
     731#00731 <AudioTag at offset 0x000F0EE7, time 10240, size 237, AAC, raw> 
     732#00732 <AudioTag at offset 0x000F0FE3, time 10240, size 248, AAC, raw> 
     733#00733 <VideoTag at offset 0x000F10EA, time 10265, size 3315, H.264 (interframe), NAL unit> 
     734#00734 <AudioTag at offset 0x000F1DEC, time 10304, size 246, AAC, raw> 
     735#00735 <AudioTag at offset 0x000F1EF1, time 10304, size 250, AAC, raw> 
     736#00736 <AudioTag at offset 0x000F1FFA, time 10304, size 237, AAC, raw> 
     737#00737 <VideoTag at offset 0x000F20F6, time 10307, size 3288, H.264 (interframe), NAL unit> 
     738#00738 <VideoTag at offset 0x000F2DDD, time 10348, size 3525, H.264 (interframe), NAL unit> 
     739#00739 <AudioTag at offset 0x000F3BB1, time 10368, size 241, AAC, raw> 
     740#00740 <AudioTag at offset 0x000F3CB1, time 10368, size 259, AAC, raw> 
     741#00741 <AudioTag at offset 0x000F3DC3, time 10368, size 245, AAC, raw> 
     742#00742 <VideoTag at offset 0x000F3EC7, time 10390, size 3435, H.264 (interframe), NAL unit> 
     743#00743 <VideoTag at offset 0x000F4C41, time 10432, size 3424, H.264 (interframe), NAL unit> 
     744#00744 <AudioTag at offset 0x000F59B0, time 10432, size 240, AAC, raw> 
     745#00745 <AudioTag at offset 0x000F5AAF, time 10432, size 248, AAC, raw> 
     746#00746 <AudioTag at offset 0x000F5BB6, time 10432, size 234, AAC, raw> 
     747#00747 <VideoTag at offset 0x000F5CAF, time 10473, size 3582, H.264 (interframe), NAL unit> 
     748#00748 <AudioTag at offset 0x000F6ABC, time 10496, size 123, AAC, raw> 
     749#00749 <AudioTag at offset 0x000F6B46, time 10496, size 249, AAC, raw> 
     750#00750 <AudioTag at offset 0x000F6C4E, time 10496, size 108, AAC, raw> 
     751#00751 <AudioTag at offset 0x000F6CC9, time 10496, size 220, AAC, raw> 
     752#00752 <VideoTag at offset 0x000F6DB4, time 10515, size 3556, H.264 (interframe), NAL unit> 
     753#00753 <VideoTag at offset 0x000F7BA7, time 10557, size 3213, H.264 (interframe), NAL unit> 
     754#00754 <AudioTag at offset 0x000F8843, time 10560, size 244, AAC, raw> 
     755#00755 <AudioTag at offset 0x000F8946, time 10560, size 245, AAC, raw> 
     756#00756 <AudioTag at offset 0x000F8A4A, time 10560, size 248, AAC, raw> 
     757#00757 <VideoTag at offset 0x000F8B51, time 10598, size 3510, H.264 (interframe), NAL unit> 
     758#00758 <AudioTag at offset 0x000F9916, time 10624, size 247, AAC, raw> 
     759#00759 <AudioTag at offset 0x000F9A1C, time 10624, size 243, AAC, raw> 
     760#00760 <AudioTag at offset 0x000F9B1E, time 10624, size 258, AAC, raw> 
     761#00761 <VideoTag at offset 0x000F9C2F, time 10640, size 3577, H.264 (interframe), NAL unit> 
     762#00762 <VideoTag at offset 0x000FAA37, time 10682, size 3644, H.264 (interframe), NAL unit> 
     763#00763 <AudioTag at offset 0x000FB882, time 10688, size 253, AAC, raw> 
     764#00764 <AudioTag at offset 0x000FB98E, time 10688, size 251, AAC, raw> 
     765#00765 <AudioTag at offset 0x000FBA98, time 10688, size 235, AAC, raw> 
     766#00766 <VideoTag at offset 0x000FBB92, time 10723, size 3170, H.264 (interframe), NAL unit> 
     767#00767 <AudioTag at offset 0x000FC803, time 10752, size 241, AAC, raw> 
     768#00768 <AudioTag at offset 0x000FC903, time 10752, size 236, AAC, raw> 
     769#00769 <AudioTag at offset 0x000FC9FE, time 10752, size 237, AAC, raw> 
     770#00770 <VideoTag at offset 0x000FCAFA, time 10765, size 3718, H.264 (interframe), NAL unit> 
     771#00771 <VideoTag at offset 0x000FD98F, time 10807, size 3472, H.264 (interframe), NAL unit> 
     772#00772 <AudioTag at offset 0x000FE72E, time 10816, size 245, AAC, raw> 
     773#00773 <AudioTag at offset 0x000FE832, time 10816, size 234, AAC, raw> 
     774#00774 <AudioTag at offset 0x000FE92B, time 10816, size 241, AAC, raw> 
     775#00775 <VideoTag at offset 0x000FEA2B, time 10848, size 3094, H.264 (interframe), NAL unit> 
     776#00776 <AudioTag at offset 0x000FF650, time 10880, size 257, AAC, raw> 
     777#00777 <AudioTag at offset 0x000FF760, time 10880, size 237, AAC, raw> 
     778#00778 <AudioTag at offset 0x000FF85C, time 10880, size 256, AAC, raw> 
     779#00779 <VideoTag at offset 0x000FF96B, time 10890, size 3702, H.264 (interframe), NAL unit> 
     780#00780 <VideoTag at offset 0x001007F0, time 10932, size 3275, H.264 (interframe), NAL unit> 
     781#00781 <AudioTag at offset 0x001014CA, time 10944, size 241, AAC, raw> 
     782#00782 <AudioTag at offset 0x001015CA, time 10944, size 257, AAC, raw> 
     783#00783 <AudioTag at offset 0x001016DA, time 10944, size 237, AAC, raw> 
     784#00784 <VideoTag at offset 0x001017D6, time 10973, size 3712, H.264 (interframe), NAL unit> 
     785#00785 <AudioTag at offset 0x00102665, time 11008, size 247, AAC, raw> 
     786#00786 <AudioTag at offset 0x0010276B, time 11008, size 241, AAC, raw> 
     787#00787 <AudioTag at offset 0x0010286B, time 11008, size 243, AAC, raw> 
     788#00788 <VideoTag at offset 0x0010296D, time 11015, size 3261, H.264 (interframe), NAL unit> 
     789#00789 <VideoTag at offset 0x00103639, time 11057, size 3782, H.264 (interframe), NAL unit> 
     790#00790 <AudioTag at offset 0x0010450E, time 11072, size 243, AAC, raw> 
     791#00791 <AudioTag at offset 0x00104610, time 11072, size 265, AAC, raw> 
     792#00792 <AudioTag at offset 0x00104728, time 11072, size 242, AAC, raw> 
     793#00793 <VideoTag at offset 0x00104829, time 11098, size 3626, H.264 (interframe), NAL unit> 
     794#00794 <AudioTag at offset 0x00105662, time 11136, size 250, AAC, raw> 
     795#00795 <AudioTag at offset 0x0010576B, time 11136, size 253, AAC, raw> 
     796#00796 <AudioTag at offset 0x00105877, time 11136, size 256, AAC, raw> 
     797#00797 <AudioTag at offset 0x00105986, time 11136, size 261, AAC, raw> 
     798#00798 <AudioTag at offset 0x00105A9A, time 11136, size 248, AAC, raw> 
     799#00799 <VideoTag at offset 0x00105BA1, time 11140, size 3486, H.264 (interframe), NAL unit> 
     800#00800 <VideoTag at offset 0x0010694E, time 11182, size 3809, H.264 (interframe), NAL unit> 
     801#00801 <VideoTag at offset 0x0010783E, time 11223, size 3918, H.264 (interframe), NAL unit> 
Note: See TracChangeset for help on using the changeset viewer.