diff --git a/doc/flv.html b/doc/flv.html deleted file mode 100644 index f15feca..0000000 --- a/doc/flv.html +++ /dev/null @@ -1,990 +0,0 @@ - - - - - - flv [Open Source Flash] - - - - - - - - - - - - - - - - - - - - - - - - - - -
- -
- -
-
- [[flv]] -
- - -
-
- - -
-
-
- -
-
  -
- -
-
- - - - -
- - -
- - - - - -

Flash Video (FLV)

-
- -

- -Flash Video is the name of a file format used to deliver video over the Internet using Adobe Flash Player version 6 or newer. Flash Video content may also be embedded within SWF files. Until version 9 update 3 of the Flash Player, Flash Video referred to a proprietary file format, having the extension .FLV but Adobe introduced new file extensions and MIME types and suggests to use those instead of the old FLV: - -

-
- - - - - - - - - - - - - - - - - - -
File Extension FTYP MIME Type Description
.f4v 'F4V ' video/mp4 Video for Adobe Flash Player
.f4p 'F4P ' video/mp4 Protected Media for Adobe Flash Player
.f4a 'F4A ' video/mp4 Audio for Adobe Flash Player
.f4b 'F4B ' video/mp4 Audio Book for Adobe Flash Player
.flv video/x-flv Flash Video
- -

- -It is possible to place H.264 and AAC streams into the traditional FLV file, but Adobe strongly encourages everyone to embrace the new standard file format. There are functional limits with the FLV structure when streaming H.264 which couldn't be overcome without a redesign of the file format. This is one of the reasons Adobe is moving away from the traditional FLV file structure. Specifically dealing with sequence headers and enders is tricky with FLV streams. Adobe is still working out if it's possible to place On2 VP6 streams into the new file format. -

- -
-
-

Overview

-
-
    -
  • File format parser implementing parts of ISO 14496-12 (very limited sub set of MPEG-4, 3GP and QuickTime movie support).
    -
  • -
  • Support for the 3GPP timed text specification 3GPP TS 26.245. Essentially this is a standardized subtitle format within 3GP files. Any number of text tracks are supported and all the information, including esoteric stuff like karaoke meta data is dumped in 'onMetaData' and a new 'onTextData' NetStream callback. Language information in the individual tracks is also reported. That means you can have sub titles in several languages. Check the 3GPP TS 26.245 specification to see what information is available. Note that you have to take care of the formatting and placement of the text yourself, the Flash Player will do nothing here. You can use MP4Box to inject text data into existing files.
    -
  • -
  • Partial parsing support for the 'ilst' atom which is the ID3 equivalent iTunes uses to store meta data. This is usually present in iTunes files. It contains ID3 like information and is reported in the onMetaData callback as key/value pairs in a mixed array with the name 'tags'. ID3V2 is not supported right now.
    -
  • -
  • A software based H.264 codec with the ability to decode Base, Mainline and High profiles.
    -
  • -
  • An AAC decoder supporting AAC Main, AAC LC and SBR (also known as HE-AAC 1).
    -
  • -
- -
-
-

Issues

-
- -

-Tools to solve FLV-related issues: - -

- - -
-
-

Video

-
- -
- -

Overview

-
- -

-You load and play .mp4,.m4v,.m4a,.mov and .3gp files using the same NetStream API you use to load FLV files. There are a few things to be aware of: -

-
    -
  • Video needs to be in H.264 format only. MPEG-4 Part 2 (Xvid, DivX etc.) video is not supported, H.263 video is not supported, Sorenson Video is not supported. A lot of pod casts are still using MPEG-4 Part 2 so do not be surprised if you do not see any video.
    -
  • -
  • the Flash Player is close to 100% compliant to the H.264 standard, all Base, Main, High and High 10 bit streams should play.
    -
  • -
  • Extended, High 4:2:2 and High 4:4:4 profiles are not officially supported at this time. They might or might not work depending on what features are used. There are no artificial lower limit on B-frames or any problems with B-pyramids like other players do.
    -
  • -
  • Since these files contain an index unlike old FLV files, the Flash Player provides a list of save seek points, e.g. times you can seek to without having the play head jump around. You'll get this information through the onMetaData callback in an array with the name 'seekpoints'. On the downside, some files are missing this information which also means that these files are not seekable at all! This is very different from the traditional FLV file format which is rather based on the notion of key frames to determine the seek points.
    -
  • -
- -
- -

Codecs

-
-
- - - - - - - - - - - - - - - - - - - - - -
Codec Introduced in Flash Player version Introduced in Flash Lite version Container Formats ISO Specification Codec Id
Sorenson Spark 2) 6 3 FLV 2
Macromedia Screen Video 3) 6 - FLV 3
Macromedia ScreenVideo 2 4) 8 - FLV 6
On2 TrueMotion VP6-E 8 3 MOV 4
On2 TrueMotion VP6-S 9.0.115.0 - MP4V, M4V 5
H.264 (MPEG-4 Part 10) 9.0.115.0 - MP4, F4V, 3GP, 3G2 ISO 14496-10
- -

-Adobe Tech Note -

- -
-
-

Audio

-
- -
- -

Overview

-
-
    -
  • Audio can be either AAC Main, AAC LC or SBR, corresponding to audio object types 0, 1 and 2.
    -
  • -
  • The '.mp3' sample type for tracks with mp3 audio is also supported.
    -
  • -
  • MP3inMP4 which intends to do multi-channel mp3 playback within mp4 files is not supported.
    -
  • -
  • The old QuickTime specific style of embedding AAC and MP3 data is not supported. It is unlikely though that you will run into these kind of files.
    -
  • -
  • Unencrypted audio book files contain chapter information. This information is exposed in the onMetaData callback as an array of objects with name 'chapters'.
    -
  • -
  • The Flash Player can play back multi-channel AAC files, though the sound is mixed down to two channels and resampled to 44.1Khz. Multi channel playback is targeted for one of the next major revisions of the Flash Player. This requires complete redesign of the sound engine in the Flash Player which dates from circa 1996 and has not been improved since.
    -
  • -
  • All sampling rates from 8Khz to 96Khz are supported. A 32 tap Kaiser Bessel based FIR filter which resamples the sound to 44.1Khz, retaining high quality. The most common sample rate combinations have a hard coded number of phases. In case of a 48000 to 44100 Hz conversion the filter has 147 phases f.ex.
    -
  • -
  • Flash Player Update 3 Beta 2 now can play back any MP3 sampling rate leveraging the same AAC implementation. No more chipmunks. Ever.
    -
  • -
- -
- -

Codecs

-
-
- - - - - - - - - - - - - - - - - - - - - -
Codec Introduced in Flash Player version Container Formats ISO Specification Codec Id
MP3 6 MP3 2
Nellymoser ASAO Codec (speech compression) audio content 6 FLV 5, 6
Raw PCM sampled audio content 6 WAV 0
ADPCM (Adaptive Delta Pulse Code Modulation) audio content 6 1
AAC (HE-AAC/AAC SBR, AAC Main Profile, and AAC-LC) 9.0.115.0 M4A, MP4 ISO 14496-3
Speex 10 FLV Wiki 11
- -
-
-

Image

-
-
    -
  • Image tracks encoded in JPEG, GIF and PNG are accessible in AS3 as a byte array through the callback 'onImageData'. You can simply take that byte array and use the Loader class to display the images. Most often these images represent cover artwork for audio files.
    -
  • -
  • TIFF image tracks are not supported, you might come across files using this.
    -
  • -
  • Support for the 'covr' meta data stored in iTunes files, accessible as byte arrays.
    -
  • -
- -
-
-

Metadata

-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Property Value Notes
duration Obvious. Unlike for FLV files this field will always be present.
videocodecid For H.264 it reports 'avc1'.
audiocodecid For AAC it reports 'mp4a', for MP3 it reports '.mp3'.
avcprofile 66, 77, 88, 100, 110, 122 or 144 Corresponds to the H.264 profiles
avclevel A number between 10 and 51. Consult this list to find out more.
aottype Either 0, 1 or 2. This corresponds to AAC Main, AAC LC and SBR audio types.
moovposition int The offset in bytes of the moov atom in a file.
trackinfo Array An array of objects containing various infomation about all the tracks in a file.
chapters Array Information about chapters in audiobooks.
seekpoints Array Times you can directly feed into NetStream.seek();
videoframerate int The frame rate of the video if a monotone frame rate is used. Most videos will have a monotone frame rate.
audiosamplerate The original sampling rate of the audio track.
audiochannels The original number of channels of the audio track.
tags ID3 like tag information
- -
-
-

FLV Format

-
- -

-A Flash Video file (.FLV file extension) consists of a short header, and then interleaved audio, video, and metadata packets. The audio and video packets are stored very similarly to those in SWF, and the metadata packets consist of AMF data. -

- -
- -

FLV Header

-
-
- - - - - - - - - - - - - - - -
Field Data Type Example Description
Signature byte[3] “FLV” Always “FLV”
Version uint8 “\x01” (1) Currently 1 for known FLV files
Flags uint8 bitmask “\x05” (5, audio+video) Bitmask: 4 is audio, 1 is video
Offset uint32_be “\x00\x00\x00\x09” (9) Total size of header (always 9 for known FLV files)
- -
- -

FLV Stream

-
-
- - - - - - -
Field Data Type Example Description
PreviousTagSize uint32_be “\x00\x00\x00\x00” (0) Always 0
- -

- -Then a sequence of tags followed by their size until EOF. -

- -
- -

FLV Tag

-
-
- - - - - - - - - - - - - - - - - - - - - -
Field Data Type Example Description
Type uint8 “\x12” (0x12, META) Determines the layout of Body, see below for tag types
BodyLength uint24_be “\x00\x00\xe0” (224) Size of Body (total tag size - 11)
Timestamp uint24_be “\x00\x00\x00” (0) Timestamp of tag (in milliseconds)
TimestampExtended uint8 “\x00” (0) Timestamp extension to form a uint32_be. This field has the upper 8 bits.
StreamId uint24_be “\x00\x00\x00” (0) Always 0
Body byte[BodyLength] Dependent on the value of Type
- -
- -

Previous tag size

-
-
- - - - - - -
Field Data Type Example Description
PreviousTagSize uint32_be “\x00\x00\x00\x00” (0) Total size of previous tag, or 0 for first tag
- -
- -

FLV Tag Types

-
-
- - - - - - - - - - - - -
Tag code Name Description
0x08 AUDIO Contains an audio packet similar to a SWF SoundStreamBlock plus codec information
0x09 VIDEO Contains a video packet similar to a SWF VideoFrame plus codec information
0x12 META Contains two AMF packets, the name of the event and the data to go with it
- -
- -

FLV Tag 0x08: AUDIO

-
- -

- -The first byte of an audio packet contains bitflags that -describe the codec used, with the following layout: - -

-
- - - - - - - - - - - - - - - -
Name Expression Description
soundType (byte & 0x01) » 0 0: mono, 1: stereo
soundSize (byte & 0x02) » 1 0: 8-bit, 1: 16-bit
soundRate (byte & 0x0C) » 2 0: 5.5 kHz (or speex 16kHz), 1: 11 kHz, 2: 22 kHz, 3: 44 kHz
soundFormat (byte & 0xf0) » 4 0: Uncompressed, 1: ADPCM, 2: MP3, 5: Nellymoser 8kHz mono, 6: Nellymoser, 11: Speex
- -

- -The rest of the audio packet is simply the relevant data for that format, as per a SWF SoundStreamBlock. -

- -
- -

FLV Tag 0x09: VIDEO

-
- -

- -The first byte of a video packet describes contains bitflags -that describe the codec used, and the type of frame - -

-
- - - - - - - - - -
Name Expression Description
codecID (byte & 0x0f) » 0 2: Sorensen H.263, 3: Screen video, 4: On2 VP6, 5: On2 VP6 Alpha, 6: ScreenVideo 2
frameType (byte & 0xf0) » 4 1: keyframe, 2: inter frame, 3: disposable inter frame
- -

- -In some cases it is also useful to decode some of the body of the video -packet, such as to acquire its resolution (if the initial onMetaData META -tag is missing, for example). -

- -

-TODO: Describe the techniques for acquiring this information. Until then, you can -consult the flashticle sources. -

- -
- -

FLV Tag 0x12: META

-
- -

- -The contents of a meta packet are two AMF packets. The first is -almost always a short uint16_be length-prefixed UTF-8 string -(AMF type 0x02), and the second is typically a mixed array -(AMF type 0x08). However, the second chunk typically contains -a variety of types, so a full AMF parser should be used. -

- -
-
-

HTTP Streaming

-
- -

- -It is possible to semi-stream flv over http using a trick which sends the normal headers then skips forward to a desired point in the file and moves the timestamps forward accordingly. -

- -

-A sample php script and fla is available at FlashComGuru -

- -

-Another tool that you can use to stream flv files using http is using Flv4PHP this tool is both a FLV Metadata injector and a stream tool, using php 4.x. this Project is GPL. - -

- -
-
-
1) -The support of AAC allows you to encode audio to 64Kbit/s with the same quality of a 128Kbit/s encoded MP3. Further more, for other use more susceptible to bandwidth usage, like Internet Radio, HE-AAC v2 gives the possibility to encode audio to 32Kbit/s or lower with a surprisingly good final result. In low bitrate streaming scenarios this can make the difference.
-
2) -Flash documentation does not state a number for “their” version of Sorenson but describes the codec as a variant of ITU-T (International Telecommunications Union-Telecommunication Standardization Sector) recommendation H.263 (MPEG-4_V). In early 2006, one of Sorenson's compression applications to produce content for Flash offered the Sorenson_3 codec, described by experts as a variant of ITU-T H.264 (MPEG-4_AVC). By late 2006, Sorenson offered new compression applications with other outputs.
-
3) -This codec divides the screen in wide macroblocks (es: 64×64 pixels), reduces the number of colors, and transmits the changed blocks after compressing them in zlib. This is very similar to what VNC does.formats are bitmap tile based, can be lossy by reducing color depths and are compressed
-
4) -This codec can use two different types of macroblock: Iblock and Kblock. The Kblock works like a keyframe and is archived for future references. The Iblock is encoded as differences from a previous block. This new approach, similar to the usual compression of generic video content, guarantees a much better compression ratio, especially in a standard “moving windows” scenario.
-
-
-

- Discussion -

-
-
-
- - WattsArlene, 2011/01/11 01:54 -
-
-That's good that we can get the <a href="http://bestfinance-blog.com/topics/personal-loans">personal loans</a> moreover, this opens up completely new possibilities. -
-
-
-
- - - - - -
-
-
-
-
-
- - koisirinut, 2011/01/15 11:03 -
-
-**Bold Text** -
-
-
-
- - - - - -
-
-
-
-
-
- - muhammad basar, 2011/01/16 09:35 -
-
-http://bestfinance-blog.com/topics/personal-loans">personal loans</a> moreover, this opens up completely new possibilities. -
-
-
-
- - - - - -
-
-
-
-
-
- - Actarus, 2011/01/29 08:24 -
-
-Great documentation! Now, the RIFF format should be documented as well to complete this jewel. I have benchmarked the flv format using the wonderful getID3 library, it's here: http://tinyurl.com/flvdump, Enjoy. -
-
-
-
- - - - - -
-
-
-
-
-
- - khan, 2011/02/22 08:40 -
-
-**Bold Text** -
-
-
-
- - - - - -
-
-
-
-
-
- - mortgage loans, 2011/06/02 17:16 -
-
-Some time before, I really needed to buy a good car for my corporation but I did not have enough money and could not buy anything. Thank heaven my colleague suggested to try to take the credit loans at trustworthy creditors. Hence, I acted that and was satisfied with my consolidation loan. -
-
-
-
- - - - - -
-
-
-
-
-
- - loans, 2011/06/29 04:15 -
-
-The loan suppose to be important for people, which want to start their own organization. In fact, it's very comfortable to get a student loan. -
-
-
-
- - - - - -
-
-
-
-
-
- - home loans, 2011/07/13 23:30 -
-
-Every one acknowledges that men's life seems to be high priced, nevertheless people require cash for various issues and not every person gets big sums money. Hence to get fast mortgage loans and credit loan would be a correct solution. -
-
-
-
- - - - - -
-
-
-
-
-
- - johncein, 2011/07/16 02:06 -
-
-informative read... thanks for the source.



<a href="http://hdwebplayer.com">Flv Player</a> -
-
-
-
- - - - - -
-
-
-
-
-
- - valerie, 2011/08/27 02:00 -
-
-Eben pagan has released his new course guru blueprint and in this guru masterclass he teaches all that he has learn in his marketing career.
Check this website to know more about Eben pagan guru Master class..<a href=>]Eben pagan guru blueprint</a>
If you want to know more about the course you can follow the video on youtube about the guru blueprint..
<a href=http://www.youtube.com/watch?v=rm8Spt2_Zv0>Eben pagan guru blueprint</a>
<a href=http://www.youtube.com/watch?v=5MrCM4MnSqM>Eben pagan guru blueprint</a>
<a href=http://www.youtube.com/watch?v=ZEYhOkb9Wys>Eben pagan guru blueprint</a>

you can go here to find out more about the guru masterclass.. <a href=http://www.helpandinfo.com/guru-masterclass-free-training-video-three.html>Eben pagan guru blueprint</a>



You can learn much more about marketing by just listening to this guy talk. he is such an amazing personality. See as eben pagan releases his master class..
guru blueprint.. -
-
-
-
- - - - - -
-
-
-
-
-
- - loans, 2011/09/01 17:28 -
-
-People in the world take the mortgage loans from various creditors, because that is easy. -
-
-
-
- - - - - -
-
-
-
-
-
- - business loans, 2011/09/20 11:06 -
-
-This is known that money can make people independent. But how to act if someone doesn't have cash? The one way only is to get the mortgage loans or just credit loan. -
-
-
-
- - - - - -
-
-
-
-
-
- - confused, 2011/10/13 18:15 -
-
-WHAT THE HELL ARE DUMB ASS BOTS DOING ON HERE!!! NOBODY WANTS YOUR SCAMS OR ANY OTHER HORSE SHIT YOU CAN SHOVEL, GET A FUCKING LIFE. -
-
-
-
- - - - - -
-
-
-
-
-
- - gymnsmitift, 2011/11/22 18:38 -
-
-wow, great forum! <a href=https://wiki.citizen.apps.gov/NEA_OPI/index.php/About_Antennadeals.com>Antennadeals.com</a>? -
-
-
-
- - - - - -
-
-
-
-
-
- - Postupalka, 2011/12/06 15:38 -
-
-Прокси-сервер работает на 8080 <a href="http://avtomast.com/ceni_na_toplivo-3.html">http://avtomast.com/</a> каневской чат -
-
-
-
- - - - - -
-
-
-
-
-
- - Ali, 2012/01/02 07:38 -
-
-**Bold Text**Hello
I am working on a project in Flash which the user can draw some animation and then covert the final product as an FLV file so he can share it on facebook and youtube,
I have searched for a suitable solution but yet can’t find any, in go Animat (www.goAnimat.com) engine covert to FLV very smoothly,
So is it possible to guide me on how to do this, or maybe provide my with this service on servers.
I would really appreciate you help on this. -
-
-
-
- - - - - -
-
-
-
- -
-
-
- - - - - -
- -
-
- -
-
-
- -
-
Проверка по слову reCAPTCHA

Обновить
Звуковая проверкаВизуальная проверка
Справка
- - - - -
- - -
- -
-
 
-
-
-
-
-
- - -
- -
 
- - -
- -
-
-
-
- flv.txt · Last modified: 2011/12/02 01:16 by 219.161.44.239
-
- - -
-
-
-
-
  -
-
-
- -
- - -
- -
- - Recent changes RSS feed - - - Donate - - Powered by PHP - - Valid XHTML 1.0 - - Valid CSS - - Driven by DokuWiki - - - -
- -
- - -
\ No newline at end of file diff --git a/doc/rtmp-decoded.pdf b/doc/rtmp-decoded.pdf deleted file mode 100644 index d58342a..0000000 Binary files a/doc/rtmp-decoded.pdf and /dev/null differ diff --git a/doc/rtmp.py b/doc/rtmp.py deleted file mode 100644 index 32aebed..0000000 --- a/doc/rtmp.py +++ /dev/null @@ -1,858 +0,0 @@ - - - - - - - - - - - - - - - rtmp.py - - rtmplite - - - - Flash RTMP server in Python - Google Project Hosting - - - - - - - - - - - - - - - - -
- -
- - - - - - arutyunyan.roman@gmail.com - - - | My favorites - | Profile - | Sign out - - - -
- -
-
- - -
- - - - - - - - - - - -
- -
- rtmplite -
- - - - -
- -
- - - -
- -
- -
- - -
- Project Home - - - - - Downloads - - - - - - Wiki - - - - - - Issues - - - - - - Source - - - - - -
-
- - - - - - - - - - - - - - -
-
-
- - - - - Checkout   - Browse   - Changes   - -   - -
- -   - - - - - - -
-
-
- -
- - - -
- - - - - - - -
-
- - - - - - - - - - - - - - -
- - - - - - - -
-
-
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
-
-
-
-
# Copyright (c) 2007-2009, Mamta Singh. All rights reserved. see README for details.
# Copyright (c) 2010-2011, Kundan Singh.

'''
This is a simple implementation of a Flash RTMP server to accept connections and stream requests. The module is organized as follows:
1. The FlashServer class is the main class to provide the server abstraction. It uses the multitask module for co-operative multitasking.
   It also uses the App abstract class to implement the applications.
2. The Server class implements a simple server to receive new Client connections and inform the FlashServer application. The Client class
   derived from Protocol implements the RTMP client functions. The Protocol class implements the base RTMP protocol parsing. A Client contains
   various streams from the client, represented using the Stream class.
3. The Message, Header and Command represent RTMP message, header and command respectively. The FLV class implements functions to perform read
   and write of FLV file format.


Typically an application can launch this server as follows:
$ python rtmp.py

To know the command line options use the -h option:
$ python rtmp.py -h

To start the server with a different directory for recording and playing FLV files from, use the following command.
$ python rtmp.py -r some-other-directory/
Note the terminal '/' in the directory name. Without this, it is just used as a prefix in FLV file names.

A test client is available in testClient directory, and can be compiled using Flex Builder. Alternatively, you can use the SWF file to launch
from testClient/bin-debug after starting the server. Once you have launched the client in the browser, you can connect to
local host by clicking on 'connect' button. Then click on publish button to publish a stream. Open another browser with
same URL and first connect then play the same stream name. If everything works fine you should be able to see the video
from first browser to the second browser. Similar, in the first browser, if you check the record box before publishing,
it will create a new FLV file for the recorded stream. You can close the publishing stream and play the recorded stream to
see your recording. Note that due to initial delay in timestamp (in case publish was clicked much later than connect),
your played video will start appearing after some initial delay.


If an application wants to use this module as a library, it can launch the server as follows:
>>> agent = FlashServer()   # a new RTMP server instance
>>> agent.root = 'flvs/'    # set the document root to be 'flvs' directory. Default is current './' directory.
>>> agent.start()           # start the server
>>> multitask.run()         # this is needed somewhere in the application to actually start the co-operative multitasking.


If an application wants to specify a different application other than the default App, it can subclass it and supply the application by
setting the server's apps property. The following example shows how to define "myapp" which invokes a 'connected()' method on client when
the client connects to the server.

class MyApp(App):         # a new MyApp extends the default App in rtmp module.
    def __init__(self):   # constructor just invokes base class constructor
        App.__init__(self)
    def onConnect(self, client, *args):
        result = App.onConnect(self, client, *args)   # invoke base class method first
        def invokeAdded(self, client):                # define a method to invoke 'connected("some-arg")' on Flash client
            yield client.call('connected', 'some-arg')
        multitask.add(invokeAdded(self, client))      # need to invoke later so that connection is established before callback
        return result     # return True to accept, or None to postpone calling accept()
...
agent.apps = dict({'myapp': MyApp, 'someapp': MyApp, '*': App})

Now the client can connect to rtmp://server/myapp or rtmp://server/someapp and will get connected to this MyApp application.
If the client doesn't define "function connected(arg:String):void" in the NetConnection.client object then the server will
throw an exception and display the error message.

'''

import os, sys, time, struct, socket, traceback, multitask, amf, hashlib, hmac, random

_debug = False

class ConnectionClosed:
    'raised when the client closed the connection'

def truncate(data, max=100):
    return data and len(data)>max and data[:max] + '...(%d)'%(len(data),) or data
   
class SockStream(object):
    '''A class that represents a socket as a stream'''
    def __init__(self, sock):
        self.sock, self.buffer = sock, ''
        self.bytesWritten = self.bytesRead = 0
   
    def close(self):
        self.sock.close()
       
    def read(self, count):
        try:
            while True:
                if len(self.buffer) >= count: # do have enough data in buffer
                    data, self.buffer = self.buffer[:count], self.buffer[count:]
                    raise StopIteration(data)
                if _debug: print 'socket.read[%d] calling recv()'%(count,)
                data = (yield multitask.recv(self.sock, 4096)) # read more from socket
                if not data: raise ConnectionClosed
                if _debug: print 'socket.read[%d] %r'%(len(data), truncate(data))
                self.bytesRead += len(data)
                self.buffer += data
        except StopIteration: raise
        except: raise ConnectionClosed # anything else is treated as connection closed.
       
    def unread(self, data):
        self.buffer = data + self.buffer
           
    def write(self, data):
        while len(data) > 0: # write in 4K chunks each time
            chunk, data = data[:4096], data[4096:]
            self.bytesWritten += len(chunk)
            if _debug: print 'socket.write[%d] %r'%(len(chunk), truncate(chunk))
            try: yield multitask.send(self.sock, chunk)
            except: raise ConnectionClosed
                               

class Header(object):
    FULL, MESSAGE, TIME, SEPARATOR, MASK = 0x00, 0x40, 0x80, 0xC0, 0xC0
   
    def __init__(self, channel=0, time=0, size=None, type=None, streamId=0):
        self.channel, self.time, self.size, self.type, self.streamId = channel, time, size, type, streamId
        if channel<64: self.hdrdata = chr(channel)
        elif channel<(64+256): self.hdrdata = '\x00'+chr(channel-64)
        else: self.hdrdata = '\x01'+chr((channel-64)%256)+chr((channel-64)/256)
   
    def toBytes(self, control):
        data = chr(ord(self.hdrdata[0]) | control) + self.hdrdata[1:]
        if control != Header.SEPARATOR:
            data += struct.pack('>I', self.time if self.time < 0xFFFFFF else 0xFFFFFF)[1:]  # add time in 3 bytes
            if control != Header.TIME:
                data += struct.pack('>I', self.size & 0xFFFFFFFF)[1:]  # size
                data += chr(self.type)                    # type
                if control != Header.MESSAGE:
                    data += struct.pack('<I', self.streamId & 0xFFFFFFFF)  # add streamId
        if self.time >= 0xFFFFFF:
            data += struct.pack('>I', self.time & 0xFFFFFFFF)
        return data

    def __repr__(self):
        return ("<Header channel=%r time=%r size=%r type=%s (%r) streamId=%r>"
            % (self.channel, self.time, self.size, Message.type_name.get(self.type, 'unknown'), self.type, self.streamId))
   
    def dup(self):
        return Header(channel=self.channel, time=self.time, size=self.size, type=self.type, streamId=self.streamId)


class Message(object):
    # message types: RPC3, DATA3,and SHAREDOBJECT3 are used with AMF3
    CHUNK_SIZE,   ABORT,   ACK,   USER_CONTROL, WIN_ACK_SIZE, SET_PEER_BW, AUDIO, VIDEO, DATA3, SHAREDOBJ3, RPC3, DATA, SHAREDOBJ, RPC = \
    0x01,         0x02,    0x03,  0x04,         0x05,         0x06,        0x08,  0x09,  0x0F,  0x10,       0x11, 0x12, 0x13,      0x14
    type_name = dict(enumerate('unknown chunk-size abort ack user-control win-ack-size set-peer-bw unknown audio video unknown unknown unknown unknown unknown data3 sharedobj3 rpc3 data sharedobj rpc'.split()))
   
    def __init__(self, hdr=None, data=''):
        self.header, self.data = hdr or Header(), data
   
    # define properties type, streamId and time to access self.header.(property)
    for p in ['type', 'streamId', 'time']:
        exec 'def _g%s(self): return self.header.%s'%(p, p)
        exec 'def _s%s(self, %s): self.header.%s = %s'%(p, p, p, p)
        exec '%s = property(fget=_g%s, fset=_s%s)'%(p, p, p)
    @property
    def size(self): return len(self.data)
           
    def __repr__(self):
        return ("<Message header=%r data=%r>"% (self.header, truncate(self.data)))
   
    def dup(self):
        return Message(self.header.dup(), self.data[:])
               
class Protocol(object):
    PING_SIZE, DEFAULT_CHUNK_SIZE, PROTOCOL_CHANNEL_ID = 1536, 128, 2 # constants
    READ_WIN_SIZE, WRITE_WIN_SIZE = 1000000L, 1073741824L
   
    def __init__(self, sock):
        self.stream = SockStream(sock)
        self.lastReadHeaders, self.incompletePackets, self.lastWriteHeaders = dict(), dict(), dict()
        self.readChunkSize = self.writeChunkSize = Protocol.DEFAULT_CHUNK_SIZE
        self.readWinSize0, self.readWinSize, self.writeWinSize0, self.writeWinSize = 0L, self.READ_WIN_SIZE, 0L, self.WRITE_WIN_SIZE
        self.nextChannelId = Protocol.PROTOCOL_CHANNEL_ID + 1
        self._time0 = time.time()
        self.writeQueue = multitask.Queue()
           
    @property
    def relativeTime(self):
        return int(1000*(time.time() - self._time0))
   
    def messageReceived(self, msg): # override in subclass
        yield
           
    def protocolMessage(self, msg):
        if msg.type == Message.ACK: # respond to ACK requests
            self.writeWinSize0 = struct.unpack('>L', msg.data)[0]
#            response = Message()
#            response.type, response.data = msg.type, msg.data
#            yield self.writeMessage(response)
        elif msg.type == Message.CHUNK_SIZE:
            self.readChunkSize = struct.unpack('>L', msg.data)[0]
        elif msg.type == Message.WIN_ACK_SIZE:
            self.readWinSize, self.readWinSize0 = struct.unpack('>L', msg.data)[0], self.stream.bytesRead
        elif msg.type == Message.USER_CONTROL:
            type, data = struct.unpack('>H', msg.data[:2])[0], msg.data[2:]
            if type == 3: # client expects a response when it sends set buffer length
                streamId, bufferTime = struct.unpack('>II', data)
                response = Message()
                response.time, response.type, response.data = self.relativeTime, Message.USER_CONTROL, struct.pack('>HI', 0, streamId)
                yield self.writeMessage(response)
        yield
       
    def connectionClosed(self):
        yield
                           
    def parse(self):
        try:
            yield self.parseCrossDomainPolicyRequest() # check for cross domain policy
            yield self.parseHandshake()  # parse rtmp handshake
            yield self.parseMessages()   # parse messages
        except ConnectionClosed:
            yield self.connectionClosed()
            if _debug: print 'parse connection closed'
        except:
            if _debug: print 'exception, closing connection'
            if _debug: traceback.print_exc()
            yield self.connectionClosed()
                   
    def writeMessage(self, message):
        yield self.writeQueue.put(message)
           
    def parseCrossDomainPolicyRequest(self):
        # read the request
        REQUEST = '<policy-file-request/>\x00'
        data = (yield self.stream.read(len(REQUEST)))
        if data == REQUEST:
            if _debug: print data
            data = '''<!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
                    <cross-domain-policy>
                      <allow-access-from domain="*" to-ports="1935" secure='false'/>
                    </cross-domain-policy>'''
            yield self.stream.write(data)
            raise ConnectionClosed
        else:
            yield self.stream.unread(data)
           
    SERVER_KEY = '\x47\x65\x6e\x75\x69\x6e\x65\x20\x41\x64\x6f\x62\x65\x20\x46\x6c\x61\x73\x68\x20\x4d\x65\x64\x69\x61\x20\x53\x65\x72\x76\x65\x72\x20\x30\x30\x31\xf0\xee\xc2\x4a\x80\x68\xbe\xe8\x2e\x00\xd0\xd1\x02\x9e\x7e\x57\x6e\xec\x5d\x2d\x29\x80\x6f\xab\x93\xb8\xe6\x36\xcf\xeb\x31\xae'
    FLASHPLAYER_KEY = '\x47\x65\x6E\x75\x69\x6E\x65\x20\x41\x64\x6F\x62\x65\x20\x46\x6C\x61\x73\x68\x20\x50\x6C\x61\x79\x65\x72\x20\x30\x30\x31\xF0\xEE\xC2\x4A\x80\x68\xBE\xE8\x2E\x00\xD0\xD1\x02\x9E\x7E\x57\x6E\xEC\x5D\x2D\x29\x80\x6F\xAB\x93\xB8\xE6\x36\xCF\xEB\x31\xAE'
   
    def parseHandshake(self):
        '''Parses the rtmp handshake'''
        data = (yield self.stream.read(Protocol.PING_SIZE + 1)) # bound version and first ping
        data = Protocol.handshakeResponse(data)
        yield self.stream.write(data)
        data = (yield self.stream.read(Protocol.PING_SIZE))
   
    @staticmethod
    def handshakeResponse(data):
        # send both data parts before reading next ping-size, to work with ffmpeg
        if struct.unpack('>I', data[5:9])[0] == 0:
            data = '\x03' + '\x00'*Protocol.PING_SIZE
            return data + data[1:]
        else:
            type, data = ord(data[0]), data[1:] # first byte is ignored
            scheme = None
            for s in range(0, 2):
                digest_offset = (sum([ord(data[i]) for i in range(772, 776)]) % 728 + 776) if s == 1 else (sum([ord(data[i]) for i in range(8, 12)]) % 728 + 12)
                temp = data[0:digest_offset] + data[digest_offset+32:Protocol.PING_SIZE]
                hash = Protocol._calculateHash(temp, Protocol.FLASHPLAYER_KEY[:30])
                if hash == data[digest_offset:digest_offset+32]:
                    scheme = s
                    break
            if scheme is None:
                if _debug: print 'invalid RTMP connection data, assuming scheme 0'
                scheme = 0
            client_dh_offset = (sum([ord(data[i]) for i in range(768, 772)]) % 632 + 8) if scheme == 1 else (sum([ord(data[i]) for i in range(1532, 1536)]) % 632 + 772)
            outgoingKp = data[client_dh_offset:client_dh_offset+128]
            handshake = struct.pack('>IBBBB', 0, 1, 2, 3, 4) + ''.join([chr(random.randint(0, 255)) for i in xrange(Protocol.PING_SIZE-8)])
            server_dh_offset = (sum([ord(handshake[i]) for i in range(768, 772)]) % 632 + 8) if scheme == 1 else (sum([ord(handshake[i]) for i in range(1532, 1536)]) % 632 + 772)
            keys = Protocol._generateKeyPair() # (public, private)
            handshake = handshake[:server_dh_offset] + keys[0][0:128] + handshake[server_dh_offset+128:]
            if type > 0x03: raise Exception('encryption is not supported')
            server_digest_offset = (sum([ord(handshake[i]) for i in range(772, 776)]) % 728 + 776) if scheme == 1 else (sum([ord(handshake[i]) for i in range(8, 12)]) % 728 + 12)
            temp = handshake[0:server_digest_offset] + handshake[server_digest_offset+32:Protocol.PING_SIZE]
            hash = Protocol._calculateHash(temp, Protocol.SERVER_KEY[:36])
            handshake = handshake[:server_digest_offset] + hash + handshake[server_digest_offset+32:]
            buffer = data[:Protocol.PING_SIZE-32]
            key_challenge_offset = (sum([ord(buffer[i]) for i in range(772, 776)]) % 728 + 776) if scheme == 1 else (sum([ord(buffer[i]) for i in range(8, 12)]) % 728 + 12)
            challenge_key = data[key_challenge_offset:key_challenge_offset+32]
            hash = Protocol._calculateHash(challenge_key, Protocol.SERVER_KEY[:68])
            rand_bytes = ''.join([chr(random.randint(0, 255)) for i in xrange(Protocol.PING_SIZE-32)])
            last_hash = Protocol._calculateHash(rand_bytes, hash[:32])
            output = chr(type) + handshake + rand_bytes + last_hash
            return output
       
    @staticmethod
    def _calculateHash(msg, key): # Hmac-sha256
        return hmac.new(key, msg, hashlib.sha256).digest()
       
    @staticmethod
    def _generateKeyPair(): # dummy key pair since we don't support encryption
        return (''.join([chr(random.randint(0, 255)) for i in xrange(128)]), '')
       
    def parseMessages(self):
        '''Parses complete messages until connection closed. Raises ConnectionLost exception.'''
        CHANNEL_MASK = 0x3F
        while True:
            hdrsize = ord((yield self.stream.read(1))[0])  # read header size byte
            channel = hdrsize & CHANNEL_MASK
            if channel == 0: # we need one more byte
                channel = 64 + ord((yield self.stream.read(1))[0])
            elif channel == 1: # we need two more bytes
                data = (yield self.stream.read(2))
                channel = 64 + ord(data[0]) + 256 * ord(data[1])

            hdrtype = hdrsize & Header.MASK   # read header type byte
            if hdrtype == Header.FULL or not self.lastReadHeaders.has_key(channel):
                header = Header(channel)
                self.lastReadHeaders[channel] = header
            else:
                header = self.lastReadHeaders[channel]
           
            if hdrtype < Header.SEPARATOR: # time or delta has changed
                data = (yield self.stream.read(3))
                header.time = struct.unpack('!I', '\x00' + data)[0]
               
            if hdrtype < Header.TIME: # size and type also changed
                data = (yield self.stream.read(3))
                header.size = struct.unpack('!I', '\x00' + data)[0]
                header.type = ord((yield self.stream.read(1))[0])

            if hdrtype < Header.MESSAGE: # streamId also changed
                data = (yield self.stream.read(4))
                header.streamId = struct.unpack('<I', data)[0]

            if header.time == 0xFFFFFF: # if we have extended timestamp, read it
                data = (yield self.stream.read(4))
                header.extendedTime = struct.unpack('!I', data)[0]
                if _debug: print 'extended time stamp', '%x'%(header.extendedTime,)
            else:
                header.extendedTime = None
               
            if hdrtype == Header.FULL:
                header.currentTime = header.extendedTime or header.time
                header.hdrtype = hdrtype
            elif hdrtype in (Header.MESSAGE, Header.TIME):
                header.hdrtype = hdrtype

            #print header.type, '0x%02x'%(hdrtype,), header.time, header.currentTime
           
            # if _debug: print 'R', header, header.currentTime, header.extendedTime, '0x%x'%(hdrsize,)
             
            data = self.incompletePackets.get(channel, "") # are we continuing an incomplete packet?
           
            count = min(header.size - (len(data)), self.readChunkSize) # how much more
           
            data += (yield self.stream.read(count))

            # check if we need to send Ack
            if self.readWinSize is not None:
                if self.stream.bytesRead > (self.readWinSize0 + self.readWinSize):
                    self.readWinSize0 = self.stream.bytesRead
                    ack = Message()
                    ack.time, ack.type, ack.data = self.relativeTime, Message.ACK, struct.pack('>L', self.readWinSize0)
                    yield self.writeMessage(ack)
                   
            if len(data) < header.size: # we don't have all data
                self.incompletePackets[channel] = data
            else: # we have all data
                if hdrtype in (Header.MESSAGE, Header.TIME):
                    header.currentTime = header.currentTime + (header.extendedTime or header.time)
                elif hdrtype == Header.SEPARATOR:
                    if header.hdrtype in (Header.MESSAGE, Header.TIME):
                        header.currentTime = header.currentTime + (header.extendedTime or header.time)
                if len(data) == header.size:
                    if channel in self.incompletePackets:
                        del self.incompletePackets[channel]
                else:
                    data, self.incompletePackets[channel] = data[:header.size], data[header.size:]
               
                hdr = Header(channel=header.channel, time=header.currentTime, size=header.size, type=header.type, streamId=header.streamId)
                msg = Message(hdr, data)
                if _debug: print 'Protocol.parseMessage msg=', msg
                try:
                    if channel == Protocol.PROTOCOL_CHANNEL_ID:
                        yield self.protocolMessage(msg)
                    else:
                        yield self.messageReceived(msg)
                except:
                    if _debug: print 'Protocol.parseMessages exception', (traceback and traceback.print_exc() or None)

    def write(self):
        '''Writes messages to stream'''
        while True:
#            while self.writeQueue.empty(): (yield multitask.sleep(0.01))
#            message = self.writeQueue.get() # TODO this should be used using multitask.Queue and remove previous wait.
            message = yield self.writeQueue.get() # TODO this should be used using multitask.Queue and remove previous wait.
            if _debug: print 'Protocol.write msg=', message
            if message is None:
                try: self.stream.close()  # just in case TCP socket is not closed, close it.
                except: pass
                break
           
            # get the header stored for the stream
            if self.lastWriteHeaders.has_key(message.streamId):
                header = self.lastWriteHeaders[message.streamId]
            else:
                if self.nextChannelId <= Protocol.PROTOCOL_CHANNEL_ID: self.nextChannelId = Protocol.PROTOCOL_CHANNEL_ID+1
                header, self.nextChannelId = Header(self.nextChannelId), self.nextChannelId + 1
                self.lastWriteHeaders[message.streamId] = header
            if message.type < Message.AUDIO:
                header = Header(Protocol.PROTOCOL_CHANNEL_ID)
               
            # now figure out the header data bytes
            if header.streamId != message.streamId or header.time == 0 or message.time <= header.time:
                header.streamId, header.type, header.size, header.time, header.delta = message.streamId, message.type, message.size, message.time, message.time
                control = Header.FULL
            elif header.size != message.size or header.type != message.type:
                header.type, header.size, header.time, header.delta = message.type, message.size, message.time, message.time-header.time
                control = Header.MESSAGE
            else:
                header.time, header.delta = message.time, message.time-header.time
                control = Header.TIME
           
            hdr = Header(channel=header.channel, time=header.delta if control in (Header.MESSAGE, Header.TIME) else header.time, size=header.size, type=header.type, streamId=header.streamId)
            assert message.size == len(message.data)

            data = ''
            while len(message.data) > 0:
                data += hdr.toBytes(control) # gather header bytes
                count = min(self.writeChunkSize, len(message.data))
                data += message.data[:count]
                message.data = message.data[count:]
                control = Header.SEPARATOR # incomplete message continuation
            try:
                yield self.stream.write(data)
            except ConnectionClosed:
                yield self.connectionClosed()
            except:
                print traceback.print_exc()

class Command(object):
    ''' Class for command / data messages'''
    def __init__(self, type=Message.RPC, name=None, id=None, tm=0, cmdData=None, args=[]):
        '''Create a new command with given type, name, id, cmdData and args list.'''
        self.type, self.name, self.id, self.time, self.cmdData, self.args = type, name, id, tm, cmdData, args[:]
       
    def __repr__(self):
        return ("<Command type=%r name=%r id=%r data=%r args=%r>" % (self.type, self.name, self.id, self.cmdData, self.args))
   
    def setArg(self, arg):
        self.args.append(arg)
   
    def getArg(self, index):
        return self.args[index]
   
    @classmethod
    def fromMessage(cls, message):
        ''' initialize from a parsed RTMP message'''
        assert (message.type in [Message.RPC, Message.RPC3, Message.DATA, Message.DATA3])

        length = len(message.data)
        if length == 0: raise ValueError('zero length message data')
       
        if message.type == Message.RPC3 or message.type == Message.DATA3:
            assert message.data[0] == '\x00' # must be 0 in AMF3
            data = message.data[1:]
        else:
            data = message.data
       
        amfReader = amf.AMF0(data)

        inst = cls()
        inst.type = message.type
        inst.time = message.time
        inst.name = amfReader.read() # first field is command name

        try:
            if message.type == Message.RPC or message.type == Message.RPC3:
                inst.id = amfReader.read() # second field *may* be message id
                inst.cmdData = amfReader.read() # third is command data
            else:
                inst.id = 0
            inst.args = [] # others are optional
            while True:
                inst.args.append(amfReader.read())
        except EOFError:
            pass
        return inst
   
    def toMessage(self):
        msg = Message()
        assert self.type
        msg.type = self.type
        msg.time = self.time
        output = amf.BytesIO()
        amfWriter = amf.AMF0(output)
        amfWriter.write(self.name)
        if msg.type == Message.RPC or msg.type == Message.RPC3:
            amfWriter.write(self.id)
            amfWriter.write(self.cmdData)
        for arg in self.args:
            amfWriter.write(arg)
        output.seek(0)
        #hexdump.hexdump(output)
        #output.seek(0)
        if msg.type == Message.RPC3 or msg.type == Message.DATA3:
            data = '\x00' + output.read()
        else:
            data = output.read()
        msg.data = data
        output.close()
        return msg

def getfilename(path, name, root):
    '''return the file name for the given stream. The name is derived as root/scope/name.flv where scope is
    the the path present in the path variable.'''
    ignore, ignore, scope = path.partition('/')
    if scope: scope = scope + '/'
    result = root + scope + name + '.flv'
    if _debug: print 'filename=', result
    return result

class FLV(object):
    '''An FLV file which converts between RTMP message and FLV tags.'''
    def __init__(self):
        self.fname = self.fp = self.type = None
        self.tsp = self.tsr = 0; self.tsr0 = None
   
    def open(self, path, type='read', mode=0775):
        '''Open the file for reading (type=read) or writing (type=record or append).'''
        if str(path).find('/../') >= 0 or str(path).find('\\..\\') >= 0: raise ValueError('Must not contain .. in name')
        if _debug: print 'opening file', path
        self.tsp = self.tsr = 0; self.tsr0 = None; self.type = type
        if type in ('record', 'append'):
            try: os.makedirs(os.path.dirname(path), mode)
            except: pass
            self.fp = open(path, ('w' if type == 'record' else 'a')+'b')
            if type == 'record':
                self.fp.write('FLV\x01\x05\x00\x00\x00\x09\x00\x00\x00\x00') # the header and first previousTagSize
                self.writeDuration(0.0)
        else:
            self.fp = open(path, 'rb')
            magic, version, flags, offset = struct.unpack('!3sBBI', self.fp.read(9))
            if _debug: print 'FLV.open() hdr=', magic, version, flags, offset
            if magic != 'FLV': raise ValueError('This is not a FLV file')
            if version != 1: raise ValueError('Unsupported FLV file version')
            if offset > 9: self.fp.seek(offset-9, os.SEEK_CUR)
            self.fp.read(4) # ignore first previous tag size
        return self
   
    def close(self):
        '''Close the underlying file for this object.'''
        if _debug: print 'closing flv file'
        if self.type == 'record' and self.tsr0 is not None: self.writeDuration((self.tsr - self.tsr0)/1000.0)
        if self.fp is not None:
            try: self.fp.close()
            except: pass
            self.fp = None
   
    def delete(self, path):
        '''Delete the underlying file for this object.'''
        try: os.unlink(path)
        except: pass
       
    def writeDuration(self, duration):
        if _debug: print 'writing duration', duration
        output = amf.BytesIO()
        amfWriter = amf.AMF0(output) # TODO: use AMF3 if needed
        amfWriter.write('onMetaData')
        amfWriter.write({"duration": duration, "videocodecid": 2})
        output.seek(0); data = output.read()
        length, ts = len(data), 0
        data = struct.pack('>BBHBHB', Message.DATA, (length >> 16) & 0xff, length & 0x0ffff, (ts >> 16) & 0xff, ts & 0x0ffff, (ts >> 24) & 0xff) + '\x00\x00\x00' +  data
        data += struct.pack('>I', len(data))
        lastpos = self.fp.tell()
        if lastpos != 13: self.fp.seek(13, os.SEEK_SET)
        self.fp.write(data)
        if lastpos != 13: self.fp.seek(lastpos, os.SEEK_SET)
       
    def write(self, message):
        '''Write a message to the file, assuming it was opened for writing or appending.'''
#        if message.type == Message.VIDEO:
#            self.videostarted = True
#        elif not hasattr(self, "videostarted"): return
        if message.type == Message.AUDIO or message.type == Message.VIDEO:
            length, ts = message.size, message.time
            #if _debug: print 'FLV.write()', message.type, ts
            if self.tsr0 is None: self.tsr0 = ts
            self.tsr, ts = ts, ts - self.tsr0
            # if message.type == Message.AUDIO: print 'w', message.type, ts
            data = struct.pack('>BBHBHB', message.type, (length >> 16) & 0xff, length & 0x0ffff, (ts >> 16) & 0xff, ts & 0x0ffff, (ts >> 24) & 0xff) + '\x00\x00\x00' +  message.data
            data += struct.pack('>I', len(data))
            self.fp.write(data)
   
    def reader(self, stream):
        '''A generator to periodically read the file and dispatch them to the stream. The supplied stream
        object must have a send(Message) method and id and client properties.'''
        if _debug: print 'reader started'
        yield
        try:
            while self.fp is not None:
                bytes = self.fp.read(11)
                if len(bytes) == 0:
                    response = Command(name='onStatus', id=stream.id, tm=stream.client.relativeTime, args=[amf.Object(level='status',code='NetStream.Play.Stop', description='File ended', details=None)])
                    yield stream.send(response.toMessage())
                    break
                type, len0, len1, ts0, ts1, ts2, sid0, sid1 = struct.unpack('>BBHBHBBH', bytes)
                length = (len0 << 16) | len1; ts = (ts0 << 16) | (ts1 & 0x0ffff) | (ts2 << 24)
                body = self.fp.read(length); ptagsize, = struct.unpack('>I', self.fp.read(4))
                if ptagsize != (length+11):
                    if _debug: print 'invalid previous tag-size found:', ptagsize, '!=', (length+11),'ignored.'
                if stream is None or stream.client is None: break # if it is closed
                #hdr = Header(3 if type == Message.AUDIO else 4, ts if ts < 0xffffff else 0xffffff, length, type, stream.id)
                hdr = Header(0, ts, length, type, stream.id)
                msg = Message(hdr, body)
                # if _debug: print 'FLV.read() length=', length, 'hdr=', hdr
                # if hdr.type == Message.AUDIO: print 'r', hdr.type, hdr.time
                if type == Message.DATA: # metadata
                    amfReader = amf.AMF0(body) # TODO: use AMF3 if needed
                    name = amfReader.read()
                    obj = amfReader.read()
                    if _debug: print 'FLV.read()', name, repr(obj)
                yield stream.send(msg)
                if ts > self.tsp:
                    diff, self.tsp = ts - self.tsp, ts
                    if _debug: print 'FLV.read() sleep', diff
                    yield multitask.sleep(diff / 1000.0)
        except StopIteration: pass
        except:
            if _debug: print 'closing the reader', (sys and sys.exc_info() or None)
            if self.fp is not None:
                try: self.fp.close()
                except: pass
                self.fp = None
           
    def seek(self, offset):
        '''For file reader, try seek to the given time. The offset is in millisec'''
        if self.type == 'read':
            if _debug: print 'FLV.seek() offset=', offset, 'current tsp=', self.tsp
            self.fp.seek(0, os.SEEK_SET)
            magic, version, flags, length = struct.unpack('!3sBBI', self.fp.read(9))
            if length > 9: self.fp.seek(length-9, os.SEEK_CUR)
            self.fp.seek(4, os.SEEK_CUR) # ignore first previous tag size
            self.tsp, ts = int(offset), 0
            while self.tsp > 0 and ts < self.tsp:
                bytes = self.fp.read(11)
                if not bytes: break
                type, len0, len1, ts0, ts1, ts2, sid0, sid1 = struct.unpack('>BBHBHBBH', bytes)
                length = (len0 << 16) | len1; ts = (ts0 << 16) | (ts1 & 0x0ffff) | (ts2 << 24)
                self.fp.seek(length, os.SEEK_CUR)
                ptagsize, = struct.unpack('>I', self.fp.read(4))
                if ptagsize != (length+11): break
            if _debug: print 'FLV.seek() new ts=', ts, 'tell', self.fp.tell()
               
       
class Stream(object):
    '''The stream object that is used for RTMP stream.'''
    count = 0;
    def __init__(self, client):
        self.client, self.id, self.name = client, 0, ''
        self.recordfile = self.playfile = None # so that it doesn't complain about missing attribute
        self.queue = multitask.Queue()
        self._name = 'Stream[' + str(Stream.count) + ']'; Stream.count += 1
        if _debug: print self, 'created'
       
    def close(self):
        if _debug: print self, 'closing'
        if self.recordfile is not None: self.recordfile.close(); self.recordfile = None
        if self.playfile is not None: self.playfile.close(); self.playfile = None
        self.client = None # to clear the reference
        pass
   
    def __repr__(self):
        return self._name;
   
    def recv(self):
        '''Generator to receive new Message on this stream, or None if stream is closed.'''
        return self.queue.get()
   
    def send(self, msg):
        '''Method to send a Message or Command on this stream.'''
        if isinstance(msg, Command):
            msg = msg.toMessage()
        msg.streamId = self.id
        # if _debug: print self,'send'
        if self.client is not None: yield self.client.writeMessage(msg)
       
class Client(Protocol):
    '''The client object represents a single connected client to the server.'''
    def __init__(self, sock, server):
        Protocol.__init__(self, sock)
        self.server, self.agent, self.streams, self._nextCallId, self._nextStreamId, self.objectEncoding = \
          server,      None,         {},           2,                1,                  0.0
        self.queue = multitask.Queue() # receive queue used by application
        multitask.add(self.parse()); multitask.add(self.write())

    def recv(self):
        '''Generator to receive new Message (msg, arg) on this stream, or (None,None) if stream is closed.'''
        return self.queue.get()
   
    def connectionClosed(self):
        '''Called when the client drops the connection'''
        if _debug: 'Client.connectionClosed'
        yield self.writeMessage(None)
        yield self.queue.put((None,None))
           
    def messageReceived(self, msg):
        if (msg.type == Message.RPC or msg.type == Message.RPC3) and msg.streamId == 0:
            cmd = Command.fromMessage(msg)
            # if _debug: print 'rtmp.Client.messageReceived cmd=', cmd
            if cmd.name == 'connect':
                self.agent = cmd.cmdData
                if _debug: print 'connect', ', '.join(['%s=%r'%(x, getattr(self.agent, x)) for x in 'app flashVer swfUrl tcUrl fpad capabilities audioCodecs videoCodecs videoFunction pageUrl objectEncoding'.split() if hasattr(self.agent, x)])
                self.objectEncoding = self.agent.objectEncoding if hasattr(self.agent, 'objectEncoding') else 0.0
                yield self.server.queue.put((self, cmd.args)) # new connection
            elif cmd.name == 'createStream':
                response = Command(name='_result', id=cmd.id, tm=self.relativeTime, type=self.rpc, args=[self._nextStreamId])
                yield self.writeMessage(response.toMessage())
               
                stream = Stream(self) # create a stream object
                stream.id = self._nextStreamId
                self.streams[self._nextStreamId] = stream
                self._nextStreamId += 1

                yield self.queue.put(('stream', stream)) # also notify others of our new stream
            elif cmd.name == 'closeStream':
                assert msg.streamId in self.streams
                yield self.streams[msg.streamId].queue.put(None) # notify closing to others
                del self.streams[msg.streamId]
            else:
                # if _debug: print 'Client.messageReceived cmd=', cmd
                yield self.queue.put(('command', cmd)) # RPC call
        else: # this has to be a message on the stream
            assert msg.streamId != 0
            assert msg.streamId in self.streams
            # if _debug: print self.streams[msg.streamId], 'recv'
            stream = self.streams[msg.streamId]
            if not stream.client: stream.client = self
            yield stream.queue.put(msg) # give it to stream

    @property
    def rpc(self):
        # TODO: reverting r141 since it causes exception in setting self.rpc
        return Message.RPC if self.objectEncoding == 0.0 else Message.RPC3
   
    def accept(self):
        '''Method to accept an incoming client.'''
        response = Command()
        response.id, response.name, response.type = 1, '_result', self.rpc
        if _debug: print 'Client.accept() objectEncoding=', self.objectEncoding
        arg = amf.Object(level='status', code='NetConnection.Connect.Success',
                         description='Connection succeeded.', fmsVer='rtmplite/8,2')
        if hasattr(self.agent, 'objectEncoding'):
            arg.objectEncoding, arg.details = self.objectEncoding, None
        response.setArg(arg)
        yield self.writeMessage(response.toMessage())
           
    def rejectConnection(self, reason=''):
        '''Method to reject an incoming client.'''
        response = Command()
        response.id, response.name, response.type = 1, '_error', self.rpc
        response.setArg(amf.Object(level='status', code='NetConnection.Connect.Rejected',
                        description=reason, fmsVer='rtmplite/8,2', details=None))
        yield self.writeMessage(response.toMessage())
           
    def redirectConnection(self, url, reason='Connection failed'):
        '''Method to redirect an incoming client to the given url.'''
        response = Command()
        response.id, response.name, response.type = 1, '_error', self.rpc
        extra = dict(code=302, redirect=url)
        response.setArg(amf.Object(level='status', code='NetConnection.Connect.Rejected',
                        description=reason, fmsVer='rtmplite/8,2', details=None, ex=extra))
        yield self.writeMessage(response.toMessage())

    def call(self, method, *args):
        '''Call a (callback) method on the client.'''
        cmd = Command()
        cmd.id, cmd.time, cmd.name, cmd.type = self._nextCallId, self.relativeTime, method, self.rpc
        cmd.args, cmd.cmdData = args, None
        self._nextCallId += 1
        if _debug: print 'Client.call method=', method, 'args=', args, ' msg=', cmd.toMessage()
        yield self.writeMessage(cmd.toMessage())
           
    def createStream(self):
        ''' Create a stream on the server side'''
        stream = Stream(self)
        stream.id = self._nextStreamId
        self.streams[stream.id] = stream
        self._nextStreamId += 1
        return stream


class Server(object):
    '''A RTMP server listens for incoming connections and informs the app.'''
    def __init__(self, sock):
        '''Create an RTMP server on the given bound TCP socket. The server will terminate
        when the socket is disconnected, or some other error occurs in listening.'''
        self.sock = sock
        self.queue = multitask.Queue()  # queue to receive incoming client connections
        multitask.add(self.run())

    def recv(self):
        '''Generator to wait for incoming client connections on this server and return
        (client, args) or (None, None) if the socket is closed or some error.'''
        return self.queue.get()
       
    def run(self):
        try:
            while True:
                sock, remote = (yield multitask.accept(self.sock))  # receive client TCP
                if sock == None:
                    if _debug: print 'rtmp.Server accept(sock) returned None.'
                    break
                if _debug: print 'connection received from', remote
                sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1) # make it non-block
                client = Client(sock, self)
        except GeneratorExit: pass # terminate
        except:
            if _debug: print 'rtmp.Server exception ', (sys and sys.exc_info() or None)
       
        if (self.sock):
            try: self.sock.close(); self.sock = None
            except: pass
        if (self.queue):
            yield self.queue.put((None, None))
            self.queue = None

class App(object):
    '''An application instance containing any number of streams. Except for constructor all methods are generators.'''
    count = 0
    def __init__(self):
        self.name = str(self.__class__.__name__) + '[' + str(App.count) + ']'; App.count += 1
        self.players, self.publishers, self._clients = {}, {}, [] # Streams indexed by stream name, and list of clients
        if _debug: print self.name, 'created'
    def __del__(self):
        if _debug: print self.name, 'destroyed'
    @property
    def clients(self):
        '''everytime this property is accessed it returns a new list of clients connected to this instance.'''
        return self._clients[1:] if self._clients is not None else []
    def onConnect(self, client, *args):
        if _debug: print self.name, 'onConnect', client.path
        return True
    def onDisconnect(self, client):
        if _debug: print self.name, 'onDisconnect', client.path
    def onPublish(self, client, stream):
        if _debug: print self.name, 'onPublish', client.path, stream.name
    def onClose(self, client, stream):
        if _debug: print self.name, 'onClose', client.path, stream.name
    def onPlay(self, client, stream):
        if _debug: print self.name, 'onPlay', client.path, stream.name
    def onStop(self, client, stream):
        if _debug: print self.name, 'onStop', client.path, stream.name
    def onCommand(self, client, cmd, *args):
        if _debug: print self.name, 'onCommand', cmd, args
    def onStatus(self, client, info):
        if _debug: print self.name, 'onStatus', info
    def onResult(self, client, result):
        if _debug: print self.name, 'onResult', result
    def onPublishData(self, client, stream, message): # this is invoked every time some media packet is received from published stream.
        return True # should return True so that the data is actually published in that stream
    def onPlayData(self, client, stream, message):
        return True # should return True so that data will be actually played in that stream

class Wirecast(App):
    '''A wrapper around App to workaround with wirecast publisher which does not send AVC seq periodically. It defines new stream variables
    such as in publish stream 'metaData' to store first published metadata Message, and 'avcSeq' to store the last published AVC seq Message,
    and in play stream 'avcIntra' to indicate if AVC intra frame has been sent or not. These variables are created onPublish and onPlay.
    Additional, when onPlay it also also sends any published stream.metaData if found in associated publisher. When onPlayData for video, if
    it detects AVC seq it sets avcIntra so that it is not explicitly sent. This is the case with Flash Player publisher. When onPlayData for video,
    if it detects avcIntra is not set, it discards the packet until AVC NALU or seq is received. If NALU is received but previous seq is not received
    it uses the publisher's avcSeq message to send before this NALU if found.'''
    def __init__(self):
        App.__init__(self)

    def onPublish(self, client, stream):
        App.onPublish(self, client, stream)
        if not hasattr(stream, 'metaData'): stream.metaData = None
        if not hasattr(stream, 'avcSeq'): stream.avcSeq = None
       
    def onPlay(self, client, stream):
        App.onPlay(self, client, stream)
        if not hasattr(stream, 'avcIntra'): stream.avcIntra = False
        publisher = self.publishers.get(stream.name, None)
        if publisher and publisher.metaData: # send published meta data to this player joining late
            multitask.add(stream.send(publisher.metaData.dup()))
   
    def onPublishData(self, client, stream, message):
        if message.type == Message.DATA and not stream.metaData: # store the first meta data on this published stream for late joining players
            stream.metaData = message.dup()
        if message.type == Message.VIDEO and message.data[:2] == '\x17\x00': # H264Avc intra + seq, store it
            stream.avcSeq = message.dup()
        return True

    def onPlayData(self, client, stream, message):
        if message.type == Message.VIDEO: # only video packets need special handling
            if message.data[:2] == '\x17\x00': # intra+seq is being sent, possibly by Flash Player publisher.
                stream.avcIntra = True
            elif not stream.avcIntra:  # intra frame hasn't been sent yet.
                if message.data[:2] == '\x17\x01': # intra+nalu is being sent, possibly by wirecast publisher.
                    publisher = self.publishers.get(stream.name, None)
                    if publisher and publisher.avcSeq: # if a publisher exists
                        def sendboth(stream, msgs):
                            stream.avcIntra = True
                            for msg in msgs: yield stream.send(msg)
                        multitask.add(sendboth(stream, [publisher.avcSeq.dup(), message]))
                        return False # so that caller doesn't send it again
                return False # drop until next intra video is sent
        return True

class FlashServer(object):
    '''A RTMP server to record and stream Flash video.'''
    def __init__(self):
        '''Construct a new FlashServer. It initializes the local members.'''
        self.sock = self.server = None;
        self.apps = dict({'*': App, 'wirecast': Wirecast}) # supported applications: * means any as in {'*': App}
        self.clients = dict()  # list of clients indexed by scope. First item in list is app instance.
        self.root = '';
       
    def start(self, host='0.0.0.0', port=1935):
        '''This should be used to start listening for RTMP connections on the given port, which defaults to 1935.'''
        if not self.server:
            sock = self.sock = socket.socket(type=socket.SOCK_STREAM)
            sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
            sock.bind((host, port))
            if _debug: print 'listening on ', sock.getsockname()
            sock.listen(5)
            server = self.server = Server(sock) # start rtmp server on that socket
            multitask.add(self.serverlistener())
   
    def stop(self):
        if _debug: print 'stopping Flash server'
        if self.server and self.sock:
            try: self.sock.close(); self.sock = None
            except: pass
        self.server = None
       
    def serverlistener(self):
        '''Server listener (generator). It accepts all connections and invokes client listener'''
        try:
            while True:  # main loop to receive new connections on the server
                client, args = (yield self.server.recv()) # receive an incoming client connection.
                # TODO: we should reject non-localhost client connections.
                if not client:                # if the server aborted abnormally,
                    break                     #    hence close the listener.
                if _debug: print 'client connection received', client, args
                if client.objectEncoding != 0 and client.objectEncoding != 3:
                #if client.objectEncoding != 0:
                    yield client.rejectConnection(reason='Unsupported encoding ' + str(client.objectEncoding) + '. Please use NetConnection.defaultObjectEncoding=ObjectEncoding.AMF0')
                    yield client.connectionClosed()
                else:
                    client.path = str(client.agent.app) if hasattr(client.agent, 'app') else str(client.agent['app']) if isinstance(client.agent, dict) else None
                    if not client.path:
                        yield client.rejectConnection(reason='Missing app path')
                        break
                    name, ignore, scope = client.path.partition('/')
                    if '*' not in self.apps and name not in self.apps:
                        yield client.rejectConnection(reason='Application not found: ' + name)
                    else: # create application instance as needed and add in our list
                        if _debug: print 'name=', name, 'name in apps', str(name in self.apps)
                        app = self.apps[name] if name in self.apps else self.apps['*'] # application class
                        if client.path in self.clients: inst = self.clients[client.path][0]
                        else: inst = app()
                       
                        win_ack = Message()
                        win_ack.time, win_ack.type, win_ack.data = client.relativeTime, Message.WIN_ACK_SIZE, struct.pack('>L', client.writeWinSize)
                        yield client.writeMessage(win_ack)
                       
#                        set_peer_bw = Message()
#                        set_peer_bw.time, set_peer_bw.type, set_peer_bw.data = client.relativeTime, Message.SET_PEER_BW, struct.pack('>LB', client.writeWinSize, 1)
#                        client.writeMessage(set_peer_bw)
                       
                        try:
                            result = inst.onConnect(client, *args)
                        except:
                            if _debug: print sys.exc_info()
                            yield client.rejectConnection(reason='Exception on onConnect');
                            continue
                        if result is True or result is None:
                            if client.path not in self.clients:
                                self.clients[client.path] = [inst]; inst._clients=self.clients[client.path]
                            self.clients[client.path].append(client)
                            if result is True:
                                yield client.accept() # TODO: else how to kill this task when rejectConnection() later
                            multitask.add(self.clientlistener(client)) # receive messages from client.
                        else:
                            yield client.rejectConnection(reason='Rejected in onConnect')
        except GeneratorExit: pass # terminate
        except StopIteration: raise
        except:
            if _debug: print 'serverlistener exception', traceback.print_exc()
           
    def clientlistener(self, client):
        '''Client listener (generator). It receives a command and invokes client handler, or receives a new stream and invokes streamlistener.'''
        try:
            while True:
                msg, arg = (yield client.recv())   # receive new message from client
                if not msg:                   # if the client disconnected,
                    if _debug: print 'connection closed from client'
                    break                     #    come out of listening loop.
                if msg == 'command':          # handle a new command
                    multitask.add(self.clienthandler(client, arg))
                elif msg == 'stream':         # a new stream is created, handle the stream.
                    arg.client = client
                    multitask.add(self.streamlistener(arg))
        except StopIteration: raise
        except:
            if _debug: print 'clientlistener exception', (sys and sys.exc_info() or None)
       
        try:
            # client is disconnected, clear our state for application instance.
            if _debug: print 'cleaning up client', client.path
            inst = None
            if client.path in self.clients:
                inst = self.clients[client.path][0]
                self.clients[client.path].remove(client)
            for stream in client.streams.values(): # for all streams of this client
                self.closehandler(stream)
            client.streams.clear() # and clear the collection of streams
            if client.path in self.clients and len(self.clients[client.path]) == 1: # no more clients left, delete the instance.
                if _debug: print 'removing the application instance'
                inst = self.clients[client.path][0]
                inst._clients = None
                del self.clients[client.path]
            if inst is not None: inst.onDisconnect(client)
        except:
            if _debug: print 'clientlistener exception', (sys and sys.exc_info() or None)
           
    def closehandler(self, stream):
        '''A stream is closed explicitly when a closeStream command is received from given client.'''
        if stream.client is not None:
            inst = self.clients[stream.client.path][0]
            if stream.name in inst.publishers and inst.publishers[stream.name] == stream: # clear the published stream
                inst.onClose(stream.client, stream)
                del inst.publishers[stream.name]
            if stream.name in inst.players and stream in inst.players[stream.name]:
                inst.onStop(stream.client, stream)
                inst.players[stream.name].remove(stream)
                if len(inst.players[stream.name]) == 0:
                    del inst.players[stream.name]
            stream.close()
       
    def clienthandler(self, client, cmd):
        '''A generator to handle a single command on the client.'''
        inst = self.clients[client.path][0]
        if inst:
            if cmd.name == '_error':
                if hasattr(inst, 'onStatus'):
                    result = inst.onStatus(client, cmd.args[0])
            elif cmd.name == '_result':
                if hasattr(inst, 'onResult'):
                    result = inst.onResult(client, cmd.args[0])
            else:
                res, code, result = Command(), '_result', None
                try:
                    result = inst.onCommand(client, cmd.name, *cmd.args)
                except:
                    if _debug: print 'Client.call exception', (sys and sys.exc_info() or None)
                    code = '_error'
                args = (result,) if result is not None else dict()
                res.id, res.time, res.name, res.type = cmd.id, client.relativeTime, code, client.rpc
                res.args, res.cmdData = args, None
                if _debug: print 'Client.call method=', code, 'args=', args, ' msg=', res.toMessage()
                yield client.writeMessage(res.toMessage())
        yield
       
    def streamlistener(self, stream):
        '''Stream listener (generator). It receives stream message and invokes streamhandler.'''
        try:
            stream.recordfile = None # so that it doesn't complain about missing attribute
            while True:
                msg = (yield stream.recv())
                if not msg:
                    if _debug: print 'stream closed'
                    self.closehandler(stream)
                    break
                # if _debug: msg
                multitask.add(self.streamhandler(stream, msg))
        except:
            if _debug: print 'streamlistener exception', (sys and sys.exc_info() or None)
           
    def streamhandler(self, stream, message):
        '''A generator to handle a single message on the stream.'''
        try:
            if message.type == Message.RPC or message.type == Message.RPC3:
                cmd = Command.fromMessage(message)
                if _debug: print 'streamhandler received cmd=', cmd
                if cmd.name == 'publish':
                    yield self.publishhandler(stream, cmd)
                elif cmd.name == 'play':
                    yield self.playhandler(stream, cmd)
                elif cmd.name == 'closeStream':
                    self.closehandler(stream)
                elif cmd.name == 'seek':
                    yield self.seekhandler(stream, cmd)
            else: # audio or video message
                yield self.mediahandler(stream, message)
        except GeneratorExit: pass
        except StopIteration: raise
        except:
            if _debug: print 'exception in streamhandler', (sys and sys.exc_info())
   
    def publishhandler(self, stream, cmd):
        '''A new stream is published. Store the information in the application instance.'''
        try:
            stream.mode = 'live' if len(cmd.args) < 2 else cmd.args[1] # live, record, append
            stream.name = cmd.args[0]
            if _debug: print 'publishing stream=', stream.name, 'mode=', stream.mode
            if stream.name and '?' in stream.name: stream.name = stream.name.partition('?')[0]
            inst = self.clients[stream.client.path][0]
            if (stream.name in inst.publishers):
                raise ValueError, 'Stream name already in use'
            inst.publishers[stream.name] = stream # store the client for publisher
            inst.onPublish(stream.client, stream)
           
            path = getfilename(stream.client.path, stream.name, self.root)
            if stream.mode in ('record', 'append'):
                stream.recordfile = FLV().open(path, stream.mode)
            # elif stream.mode == 'live': FLV().delete(path) # TODO: this is commented out to avoid accidental delete
            response = Command(name='onStatus', id=cmd.id, tm=stream.client.relativeTime, args=[amf.Object(level='status', code='NetStream.Publish.Start', description='', details=None)])
            yield stream.send(response)
        except ValueError, E: # some error occurred. inform the app.
            if _debug: print 'error in publishing stream', str(E)
            response = Command(name='onStatus', id=cmd.id, tm=stream.client.relativeTime, args=[amf.Object(level='error',code='NetStream.Publish.BadName',description=str(E),details=None)])
            yield stream.send(response)

    def playhandler(self, stream, cmd):
        '''A new stream is being played. Just updated the players list with this stream.'''
        try:
            inst = self.clients[stream.client.path][0]
            name = stream.name = cmd.args[0]  # store the stream's name
            if stream.name and '?' in stream.name: name = stream.name = stream.name.partition('?')[0]
            start = cmd.args[1] if len(cmd.args) >= 2 else -2
            if name not in inst.players:
                inst.players[name] = [] # initialize the players for this stream name
            if stream not in inst.players[name]: # store the stream as players of this name
                inst.players[name].append(stream)
            task = None
            if start >= 0 or start == -2 and name not in inst.publishers:
                path = getfilename(stream.client.path, stream.name, self.root)
                if os.path.exists(path):
                    stream.playfile = FLV().open(path)
                    if start > 0: stream.playfile.seek(start)
                    task = stream.playfile.reader(stream)
                elif start >= 0: raise ValueError, 'Stream name not found'
            if _debug: print 'playing stream=', name, 'start=', start
            inst.onPlay(stream.client, stream)
           
#            m0 = Message() # SetChunkSize
#            m0.time, m0.type, m0.data = stream.client.relativeTime, Message.CHUNK_SIZE, struct.pack('>L', stream.client.writeChunkSize)
#            yield stream.client.writeMessage(m0)
           
#            m1 = Message() # UserControl/StreamIsRecorded
#            m1.time, m1.type, m1.data = stream.client.relativeTime, Message.USER_CONTROL, struct.pack('>HI', 4, stream.id)
#            yield stream.client.writeMessage(m1)
           
            m2 = Message() # UserControl/StreamBegin
            m2.time, m2.type, m2.data = stream.client.relativeTime, Message.USER_CONTROL, struct.pack('>HI', 0, stream.id)
            yield stream.client.writeMessage(m2)
           
#            response = Command(name='onStatus', id=cmd.id, args=[amf.Object(level='status',code='NetStream.Play.Reset', description=stream.name, details=None)])
#            yield stream.send(response)
           
            response = Command(name='onStatus', id=cmd.id, tm=stream.client.relativeTime, args=[amf.Object(level='status',code='NetStream.Play.Start', description=stream.name, details=None)])
            yield stream.send(response)
           
#            response = Command(name='onStatus', id=cmd.id, tm=stream.client.relativeTime, args=[amf.Object(level='status',code='NetStream.Play.PublishNotify', description=stream.name, details=None)])
#            yield stream.send(response)
           
            if task is not None: multitask.add(task)
        except ValueError, E: # some error occurred. inform the app.
            if _debug: print 'error in playing stream', str(E)
            response = Command(name='onStatus', id=cmd.id, tm=stream.client.relativeTime, args=[amf.Object(level='error',code='NetStream.Play.StreamNotFound',description=str(E),details=None)])
            yield stream.send(response)
           
    def seekhandler(self, stream, cmd):
        '''A stream is seeked to a new position. This is allowed only for play from a file.'''
        try:
            offset = cmd.args[0]
            if stream.playfile is None or stream.playfile.type != 'read':
                raise ValueError, 'Stream is not seekable'
            stream.playfile.seek(offset)
            response = Command(name='onStatus', id=cmd.id, tm=stream.client.relativeTime, args=[amf.Object(level='status',code='NetStream.Seek.Notify', description=stream.name, details=None)])
            yield stream.send(response)
        except ValueError, E: # some error occurred. inform the app.
            if _debug: print 'error in seeking stream', str(E)
            response = Command(name='onStatus', id=cmd.id, tm=stream.client.relativeTime, args=[amf.Object(level='error',code='NetStream.Seek.Failed',description=str(E),details=None)])
            yield stream.send(response)
           
    def mediahandler(self, stream, message):
        '''Handle incoming media on the stream, by sending to other stream in this application instance.'''
        if stream.client is not None:
            inst = self.clients[stream.client.path][0]
            result = inst.onPublishData(stream.client, stream, message)
            if result:
                for s in (inst.players.get(stream.name, [])):
                    #if _debug: print 'D', stream.name, s.name
                    m = message.dup()
                    result = inst.onPlayData(s.client, s, m)
                    if result:
                        yield s.send(m)
                if stream.recordfile is not None:
                    stream.recordfile.write(message)

# The main routine to start, run and stop the service
if __name__ == '__main__':
    from optparse import OptionParser
    parser = OptionParser(version='SVN $Revision$, $Date$'.replace('$', ''))
    parser.add_option('-i', '--host',    dest='host',    default='0.0.0.0', help="listening IP address. Default '0.0.0.0'")
    parser.add_option('-p', '--port',    dest='port',    default=1935, type="int", help='listening port number. Default 1935')
    parser.add_option('-r', '--root',    dest='root',    default='./',       help="document path prefix. Directory must end with /. Default './'")
    parser.add_option('-d', '--verbose', dest='verbose', default=False, action='store_true', help='enable debug trace')
    (options, args) = parser.parse_args()
   
    _debug = options.verbose
    try:
        agent = FlashServer()
        agent.root = options.root
        agent.start(options.host, options.port)
        if _debug: print time.asctime(), 'Flash Server Starts - %s:%d' % (options.host, options.port)
        multitask.run()
    except KeyboardInterrupt:
        pass
    if _debug: print time.asctime(), 'Flash Server Stops'
-
-
- - - - - - -
- -
- - -
-
-
-
-
-
-

Change log

-
- r145 - by kundan10 - on Feb 6, 2012 -   Diff -
-
patch submitted by Teeed teeed@na1noc.pl
-on Jan 16 to fix the result fron onCommand
-
- - - - - - - - - - -
-
Go to:  - -
- - - - - - - -
- - -
-
-
-
-
-
-
-
-
-
-
-

Older revisions

- - -
- - - r142 - by kundan10 - on Feb 5, 2012 -   Diff -
-
reverting r141 since it causes
-exception in setting self.rpc because
-rpc exists as a function
-
- -
- - - r141 - by pratnama - on Jan 28, 2012 -   Diff -
-
force self.rpc to be Message.RPC on
-NetConnection.connect() even in AMF3.
-AMF3 is fully working now
-
- -
- - - r137 - by kundan10 - on Jan 20, 2012 -   Diff -
-
show media flow trace only for -D.
-support streambegin and define FLV in
-gevent version. ignore stream name
-after ?. don't include objectEncoding
-in connect success if connect did not
-...
-
- - - All revisions of this file -
-
-
-
-
-
- -
-
-
-
-
-
-

File info

- -
Size: 65812 bytes, - 1214 lines
- - -
- -
-

File properties

-
- -
svn:executable
-
*
- -
svn:keywords
-
Author Id Revision Date
- -
-
- -
-
-
-
-
-
-
- - -
- -
-
- - - - - - - - - - - - - - - - - - - - - - -
- -
- Powered by Google Project Hosting -
- - - - - - - - - \ No newline at end of file diff --git a/doc/rtmp_specification_1.0.pdf b/doc/rtmp_specification_1.0.pdf deleted file mode 100644 index 506eb2a..0000000 Binary files a/doc/rtmp_specification_1.0.pdf and /dev/null differ diff --git a/doc/rtmpout.html b/doc/rtmpout.html deleted file mode 100644 index cf58a1b..0000000 --- a/doc/rtmpout.html +++ /dev/null @@ -1,34248 +0,0 @@ - - - - -

Stream TCP_10.10.10.66:56243_199.9.251.82:1935

- - - - - - -
BytesContentsTime
-

Client ---> Server - - - - - - - -
-03 - -RTMP stream -0.133 s -
-3f 20 09 06 0a 00 02 02 72 9d 9f 77 25 32 75 d2 -
- -42 54 e2 9f 15 20 89 14 f9 34 f9 eb 82 85 28 da -
- -a2 dd 79 40 f0 93 72 83 bc e0 82 00 ac f6 7f 8c -
- -65 aa 15 41 ec 22 15 30 ab b6 95 0b 98 1a cf 44 -
- -d3 5e 98 65 16 05 3b 05 c3 74 40 c5 2c 86 7e 99 -
- -cb bf 17 c5 f9 5d 53 49 59 e7 b9 ce 33 2d 33 bb -
- -2a bc 26 b0 fc 74 f5 17 cf 01 b9 95 42 5c 4c 45 -
- -8c 96 bc c6 9b 48 04 2c 7b c1 26 86 cf 48 29 6d -
- -e8 11 9a 0e 8f ae 9d 87 34 0e 8c 15 ec 14 50 2b -
- -1a be b6 4c 84 52 73 d3 ce 00 b1 d2 2e 2d f0 3a -
- -5a 55 ce a0 36 6b 81 fb 44 3a cd 8d a6 db d5 46 -
- -52 4e 25 51 95 58 64 c2 c5 52 5f 0d c0 c0 c6 39 -
- -9a c7 75 ba 18 46 12 53 53 14 06 c9 a6 74 01 a7 -
- -e0 21 fa 3c 60 d0 12 58 26 61 7e 77 fb 0f 2b 7a -
- -77 80 ee e1 c7 3e ac ca 6b b0 39 02 d3 06 b9 01 -
- -d3 6c d1 62 ed 78 c6 51 17 ce 0a f0 62 b9 8f 68 -
- -e6 ee df 91 50 9e 38 d7 70 3c 50 b6 1c 93 cd 3d -
- -f1 26 33 5d 89 ef 20 4e 53 be a4 b3 bd 15 43 ff -
- -af 37 a0 55 77 16 15 d2 07 80 35 7b de be a1 ee -
- -6b a7 de 58 bb a1 3e 4e ba 98 10 c1 bc 94 d7 bf -
- -1c 73 5d ac 94 de f2 5c d1 c7 53 c3 6a 73 b8 71 -
- -68 c0 3c 9a 17 03 cb 1d c3 37 d8 a3 77 ca 5d f8 -
- -00 b6 21 ff 32 ba 64 07 ec 63 8c 4d 80 2e 49 98 -
- -80 d3 ee a7 3a 4e 14 52 e2 56 ab f5 be 10 49 b2 -
- -6a 99 43 89 14 00 92 69 3d 0b 93 86 8c 25 92 35 -
- -99 48 80 15 f6 19 fa 22 f7 d5 91 18 eb cf ad 58 -
- -43 00 b5 32 f1 e0 98 ae 8c 17 ed b8 7c b9 cf ca -
- -04 8a 98 13 b3 d0 e1 b3 6d 4a 1f af 53 b5 ef 3e -
- -1e e8 44 0d eb e7 44 02 9a c7 d2 0f ce e7 8c 42 -
- -77 8a a6 26 ee 93 67 74 17 7c 39 cb 1d 18 0e f1 -
- -1f 0a a5 71 f3 bd 49 ea 10 8f f6 01 a1 15 64 6c -
- -53 7a 2d c1 39 6b bc 88 02 65 6b 9f 1f 54 b8 31 -
- -7b 16 7c 98 5f 90 73 ac 86 9d c9 6c 70 19 06 e4 -
- -c0 1a d8 65 8b ad f7 4e dd 25 38 35 f3 93 6f 9b -
- -46 9e d3 0e d7 f0 d4 93 dc b1 6d fb 12 85 a1 8f -
- -49 9c cf 54 57 d4 b2 38 90 65 13 06 4d e8 c5 3d -
- -71 6c d0 cb 10 b6 bf 72 cb ee 2d ac e1 a5 68 30 -
- -08 bc 27 64 b5 ff 42 54 ac c7 55 70 70 ba ff dd -
- -61 e3 97 90 35 ec aa 5e 12 85 86 d0 1f b7 58 e5 -
- -cd 31 11 da d1 26 92 93 45 44 3f de 48 86 90 66 -
- -50 df 38 49 d7 f8 91 f4 c3 88 a5 a4 4c e8 c4 e6 -
- -85 a8 94 05 dd 37 52 4c b6 97 d5 ea 02 42 a0 aa -
- -8a 04 4e 54 5f 3d 51 51 b5 0b 85 da 6a 7d 39 07 -
- -47 71 fd 7f e3 e1 e3 e3 2c fa e4 e7 04 f0 68 a8 -
- -fc 33 3d 5e 36 09 0e 91 e7 9d 2a 5f 86 dc 64 5f -
- -a1 66 0c f1 91 27 ba 45 d8 3f 66 2a 2d 66 00 eb -
- -b3 08 24 92 33 21 6f c9 3c 72 46 47 6b 6d cf 9c -
- -67 1c b8 d8 85 b1 9d 80 59 69 e9 a3 26 27 d4 61 -
- -a9 bb 14 0c 6b 37 5b 34 3e d3 04 05 97 e2 fc 6d -
- -80 19 e9 41 da 98 52 83 e8 9c e4 34 68 4c cb cc -
- -5a 5b ab 04 82 ff d8 5a a2 e4 6d 22 82 59 52 04 -
- -23 d3 13 dd 02 2d ef 73 ba 8d 7c 2e 9b 41 d2 92 -
- -7d 97 ed ba fb c8 e4 67 7f 72 8f 94 97 a4 8d 5a -
- -be 89 d0 b7 2d 3f b6 e1 26 e8 e5 a3 d6 6e 8a 8d -
- -fc bd be c4 da f6 9a 2d 08 04 1b cf 56 bb b1 b0 -
- -ad 2d 4a 99 2d cb 5d 99 df bc 42 64 76 c2 d4 df -
- -6b 16 4d 0e 27 31 2a 89 83 11 d1 62 84 11 d6 06 -
- -1a d1 03 47 d7 7a 30 9b 98 07 bc ca f2 fb 6f a6 -
- -c9 34 e7 4c ce 88 0e ac 2f 70 5b 1f 43 44 84 f1 -
- -9b f5 3f 74 21 f5 45 f9 ff 11 0a 77 1f ab ad 24 -
- -1c fa 0f 9a bd b4 c2 59 82 c6 e3 58 d7 91 66 01 -
- -89 23 92 3d cc 17 b6 56 e6 5d 1a 29 73 d3 81 e7 -
- -bd e4 2c 32 c6 59 c2 e9 81 bc 00 98 03 c6 1d a6 -
- -ce 49 06 24 8c a9 80 ae 3a c8 24 2d 73 b2 17 f3 -
- -7e 15 1c 74 18 58 46 02 66 09 a0 4c 00 09 83 b6 -
- -ab d3 c2 06 dc da 3d 63 66 85 45 cd 8c af 85 d5 -
- -ad ee e7 92 84 db 6c d6 8a e4 6c cd 79 01 de eb -
- -35 b9 e1 3a d6 ce 04 1c f5 b5 c0 a0 a9 38 00 d6 -
- -b3 71 8f 04 0e 22 24 63 af f2 87 c6 c5 70 1e ae -
- -f5 44 90 05 29 fa b7 55 f2 a6 99 55 bb 86 c9 11 -
- -2f 78 af fe e0 ca f3 4b 2a 4f 1b 1c d8 6c d1 cf -
- -6b 40 7b f4 16 24 43 c9 c8 fe 5a b8 47 36 d7 48 -
- -93 2c 54 f3 d4 87 ef d9 10 13 51 6b 8b cb 7f f1 -
- -89 79 f6 9c 55 ed aa b7 c1 1c f6 3a f4 f9 2d bc -
- -02 c6 dd a7 e9 10 33 5d 49 85 96 92 cc 03 90 1f -
- -30 dc e5 13 d5 e9 0e b0 00 d1 d5 4c 9b f6 28 b4 -
- -1a 96 ec ec 66 89 a7 14 c4 41 97 fa 23 24 67 8d -
- -9f 85 13 59 3c c0 70 97 52 57 ba 8c b0 c9 f9 02 -
- -73 2f 7b c3 84 7b ef 7c 01 43 6e 41 00 01 fa 74 -
- -42 1b 1b bb 11 60 62 a0 f8 d5 1a c4 31 af 6f 4f -
- -45 66 7d 37 df 73 e5 06 54 25 1a ff 1b 93 9e 03 -
- -12 52 35 82 5e 17 63 d0 c4 13 a4 b0 06 29 d2 9b -
- -79 26 20 f9 23 36 60 43 3f f4 21 9f 50 c9 74 d4 -
- -c7 36 88 28 ae 3c 32 ac e3 86 c6 59 ca 7b 9e 28 -
- -27 e5 59 06 84 12 a7 ef 61 de f7 a9 78 23 77 42 -
- -1a c6 9b a8 a7 30 dd 51 9d 2f 5e 8f e7 59 02 31 -
- -9b ff 71 04 81 a4 ed c2 95 d2 0e 1e 35 cc d7 51 -
- -d5 be d7 53 f0 83 56 14 87 08 69 38 3f 1c 1f a4 -
- -4f 02 6b f9 b0 66 ab cf b1 ac b7 4a f5 8c 55 7d -
- -ea 87 40 cf 9e 22 48 9b 06 ae dd 61 4c 35 29 59 -
- -0e 2c fc c6 02 f9 c8 01 54 ed c5 7d 4d 58 fa 19 -
- -e1 34 1c 76 f3 5f 2b c4 03 ac f3 7f 33 8f ce 7b -
- -dd 60 ad dc aa bb 8c 38 dc 43 85 d0 ff 9e 46 e3 -
- -d1 59 dd 30 f3 5d ac c5 17 f6 4e 9e d0 7c 98 5a -
- -19 0d 5b 29 16 b1 22 d0 da ee a2 27 a0 d7 50 39 -
- -bf 42 26 23 2b 91 d1 58 49 1c a3 03 63 b7 00 1a -
-Client handshake 1. Uptime=1059064070 version=10.0.2.2
New key at offset 549:
-9c cf 54 57 d4 b2 38 90 65 13 06 4d e8 c5 3d 71
-6c d0 cb 10 b6 bf 72 cb ee 2d ac e1 a5 68 30 08
-
-0.161 s -
-

Client <--- Server - - - - - - - -
-03 - -RTMP stream -0.176 s -
-05 c5 d0 84 03 00 01 01 42 46 5b b4 e9 74 2b 65 -
- -32 fe 1e 4a c8 7e af 13 97 3f 40 3e 61 b7 5a bc -
- -16 e4 15 b1 db 89 ee 3b f6 80 d1 11 2e cf 07 74 -
- -09 41 57 d9 b1 2d 6b 17 bb 69 f7 43 6f eb 85 b9 -
- -70 2d 1d 95 f3 2b a4 05 4d 27 3a 7d 9d 6d 08 19 -
- -7d 29 fd b7 5a 0d f7 5f 2e ec 9a 20 25 a5 52 21 -
- -0e 37 27 1b 37 23 f9 f4 bd a3 39 6a 8c 93 23 cc -
- -30 f2 7a 4d a0 a0 a9 7e 52 02 fe 23 5b 37 ac 3b -
- -65 ea b2 fa 5e a3 b6 ad ff 23 77 5b ff ad a8 15 -
- -1a d9 18 7a 12 71 dc 12 bd 88 f8 83 f6 79 62 ae -
- -82 3d 27 4c 08 d2 15 73 9b 6a e4 4f 3c f1 9d f2 -
- -2e 1e a0 22 1a 28 4f 80 68 c1 32 07 7a 29 b2 2d -
- -64 fc 64 7f 12 a1 76 49 b7 56 a8 94 28 81 2d 25 -
- -13 81 95 cb 2d 39 b6 93 6f 1e 08 f2 11 92 37 b9 -
- -b7 13 89 3c 4c eb 61 02 0e d9 d5 4f 65 00 02 07 -
- -28 b0 1d 45 53 81 71 32 dc fc c4 99 b0 aa da 15 -
- -ef ae 96 f9 69 1a 4c ec 39 61 90 e7 84 5c 7d 94 -
- -60 2c 3c 8d ac 7f f6 73 f6 7b a9 1f 32 0d 91 a0 -
- -6e 7d 54 ed a5 4e 33 21 18 33 a4 a4 b8 7a af c1 -
- -9a db cb d5 57 98 08 84 0c b1 d4 49 3e cc 85 75 -
- -25 98 be 06 72 53 42 2b c8 db f9 b1 88 87 b4 7d -
- -67 cb 04 e8 4f 75 1f 2a cf 70 b7 a7 2a 2c e8 45 -
- -ae 88 21 2e 08 2e f2 be bd 16 6d 31 dd e8 e2 42 -
- -fc 2c 2e 53 55 84 b4 78 b3 47 06 27 cf e5 35 9e -
- -f3 f8 9e 19 31 c9 6b 12 74 7f 3b ed dc cf 54 3f -
- -38 10 5e c2 d6 67 59 f0 8c 81 b5 97 3c 5b 99 31 -
- -74 8d aa 8f 00 3d c4 4c 06 30 47 bc ae 2c 54 98 -
- -37 5a 78 d4 81 d0 e9 93 c9 72 de da 40 81 1a e9 -
- -7b 0a cc 8d 63 38 9d a4 8e 4c 80 24 6d b2 a1 b7 -
- -88 da 7e cd c8 3f 7b df f2 f5 00 f0 dd c1 c3 e9 -
- -f4 01 cb 38 0a ca 0c c4 33 82 d0 0b df c8 6b dc -
- -38 78 01 3c 06 54 62 06 49 87 d3 e2 21 59 12 ac -
- -98 5a 55 9e 49 be 3b 2c 9d f6 22 d4 f7 e0 89 ef -
- -e8 c0 2b 4d 98 d3 cf c9 cd 8c 0f 52 5e 72 bb a9 -
- -e8 66 42 65 4e 21 38 ee c6 d0 18 43 18 df 0e 27 -
- -2b d8 82 cd d6 c1 0f 88 a5 a2 f2 b9 94 5b 67 c8 -
- -ef 59 5c 40 c8 59 b9 96 23 3b f2 1e 93 bf 5a c1 -
- -8e f4 8d bd 24 19 d6 49 be 90 e0 a5 3c bc 07 49 -
- -66 5a 9e b5 69 a5 09 2c 20 2b 22 18 f9 09 88 9b -
- -58 99 df cb 05 cd 12 6f 2b 04 04 d1 f0 1f c1 39 -
- -d8 5d 11 d5 4f 9f 0a 4d ce 19 52 4d 74 21 7f 46 -
- -5f c2 53 4b 37 fc c5 18 91 a8 cb 72 7e 14 80 68 -
- -f5 dd 80 2c b6 67 0e f1 ef c5 a4 51 d7 fd ee 6d -
- -2f 41 da cc 7d cd 05 ba 78 4d 6c 2f 21 e8 c4 c6 -
- -f1 49 98 ae e8 2b 61 fb 49 f4 a3 71 d0 dc d8 cc -
- -2f ab 04 50 62 7b 90 a7 72 9d c9 e1 91 f8 3e 3f -
- -73 50 8a cf dc 1e dd 38 52 fd 48 9f a6 4b bc 3f -
- -dc 01 61 c5 02 4f 55 c1 b4 0b 4c d2 9f 6c 18 6a -
- -72 c4 72 17 15 ce 88 d9 45 1f 9c 0b 80 a7 57 2c -
- -d6 56 5c 52 10 8c 1c 62 84 62 5f 58 ca e6 a4 35 -
- -82 65 d7 a1 db ac c8 e7 b4 71 a7 3f de 77 91 35 -
- -e6 1c 29 73 f6 38 50 31 c4 bb 50 cb 54 d7 8a 71 -
- -1b 35 a3 02 5e 37 f9 8c 11 be 04 8f 94 5c 80 bc -
- -94 c7 79 bc 53 55 61 f6 c3 b1 13 a6 a2 94 b2 22 -
- -20 b0 67 ba a3 3b 45 dc f8 4f 84 e7 4d be ba 2f -
- -3d 79 47 02 d0 b9 7f 6d 30 3e b1 ce 3b d7 3c 6d -
- -37 bd 31 86 a0 0c 17 a3 f0 82 ec 9c aa 8b 9f bc -
- -58 1d 63 61 d1 07 fe 43 00 b0 11 65 c2 e7 18 06 -
- -63 d0 e4 5d 3f 0c b1 55 d6 83 a6 1e 4a a6 3c c2 -
- -92 cf e6 96 10 32 88 cd 04 3a ec 7d d4 e0 61 e5 -
- -a0 7f 52 28 c5 f3 0b e3 e9 ec d6 0b e6 7f ab 80 -
- -a3 21 8a 7a 9c 46 ed 62 6a 1c a2 fa 5d ee 76 25 -
- -e4 82 84 0b 0d 82 d5 37 b1 b6 e5 3b 45 77 60 46 -
- -34 ee 03 42 68 44 e8 9b 68 ca b2 b7 60 50 68 4f -
- -9f cc 1a 6b f6 a5 e0 29 f1 32 13 d3 69 0a 83 f4 -
- -0f e3 b6 52 a5 54 52 43 e2 51 99 d1 df 09 11 33 -
- -c9 a0 a0 ba 5b 5a 7a d5 ea c1 66 94 b8 c6 bc 47 -
- -35 1f 39 5d 21 84 db 72 05 59 4d 1b 5f 44 29 01 -
- -30 aa fc 0f 42 e6 07 aa 3a db b1 a2 a7 d7 87 94 -
- -34 67 ef ff 07 9d 95 fb d9 68 f2 bb e9 6f 3e 5e -
- -02 ce 04 2d 63 ef af 3b a4 bb 10 63 11 4f 87 d4 -
- -ce d0 6b 20 b6 03 c9 66 3a a6 33 5e 33 76 81 21 -
- -7a b9 e4 cd e8 19 58 e3 89 a3 76 48 55 9b bd 92 -
- -dd 29 89 68 c8 9c 1c de b3 14 1b 2e 25 ee e0 92 -
- -50 49 b8 49 d7 65 76 c1 1a 1d b6 1a e4 09 af b4 -
- -19 b2 e8 64 89 a5 6c f5 c8 61 d5 73 4a 2d 56 c4 -
- -36 d9 ed 71 bc 94 e2 bc e4 aa e7 45 3f ae 23 1b -
- -9e 7e 06 12 a4 6b 78 20 98 fc 32 da 1e 00 84 c4 -
- -cd e5 b7 8d fa d7 00 75 f2 b2 96 31 c7 3a ca 70 -
- -a5 64 d0 7f 14 3c 33 f4 43 7b 66 f6 a7 1a b1 51 -
- -b6 a7 ab 0f 1d 5b 52 04 65 be 2c c7 78 76 1b 93 -
- -da 14 c1 e7 c1 f2 ab 3b ac d5 40 2c be 32 30 c8 -
- -e1 ae cc 2e 74 41 28 a8 ce 75 9d ec 32 04 11 21 -
- -c4 b4 0b 8a c6 df 42 7d cd 11 50 a3 57 9c 5f cc -
- -2d 58 64 bf ba cb 81 f0 5f 77 a1 6e fc 50 44 51 -
- -4b 73 05 01 2b 87 68 b1 c8 4c cc 99 28 6a 2a 1a -
- -e0 40 8d 7d 8d 3e c2 14 64 12 06 75 77 ee 29 ac -
- -17 d4 33 70 ae 14 a8 5a 03 18 4a 32 af 91 02 84 -
- -aa 04 7b db 3d 82 af 59 db 6d 16 b5 47 a8 81 75 -
- -7c d8 76 5d 0e 58 61 be 82 5b 50 c4 b9 93 c2 71 -
- -e8 b6 20 1a a3 9a b2 ec e6 25 61 b7 ed 7d 03 95 -
- -79 0e 70 93 96 0c cb 1e 0c 63 c8 fb e9 33 1e 39 -
- -f6 6f a8 ea 11 b0 41 90 89 7c 3f 67 0b 0d d3 ff -
- -be f5 ef 5c 4b cc 07 c1 ab 96 24 7e c6 0f 56 11 -
- -07 d7 8d 09 b1 60 6c 0f e0 22 b6 65 61 7f 9b 6f -
- -ae c2 41 7a 9f d7 0b fd a6 6d 6d 3e 2d 9b 1e 13 -
-Server handshake 1
Uptime=96850052 version=3.0.1.1
-0.178 s -
-

Client ---> Server - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-57 1a e8 7b 12 7e 5a 79 0a a2 69 ab f5 b8 0c ed -
- -50 25 b3 c8 6c 29 56 95 21 f2 f7 65 7f 5c 4f 35 -
- -c6 bf 1f d7 6c 00 a5 6c 18 9f e5 71 33 54 94 69 -
- -25 96 75 2d 62 68 22 6a 3c e4 30 15 -[1476 more] -
-Client handshake 2 -0.178 s
0.178 s -
-03 00 00 00 00 02 24 14 00 00 00 00 02 00 07 63 -
- -6f 6e 6e 65 63 74 00 3f f0 00 00 00 00 00 00 03 -
- -00 03 61 70 70 02 00 03 61 70 70 00 08 66 6c 61 -
- -73 68 56 65 72 02 00 0d 4d 41 43 20 -  [80 more] -
-id=3 timestamp=0 body_size=548 content_type=0x14 dest=0 - -
- - -  [fragment] - -
-c3 39 30 38 30 30 64 34 33 66 34 30 38 64 33 61 -
- -37 33 38 32 2e 73 77 66 3f 72 65 66 65 72 65 72 -
- -3d 68 74 74 70 3a 2f 2f 77 77 77 2e 6a 75 73 74 -
- -69 6e 2e 74 76 2f 67 65 74 74 79 73 -  [69 more] -
-id=3 timestamp=0 body_size=548 content_type=0x14 dest=0 - -
- - -  [fragment] - -
-c3 61 63 25 32 30 4f 53 25 32 30 58 3b 25 32 30 -
- -65 6e 2d 55 53 3b 25 32 30 72 76 3a 31 2e 38 2e -
- -31 2e 31 34 29 25 32 30 47 65 63 6b 6f 2f 32 30 -
- -30 38 30 34 30 34 25 32 30 46 69 72 -  [69 more] -
-id=3 timestamp=0 body_size=548 content_type=0x14 dest=0 - -
- - -  [fragment] - -
-c3 74 69 65 73 00 40 2e 00 00 00 00 00 00 00 0b -
- -61 75 64 69 6f 43 6f 64 65 63 73 00 40 a8 ee 00 -
- -00 00 00 00 00 0b 76 69 64 65 6f 43 6f 64 65 63 -
- -73 00 40 6f 80 00 00 00 00 00 00 0d -  [69 more] -
-id=3 timestamp=0 body_size=548 content_type=0x14 dest=0 - -
- - -  [fragment] - -
-c3 72 67 61 72 64 65 6e 73 00 0e 6f 62 6a 65 63 -
- -74 45 6e 63 6f 64 69 6e 67 00 00 00 00 00 00 00 -
- -00 00 00 00 09 -
-id=3 timestamp=0 body_size=548 content_type=0x14 dest=0 - -
- - - -  INVOKE( - -
   -02 00 07 63 6f 6e 6e 65 63 74 - -    'connect' - -
   -00 3f f0 00 00 00 00 00 00 - -    1.0 - -
   -03 - -    object { - -
   -00 03 61 70 70 02 00 03 61 70 70 - -        app: 'app' - -
   -00 08 66 6c 61 73 68 56 65 72 02 00 0d 4d 41 43 -
-   -20 31 30 2c 30 2c 32 2c 35 34 -
-        flashVer: 'MAC 10,0,2,54' - -
   -00 06 73 77 66 55 72 6c 02 01 04 68 74 74 70 3a -
-   -2f 2f 77 77 77 2e 6a 75 73 74 69 6e 2e 74 76 2f -
-   -77 69 64 67 65 74 73 2f 6a 74 76 5f 6c 69 76 65 -
-   -2e 72 38 61 61 34 31 35 36 63 62 30 - [211 more] -
-        swfUrl: 'http://www.justin.tv/widgets/jtv_live.r8aa4156cb0174c8dcfc3290800d43f408d3a7382.swf?referer=http://www.justin.tv/gettysburgwatergardens&userAgent=Mozilla/5.0%20(Macintosh;%20U;%20Intel%20Mac%20OS%20X;%20en-US;%20rv:1.8.1.14)%20Gecko/20080404%20Firefox/2.0.0.14' - -
   -00 05 74 63 55 72 6c 02 00 1c 72 74 6d 70 3a 2f -
-   -2f 31 39 39 2e 39 2e 32 35 31 2e 38 32 3a 31 39 -
-   -33 35 2f 61 70 70 -
-        tcUrl: 'rtmp://199.9.251.82:1935/app' - -
   -00 04 66 70 61 64 01 00 - -        fpad: False - -
   -00 0c 63 61 70 61 62 69 6c 69 74 69 65 73 00 40 -
-   -2e 00 00 00 00 00 00 -
-        capabilities: 15.0 - -
   -00 0b 61 75 64 69 6f 43 6f 64 65 63 73 00 40 a8 -
-   -ee 00 00 00 00 00 -
-        audioCodecs: 3191.0 - -
   -00 0b 76 69 64 65 6f 43 6f 64 65 63 73 00 40 6f -
-   -80 00 00 00 00 00 -
-        videoCodecs: 252.0 - -
   -00 0d 76 69 64 65 6f 46 75 6e 63 74 69 6f 6e 00 -
-   -3f f0 00 00 00 00 00 00 -
-        videoFunction: 1.0 - -
   -00 07 70 61 67 65 55 72 6c 02 00 2b 68 74 74 70 -
-   -3a 2f 2f 77 77 77 2e 6a 75 73 74 69 6e 2e 74 76 -
-   -2f 67 65 74 74 79 73 62 75 72 67 77 61 74 65 72 -
-   -67 61 72 64 65 6e 73 -
-        pageUrl: 'http://www.justin.tv/gettysburgwatergardens' - -
   -00 0e 6f 62 6a 65 63 74 45 6e 63 6f 64 69 6e 67 -
-   -00 00 00 00 00 00 00 00 00 -
-        objectEncoding: 0.0 - -
   -00 00 09 - -    } - -
- - -  ) - -
-

Client <--- Server - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-7b 7b 8c bf 92 44 a4 0f 47 90 df 49 b2 47 9c 95 -
- -66 d8 3b c3 70 ed 24 d3 9a c7 ea a3 49 eb 58 82 -
- -1c e8 2f 0b 8a 2e ec 9a 32 10 18 d0 12 4e 00 88 -
- -0a 54 4a e8 b8 89 c4 75 3d b8 49 73 aa a7 fb 19 -
- -a2 83 dc b2 48 6d 55 5f 58 13 7b 72 45 c0 85 90 -
- -39 52 49 2d 12 7e 98 ee 0d fd ae 3d e2 1a 2b 23 -
- -31 bf 71 52 c9 ee 90 79 9c 7f e5 16 bf 0e e6 87 -
- -5a fc 79 62 94 78 50 8c fd a2 fe b6 0f 84 5e 3d -
- -95 7e 66 d1 dc c8 fa 2d 25 a8 4c dc ea 47 1c 3b -
- -ba f4 e6 80 67 78 31 28 88 34 f8 d1 85 2b f6 2b -
- -bb 48 9f 53 a5 df 5f 99 df 31 7d 70 a2 62 f7 14 -
- -09 0f 9d fa 4a 5c ff 59 2a 66 af 0e 49 d5 97 b0 -
- -36 08 aa cf 1c dc 61 cd f8 07 22 34 b8 58 bb 1a -
- -db 98 12 77 0d c1 19 51 e6 d2 bd f9 97 03 b7 28 -
- -bb 5b 81 db 8c 72 f3 af 64 60 05 08 70 11 db e0 -
- -28 32 ff 3c 17 30 e6 67 bf c8 3f 34 5d 09 f3 99 -
- -a5 76 39 83 14 f9 a6 aa 5a d0 bd 4a 02 1c 15 f4 -
- -cc 35 26 b1 e1 9d e1 4f 3e 25 ee 8c bd ec 34 e4 -
- -71 91 38 47 29 4e c9 53 d6 70 39 82 1c 3a 7d b2 -
- -08 b2 d5 ff 79 38 f3 65 f2 41 e7 aa 8f 19 b7 03 -
- -43 ea dc b1 12 0f 83 c0 15 13 d9 68 5e ba 3c b7 -
- -ff f0 1b 3d 00 86 da 57 ec f0 f8 8a dc e3 60 a8 -
- -60 55 b2 4e 6b 1e 7a 1c 1b 85 0d 9a dd a2 13 cb -
- -3a 91 f5 05 2c d3 d2 c4 3f 89 7d 98 64 da 1f eb -
- -b2 5d 99 2f a3 7a ad 78 30 e6 a8 e6 a0 ab e4 c2 -
- -24 2e f6 f2 c7 f1 c5 ec 86 03 1e 7b 19 e9 28 95 -
- -47 f5 81 96 7d 64 85 80 5e 0b 56 6d 26 09 d6 d4 -
- -8f 98 2d fb 2e 47 a8 d2 5e 26 0b cb a2 4b 4b 40 -
- -d2 b5 9b cc 93 d5 51 e9 f5 f3 e7 ef df 06 d1 b3 -
- -2e 9f 4b 3c d2 2a d8 6f e7 c2 7f bd d9 4f bf 92 -
- -29 b1 1d aa ce 46 b1 fd 08 4e 73 82 ae 71 6a 30 -
- -19 67 44 7b ba 94 9a b7 47 01 9e 83 4d e8 1a fc -
- -c5 d1 07 d4 ef c6 99 9b ee 0a 64 9d 6e d2 7d 35 -
- -4c 54 f7 16 00 1c 0f 33 27 bd f9 85 c1 0e 56 a4 -
- -45 cb 7f 3f 0a 61 fe 58 c1 03 01 d0 69 78 05 b6 -
- -27 82 9a 14 4f 45 35 ef 34 f2 61 df ab f6 08 b1 -
- -eb 9a ab 1c 06 d3 4a 48 e2 ad 0f cd e2 53 f9 88 -
- -ef cb ec 63 6c 21 dd 4f 9f 38 bb 79 b6 0f 4e a0 -
- -1d 98 2b e5 1e 94 2f 03 73 df 89 4f 8d a0 3e 3f -
- -4c 65 70 77 aa 3b 9d 1b 9e 51 fd f7 40 d8 f1 3b -
- -e5 14 96 ec 62 2b 78 37 db a3 97 61 12 60 f2 b6 -
- -c9 02 30 d3 74 d8 27 be e9 c3 a5 28 dd 7f da 92 -
- -72 8e 96 7b 37 d6 e5 ee 46 20 3f e4 8d a4 98 8e -
- -58 92 d0 42 c7 83 99 4f 3d 88 31 14 d2 59 d1 79 -
- -95 6d 92 30 d3 7e 48 30 23 88 7c d2 11 ab fa a1 -
- -cb 83 f1 fd b5 ef 9a 68 dc c5 6f db 9b 1f 18 50 -
- -45 57 f5 1a c2 02 50 65 a4 21 b4 9e 20 c6 bd 69 -
- -5c a1 1d 20 e3 22 70 2c 0b 9f bf 81 65 03 74 27 -
- -1b 0d 87 c8 64 c9 cf 25 41 5a b0 35 35 18 fd 6d -
- -26 78 ce 7f 0b f7 4e 3b 93 0d 8b 6f 94 92 98 fa -
- -d7 dd 6c 46 6c aa 6e a6 35 eb 9d a6 3a 1e 70 fb -
- -a9 50 44 1e 7b e7 96 70 42 cf 90 f1 3f 68 1c 50 -
- -d9 a5 b8 e9 62 24 fd 0d 00 0e b8 2b 12 0a e8 f1 -
- -4a b7 34 20 95 2f c4 69 67 62 cf 39 af af 61 83 -
- -a8 5f a7 8d 22 e3 eb 61 e3 c0 96 53 10 ed 2d d2 -
- -d0 94 91 7d 4d 39 38 d4 58 12 23 6f e4 76 1c f0 -
- -6f 44 f1 d7 5c 96 9c 8f 67 1b 51 57 7e b2 8b 28 -
- -e8 d6 ea 5c ae 5b 31 69 ef 13 e9 28 10 d1 60 68 -
- -7b 7c cd fd 12 18 87 55 d6 b2 e5 3d 18 ea 89 10 -
- -a3 a8 2c 5d 55 e9 8b 50 09 b2 39 4c 19 c9 62 b0 -
- -be 5f 8b 76 1c e3 6c 74 c0 0e 9b 49 8e 62 ac d5 -
- -f3 3a bc e6 f4 8e 26 5c 06 8a 8b a0 1b 24 52 36 -
- -4f 46 e3 02 a7 d9 14 9e 78 2d 4a 50 05 94 37 a4 -
- -31 1d 35 fb d1 01 04 2f 4c d8 d1 99 e4 f3 fb df -
- -e8 e8 60 72 b2 5b 49 0c 95 18 c5 0b 97 da 48 d4 -
- -9a 25 49 e1 44 fe 83 ec c4 d4 67 c6 77 f9 1b 93 -
- -67 51 89 9a 8f ad 12 88 71 89 cb 23 ce 80 cb 98 -
- -cd e9 84 78 3c 96 4d 7d 5b 1f 5b 07 8a d7 87 10 -
- -4d 5b 9e 05 68 ae 67 ee ad 9d 3f af 2d 9a 14 c3 -
- -4f c7 fa f6 bb cf c4 d0 83 3c e7 39 07 15 9e d5 -
- -42 c4 21 f9 b8 de ce ec ab 9b 8c 2e a7 ad 2f db -
- -07 7c 16 51 55 93 25 c3 af 21 34 41 8e ef a2 fa -
- -8f cc 79 96 ce b6 a9 c5 13 c7 71 8d 26 30 26 04 -
- -c2 4e 1b 92 b5 ea 9d 79 da d1 a9 6f f2 fd f4 6f -
- -a2 67 59 02 4e 4d 24 69 4f 45 a3 8e 05 cf cb 02 -
- -b0 c7 0e fa 19 8f 01 17 01 0a 6b 27 b8 a2 43 8f -
- -8e fc cd b1 af 4d 03 15 0e 12 f3 1f 97 8a d9 44 -
- -e5 f8 11 cc d1 c7 f0 a4 a4 fd c8 29 9b 4e 31 b1 -
- -88 b6 14 36 bd 3e ca fa c5 03 f4 79 9e a0 61 f5 -
- -d9 56 6b 56 c3 98 8c ee 49 23 c2 75 0a 93 0b 5b -
- -6b 65 99 22 18 19 f4 20 29 e0 48 9a d4 46 e6 02 -
- -e8 20 c3 e3 ea 40 12 d3 f9 10 de c5 a8 04 83 a3 -
- -35 ee c0 f2 b4 2d 38 d1 b6 80 11 9c 65 35 9d 7a -
- -d3 59 54 f3 d3 08 f8 47 c2 68 f8 b5 cc ed 8c a0 -
- -88 4b 61 27 58 5c 15 6b 2b 07 28 ae 73 01 aa c3 -
- -3e 50 14 4c 1e 61 65 db 33 d5 cc 59 ff d0 d8 0b -
- -2a 1e 09 2e 1f 9a 1d 5f 0c 22 20 eb 91 47 59 14 -
- -30 b7 12 3d 03 51 20 09 e2 15 56 95 80 bb 83 ce -
- -85 cd 78 06 f9 c7 bb 6c 1f 61 3a 23 49 a6 a6 f2 -
- -95 4e 94 a3 ca 34 4a 1d ea 1b 52 d8 c3 67 f3 cf -
- -27 38 ef 04 2b d9 6d f9 ef 99 bd bc 96 88 97 b0 -
- -bf 1b aa 1d 52 cc 85 b1 65 36 7d f6 ed 2f 03 37 -
- -43 f4 2b 82 cb 49 ad 7d 4c 5c 68 2b 6a c0 34 9c -
- -e1 31 47 26 8b 99 60 0a f7 4e 56 b6 5a d0 ec 47 -
- -3f 4d 01 fd 0a 89 66 3d 7e ad 1b fe 6a 17 d5 90 -
- -67 37 28 43 f9 22 6b ed 7a 17 d1 af 51 ad d3 46 -
-Server handshake 2.
digest1:
-3f 4d 01 fd 0a 89 66 3d 7e ad 1b fe 6a 17 d5 90
-67 37 28 43 f9 22 6b ed 7a 17 d1 af 51 ad d3 46
-
expected (FMS key):
-85 90 86 e7 ce 1a d5 33 a1 31 2c 0b b3 22 c6 c6
-12 08 bb dd ee ee a8 be c8 72 df 90 2b f1 e1 f7
-
-0.187 s -
-02 00 00 00 00 00 04 05 00 00 00 00 00 26 25 a0 - -id=2 timestamp=0 body_size=4 content_type=0x05 dest=0 -0.217 s -
- - - -  Server BW - -
-02 00 00 00 00 00 05 06 00 00 00 00 00 26 25 a0 -
- -02 -
-id=2 timestamp=0 body_size=5 content_type=0x06 dest=0 - -
- - -  Client BW - -
-02 00 00 00 00 00 06 04 00 00 00 00 00 00 00 00 -
- -00 00 -
- -id=2 timestamp=0 body_size=6 content_type=0x04 dest=0 - -
- - - -  Ping.STREAM_CLEAR(sid=0) - -
-02 00 00 00 00 00 04 01 00 00 00 00 00 00 10 00 - -id=2 timestamp=0 body_size=4 content_type=0x01 dest=0 - -
- - - -  Set chunk size 4096 - -
-03 00 00 00 00 00 d1 14 00 00 00 00 02 00 07 5f -
- -72 65 73 75 6c 74 00 3f f0 00 00 00 00 00 00 03 -
- -00 06 66 6d 73 56 65 72 02 00 0d 46 4d 53 2f 33 -
- -2c 30 2c 31 2c 31 32 33 00 0c 63 61 - [161 more] -
-id=3 timestamp=0 body_size=209 content_type=0x14 dest=0 - -
- - - -  INVOKE( - -
   -02 00 07 5f 72 65 73 75 6c 74 - -    '_result' - -
   -00 3f f0 00 00 00 00 00 00 - -    1.0 - -
   -03 - -    object { - -
   -00 06 66 6d 73 56 65 72 02 00 0d 46 4d 53 2f 33 -
-   -2c 30 2c 31 2c 31 32 33 -
-        fmsVer: 'FMS/3,0,1,123' - -
   -00 0c 63 61 70 61 62 69 6c 69 74 69 65 73 00 40 -
-   -3f 00 00 00 00 00 00 -
-        capabilities: 31.0 - -
   -00 00 09 - -    } - -
   -03 - -    object { - -
   -00 05 6c 65 76 65 6c 02 00 06 73 74 61 74 75 73 - -        level: 'status' - -
   -00 04 63 6f 64 65 02 00 1d 4e 65 74 43 6f 6e 6e -
-   -65 63 74 69 6f 6e 2e 43 6f 6e 6e 65 63 74 2e 53 -
-   -75 63 63 65 73 73 -
-        code: 'NetConnection.Connect.Success' - -
   -00 0b 64 65 73 63 72 69 70 74 69 6f 6e 02 00 15 -
-   -43 6f 6e 6e 65 63 74 69 6f 6e 20 73 75 63 63 65 -
-   -65 64 65 64 2e -
-        description: 'Connection succeeded.' - -
   -00 08 63 6c 69 65 6e 74 69 64 00 41 c7 b5 60 26 -
-   -80 00 00 -
-        clientid: 795525197.0 - -
   -00 0e 6f 62 6a 65 63 74 45 6e 63 6f 64 69 6e 67 -
-   -00 00 00 00 00 00 00 00 00 -
-        objectEncoding: 0.0 - -
   -00 00 09 - -    } - -
- - -  ) - -
-

Client ---> Server - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-02 df f7 68 00 00 04 05 00 00 00 00 00 26 25 a0 - -id=2 timestamp=14677864 body_size=4 content_type=0x05 dest=0 -0.217 s -
- - - -  Server BW - -
-03 00 00 cd 00 00 2f 14 00 00 00 00 02 00 0b 46 -
- -43 53 75 62 73 63 72 69 62 65 00 00 00 00 00 00 -
- -00 00 00 05 02 00 14 6a 74 76 5f 5a 73 61 59 47 -
- -5a 30 4c 53 38 69 4e 51 41 53 53 -
-id=3 timestamp=205 body_size=47 content_type=0x14 dest=0 -0.228 s -
- - - -  INVOKE( - -
   -02 00 0b 46 43 53 75 62 73 63 72 69 62 65 - -    'FCSubscribe' - -
   -00 00 00 00 00 00 00 00 00 - -    0.0 - -
   -05 - -    NULL - -
   -02 00 14 6a 74 76 5f 5a 73 61 59 47 5a 30 4c 53 -
-   -38 69 4e 51 41 53 53 -
-    'jtv_ZsaYGZ0LS8iNQASS' - -
- - -  ) - -
-43 00 00 00 00 00 19 14 02 00 0c 63 72 65 61 74 -
- -65 53 74 72 65 61 6d 00 40 00 00 00 00 00 00 00 -
- -05 -
-id=3 timestamp=0 body_size=25 content_type=0x14 dest=0 -0.228 s -
- - - -  INVOKE( - -
   -02 00 0c 63 72 65 61 74 65 53 74 72 65 61 6d - -    'createStream' - -
   -00 40 00 00 00 00 00 00 00 - -    2.0 - -
   -05 - -    NULL - -
- - -  ) - -
-42 00 00 00 00 00 0a 04 00 03 00 00 00 00 00 00 -
- -03 e8 -
-id=2 timestamp=0 body_size=10 content_type=0x04 dest=0 -0.233 s -
- - - -  Ping.CLIENT_BUFFER(sid=0, size=1000) - -
-

Client <--- Server - - - - - - - - - - - - - - - - - - - - - - -
-03 00 00 00 00 00 1d 14 00 00 00 00 02 00 07 5f -
- -72 65 73 75 6c 74 00 40 00 00 00 00 00 00 00 05 -
- -00 3f f0 00 00 00 00 00 00 -
-id=3 timestamp=0 body_size=29 content_type=0x14 dest=0 -0.253 s -
- - - -  INVOKE( - -
   -02 00 07 5f 72 65 73 75 6c 74 - -    '_result' - -
   -00 40 00 00 00 00 00 00 00 - -    2.0 - -
   -05 - -    NULL - -
   -00 3f f0 00 00 00 00 00 00 - -    1.0 - -
- - -  ) - -
-

Client ---> Server - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-08 00 00 d3 00 00 28 14 01 00 00 00 02 00 04 70 -
- -6c 61 79 00 00 00 00 00 00 00 00 00 05 02 00 14 -
- -6a 74 76 5f 5a 73 61 59 47 5a 30 4c 53 38 69 4e -
- -51 41 53 53 -
-id=8 timestamp=211 body_size=40 content_type=0x14 dest=1 -0.340 s -
- - - -  INVOKE( - -
   -02 00 04 70 6c 61 79 - -    'play' - -
   -00 00 00 00 00 00 00 00 00 - -    0.0 - -
   -05 - -    NULL - -
   -02 00 14 6a 74 76 5f 5a 73 61 59 47 5a 30 4c 53 -
-   -38 69 4e 51 41 53 53 -
-    'jtv_ZsaYGZ0LS8iNQASS' - -
- - -  ) - -
-c2 00 03 00 00 00 01 00 00 03 e8 - -id=2 timestamp=0 body_size=10 content_type=0x04 dest=0 - -
- - - -  Ping.CLIENT_BUFFER(sid=1, size=1000) - -
-

Client <--- Server - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-02 00 00 00 00 00 06 04 00 00 00 00 00 00 00 00 -
- -00 01 -
-id=2 timestamp=0 body_size=6 content_type=0x04 dest=0 -0.531 s -
- - - -  Ping.STREAM_CLEAR(sid=1) - -
-05 00 00 00 00 00 94 14 01 00 00 00 02 00 08 6f -
- -6e 53 74 61 74 75 73 00 00 00 00 00 00 00 00 00 -
- -05 03 00 05 6c 65 76 65 6c 02 00 06 73 74 61 74 -
- -75 73 00 04 63 6f 64 65 02 00 14 4e - [100 more] -
-id=5 timestamp=0 body_size=148 content_type=0x14 dest=1 - -
- - - -  INVOKE( - -
   -02 00 08 6f 6e 53 74 61 74 75 73 - -    'onStatus' - -
   -00 00 00 00 00 00 00 00 00 - -    0.0 - -
   -05 - -    NULL - -
   -03 - -    object { - -
   -00 05 6c 65 76 65 6c 02 00 06 73 74 61 74 75 73 - -        level: 'status' - -
   -00 04 63 6f 64 65 02 00 14 4e 65 74 53 74 72 65 -
-   -61 6d 2e 50 6c 61 79 2e 52 65 73 65 74 -
-        code: 'NetStream.Play.Reset' - -
   -00 0b 64 65 73 63 72 69 70 74 69 6f 6e 02 00 2b -
-   -50 6c 61 79 69 6e 67 20 61 6e 64 20 72 65 73 65 -
-   -74 74 69 6e 67 20 6a 74 76 5f 5a 73 61 59 47 5a -
-   -30 4c 53 38 69 4e 51 41 53 53 2e -
-        description: 'Playing and resetting jtv_ZsaYGZ0LS8iNQASS.' - -
   -00 08 63 6c 69 65 6e 74 69 64 00 41 c7 b5 60 26 -
-   -80 00 00 -
-        clientid: 795525197.0 - -
   -00 00 09 - -    } - -
- - -  ) - -
-05 00 00 00 00 00 b8 14 01 00 00 00 02 00 08 6f -
- -6e 53 74 61 74 75 73 00 00 00 00 00 00 00 00 00 -
- -05 03 00 05 6c 65 76 65 6c 02 00 06 73 74 61 74 -
- -75 73 00 04 63 6f 64 65 02 00 14 4e - [136 more] -
-id=5 timestamp=0 body_size=184 content_type=0x14 dest=1 - -
- - - -  INVOKE( - -
   -02 00 08 6f 6e 53 74 61 74 75 73 - -    'onStatus' - -
   -00 00 00 00 00 00 00 00 00 - -    0.0 - -
   -05 - -    NULL - -
   -03 - -    object { - -
   -00 05 6c 65 76 65 6c 02 00 06 73 74 61 74 75 73 - -        level: 'status' - -
   -00 04 63 6f 64 65 02 00 14 4e 65 74 53 74 72 65 -
-   -61 6d 2e 50 6c 61 79 2e 53 74 61 72 74 -
-        code: 'NetStream.Play.Start' - -
   -00 0b 64 65 73 63 72 69 70 74 69 6f 6e 02 00 25 -
-   -53 74 61 72 74 65 64 20 70 6c 61 79 69 6e 67 20 -
-   -6a 74 76 5f 5a 73 61 59 47 5a 30 4c 53 38 69 4e -
-   -51 41 53 53 2e -
-        description: 'Started playing jtv_ZsaYGZ0LS8iNQASS.' - -
   -00 08 63 6c 69 65 6e 74 69 64 00 41 c7 b5 60 26 -
-   -80 00 00 -
-        clientid: 795525197.0 - -
   -00 0a 69 73 46 61 73 74 50 6c 61 79 01 00 - -        isFastPlay: False - -
   -00 0e 74 69 6d 65 63 6f 64 65 4f 66 66 73 65 74 -
-   -02 00 09 33 34 36 32 32 33 33 34 4c -
-        timecodeOffset: '34622334L' - -
   -00 00 09 - -    } - -
- - -  ) - -
-45 00 00 00 00 00 18 12 02 00 11 7c 52 74 6d 70 -
- -53 61 6d 70 6c 65 41 63 63 65 73 73 01 00 01 00 -
-id=5 timestamp=0 body_size=24 content_type=0x12 dest=1 - -
- - - -  NOTIFY( - -
   -02 00 11 7c 52 74 6d 70 53 61 6d 70 6c 65 41 63 -
-   -63 65 73 73 -
-    '|RtmpSampleAccess' - -
   -01 00 - -    False - -
   -01 00 - -    False - -
- - -  ) - -
-05 00 00 00 00 00 2c 12 01 00 00 00 02 00 08 6f -
- -6e 53 74 61 74 75 73 03 00 04 63 6f 64 65 02 00 -
- -14 4e 65 74 53 74 72 65 61 6d 2e 44 61 74 61 2e -
- -53 74 61 72 74 00 00 09 -
-id=5 timestamp=0 body_size=44 content_type=0x12 dest=1 - -
- - - -  NOTIFY( - -
   -02 00 08 6f 6e 53 74 61 74 75 73 - -    'onStatus' - -
   -03 - -    object { - -
   -00 04 63 6f 64 65 02 00 14 4e 65 74 53 74 72 65 -
-   -61 6d 2e 44 61 74 61 2e 53 74 61 72 74 -
-        code: 'NetStream.Data.Start' - -
   -00 00 09 - -    } - -
- - -  ) - -
-45 00 00 00 00 01 ea 12 02 00 0a 6f 6e 4d 65 74 -
- -61 44 61 74 61 03 00 06 61 75 74 68 6f 72 02 00 -
- -00 00 09 63 6f 70 79 72 69 67 68 74 02 00 00 00 -
- -0b 64 65 73 63 72 69 70 74 69 6f 6e - [438 more] -
-id=5 timestamp=0 body_size=490 content_type=0x12 dest=1 -0.531 s -
- - - -  NOTIFY( - -
   -02 00 0a 6f 6e 4d 65 74 61 44 61 74 61 - -    'onMetaData' - -
   -03 - -    object { - -
   -00 06 61 75 74 68 6f 72 02 00 00 - -        author: '' - -
   -00 09 63 6f 70 79 72 69 67 68 74 02 00 00 - -        copyright: '' - -
   -00 0b 64 65 73 63 72 69 70 74 69 6f 6e 02 00 00 - -        description: '' - -
   -00 08 6b 65 79 77 6f 72 64 73 02 00 00 - -        keywords: '' - -
   -00 06 72 61 74 69 6e 67 02 00 00 - -        rating: '' - -
   -00 05 74 69 74 6c 65 02 00 00 - -        title: '' - -
   -00 0a 70 72 65 73 65 74 6e 61 6d 65 02 00 06 43 -
-   -75 73 74 6f 6d -
-        presetname: 'Custom' - -
   -00 0c 63 72 65 61 74 69 6f 6e 64 61 74 65 02 00 -
-   -19 4d 6f 6e 20 4a 75 6e 20 30 31 20 31 34 3a 33 -
-   -31 3a 31 37 20 32 30 30 39 0a -
-        creationdate: 'Mon Jun 01 14:31:17 2009\n' - -
   -00 0b 76 69 64 65 6f 64 65 76 69 63 65 02 00 1a -
-   -4c 6f 67 69 74 65 63 68 20 51 75 69 63 6b 43 61 -
-   -6d 20 50 72 6f 20 39 30 30 30 -
-        videodevice: 'Logitech QuickCam Pro 9000' - -
   -00 09 66 72 61 6d 65 72 61 74 65 00 40 2e 00 00 -
-   -00 00 00 00 -
-        framerate: 15.0 - -
   -00 05 77 69 64 74 68 00 40 74 00 00 00 00 00 00 - -        width: 320.0 - -
   -00 06 68 65 69 67 68 74 00 40 6e 00 00 00 00 00 -
-   -00 -
-        height: 240.0 - -
   -00 0c 76 69 64 65 6f 63 6f 64 65 63 69 64 02 00 -
-   -04 56 50 36 32 -
-        videocodecid: 'VP62' - -
   -00 0d 76 69 64 65 6f 64 61 74 61 72 61 74 65 00 -
-   -40 7f 40 00 00 00 00 00 -
-        videodatarate: 500.0 - -
   -00 17 76 69 64 65 6f 6b 65 79 66 72 61 6d 65 5f -
-   -66 72 65 71 75 65 6e 63 79 00 40 14 00 00 00 00 -
-   -00 00 -
-        videokeyframe_frequency: 5.0 - -
   -00 0b 61 75 64 69 6f 64 65 76 69 63 65 02 00 17 -
-   -4c 6f 67 69 74 65 63 68 20 4d 69 63 20 28 50 72 -
-   -6f 20 39 30 30 30 29 -
-        audiodevice: 'Logitech Mic (Pro 9000)' - -
   -00 0f 61 75 64 69 6f 73 61 6d 70 6c 65 72 61 74 -
-   -65 00 40 d5 88 80 00 00 00 00 -
-        audiosamplerate: 22050.0 - -
   -00 0d 61 75 64 69 6f 63 68 61 6e 6e 65 6c 73 00 -
-   -3f f0 00 00 00 00 00 00 -
-        audiochannels: 1.0 - -
   -00 10 61 75 64 69 6f 69 6e 70 75 74 76 6f 6c 75 -
-   -6d 65 00 40 56 80 00 00 00 00 00 -
-        audioinputvolume: 90.0 - -
   -00 0c 61 75 64 69 6f 63 6f 64 65 63 69 64 02 00 -
-   -04 2e 6d 70 33 -
-        audiocodecid: '.mp3' - -
   -00 0d 61 75 64 69 6f 64 61 74 61 72 61 74 65 00 -
-   -40 40 00 00 00 00 00 00 -
-        audiodatarate: 32.0 - -
   -00 00 09 - -    } - -
- - -  ) - -
-06 00 00 00 00 00 02 09 01 00 00 00 54 00 - -id=6 timestamp=0 body_size=2 content_type=0x09 dest=1 - -
- - - -  Video 2 bytes - -
-07 00 00 00 00 82 3b 09 01 00 00 00 14 00 74 46 -
- -0f 14 0f 14 3f 6e 96 4b 01 6e ef f0 6d d7 f5 df -
- -ae e9 b2 f5 29 b1 3b af 85 fd e1 f5 a3 27 d8 c7 -
- -36 67 e0 f0 b8 85 2a dc 57 73 2c 04 -[4048 more] -
-id=7 timestamp=0 body_size=33339 content_type=0x09 dest=1 -0.531 s
0.531 s
0.531 s -
- - -  [fragment] - -
-c7 92 61 9b 8b b0 14 a4 a1 9d 87 11 6d de fc 1e -
- -c5 20 ce 08 6f a6 93 16 08 e8 d0 17 e3 ab 71 40 -
- -e3 a2 f8 f2 ed d9 01 ba 9b f5 74 58 74 ca 30 1a -
- -51 73 56 84 08 5f ac e1 e9 d5 b1 b5 -[4037 more] -
-id=7 timestamp=0 body_size=33339 content_type=0x09 dest=1 -0.542 s
0.548 s
0.556 s -
- - -  [fragment] - -
-c7 4b 42 64 c2 df ba 7a 3b 69 8a 51 bb 99 3b 84 -
- -d2 98 ee 18 35 08 1c 67 e1 0a ca 9a f5 84 0b 8a -
- -10 71 2f 75 be 53 cb 36 08 14 ac 15 9d 2b 84 c1 -
- -d1 18 a5 3f f9 ee 2f c6 0e 5a 47 84 -[4037 more] -
-id=7 timestamp=0 body_size=33339 content_type=0x09 dest=1 -0.558 s
0.570 s -
- - -  [fragment] - -
-c7 eb 09 0d c3 ab 18 4d 78 e3 e0 7c 30 dd 0a ce -
- -4c 11 d6 74 67 4d 9d 35 4a cd 3c 18 8d 38 d5 d3 -
- -0a 7f 83 23 8e a1 e5 9e e0 c9 68 6a 57 d3 60 22 -
- -ae 5e e6 f1 c3 2d de 48 83 7f e9 f1 -[4037 more] -
-id=7 timestamp=0 body_size=33339 content_type=0x09 dest=1 -0.572 s
0.574 s
0.586 s -
- - -  [fragment] - -
-c7 08 36 6c a2 bb 23 0c a1 65 81 6c fb 20 f6 fc -
- -bd 3a cb 19 56 6f 4f 12 10 84 e2 a7 f5 46 88 ef -
- -0c d6 f4 af 77 69 9e d5 c4 bb e8 4c f5 96 83 45 -
- -f1 50 bc d0 a1 3f b7 44 2c 4a 8c 08 -[4037 more] -
-id=7 timestamp=0 body_size=33339 content_type=0x09 dest=1 -0.588 s
0.600 s
0.600 s -
- - -  [fragment] - -
-c7 4b 41 76 7d 3f 8e c4 8f 23 ae 77 2d 60 76 c9 -
- -80 d1 30 da 8f 35 da 9f 68 e4 6c 00 5f b7 e1 aa -
- -a9 55 a9 75 1a 13 a2 35 ce 8e 68 4a f7 c5 d8 8d -
- -93 7e d0 6a 4f a6 d2 b4 5c 5a f0 cb -[4037 more] -
-id=7 timestamp=0 body_size=33339 content_type=0x09 dest=1 -0.626 s
0.628 s
0.632 s -
- - -  [fragment] - -
-c7 2e ed 07 aa 08 fe 80 75 57 3e 0d 21 99 5b 9f -
- -a6 4d df 98 28 50 e2 f9 5a da 56 80 03 97 95 bb -
- -8a d6 68 52 52 c3 49 75 69 97 de 09 e7 d3 d1 82 -
- -d3 3c 65 0f 71 58 06 71 6b 8a 15 15 -[4037 more] -
-id=7 timestamp=0 body_size=33339 content_type=0x09 dest=1 -0.644 s
0.646 s
0.648 s -
- - -  [fragment] - -
-c7 f4 8d 7e 5b 0b a2 c6 48 df 08 1b 35 89 0d f7 -
- -42 81 ae fb 93 62 4b e9 5a 25 b7 4e 7a bb 5a 50 -
- -8b 46 0c b1 9a aa dd 11 8e 1a cf ff 25 ee eb 5f -
- -d2 e1 6b 56 9d 22 4c 74 7b 65 67 74 -[4037 more] -
-id=7 timestamp=0 body_size=33339 content_type=0x09 dest=1 -0.658 s
0.660 s -
- - -  [fragment] - -
-c7 73 3c 98 36 42 91 7a d9 f1 6e 21 a9 fb e8 80 -
- -5e 9a 20 7d 97 0b 6d da 1c 69 96 ad a2 e9 c4 dc -
- -00 24 a4 16 ff 61 c4 30 74 7f a5 50 0c 9c 89 c8 -
- -9d 10 b0 24 78 3f d3 d6 bb a6 a1 72 - [512 more] -
-id=7 timestamp=0 body_size=33339 content_type=0x09 dest=1 -0.662 s -
- - - -  Video 33339 bytes - -
   - - -    VP6( - -
   -0 1 1 1 0 1 0 0 - -      frame_mode=Intra qp=58 marker=vp61/62 - -
   -0 1 0 0 0 1 1 0 0 0 0 0 1 1 1 1 -
-   -0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 1 -
-   -0 0 0 1 0 1 0 0 -
-      version=8.3 interlace=0 dim=320x240 render=320x240 - -
   - - -    ) - -
-07 00 00 00 00 0d 18 09 01 00 00 00 24 00 f0 5a -
- -9b 93 7f df c3 c4 4f b7 49 2c 61 d9 b7 cc cd d6 -
- -8b 1e 50 f1 d7 a7 b9 d8 57 8f 70 4e bf 27 c5 18 -
- -ff f3 c9 bf 73 7b 69 f6 bf fb f6 b0 -[3304 more] -
-id=7 timestamp=0 body_size=3352 content_type=0x09 dest=1 -0.670 s
0.676 s -
- - - -  Video 3352 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-47 00 00 00 00 0d 91 09 24 00 f0 40 75 9a 73 15 -
- -c4 a7 e1 48 b1 fc 29 e3 1f d9 06 11 c4 9a 31 26 -
- -cd 96 02 c9 f0 60 5f 46 68 44 00 e7 91 40 2d 7a -
- -e5 7d ab 11 8f 13 35 78 08 d6 65 f6 -[3421 more] -
-id=7 timestamp=0 body_size=3473 content_type=0x09 dest=1 -0.678 s
0.680 s
0.688 s -
- - - -  Video 3473 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-47 00 00 00 00 10 5e 09 24 00 f2 40 2d f6 89 fb -
- -54 6a fe e8 d2 f1 e9 e9 84 7b 9b 8f f5 07 6a af -
- -56 7f ef 88 89 a1 fa 35 c5 bb a5 84 b0 6a 7f ba -
- -4b 25 49 13 66 2f e9 68 ce ff 21 1d -[4044 more] -
-id=7 timestamp=0 body_size=4190 content_type=0x09 dest=1 -0.690 s
0.702 s -
- - -  [fragment] - -
-c7 0d 9b d3 02 50 03 62 c0 e5 a6 4e 47 d1 84 13 -
- -21 3d 01 0a 8f 9f 5c 49 d3 58 1b 62 6c 25 d3 97 -
- -6d ce 35 18 86 a7 aa e0 ca ad 21 5c 34 e6 24 00 -
- -ed 02 71 41 1f c0 cb b1 10 ea da a8 -  [35 more] -
-id=7 timestamp=0 body_size=4190 content_type=0x09 dest=1 -0.704 s -
- - - -  Video 4190 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-47 00 00 00 00 0f 7b 09 24 00 f2 40 0a c7 80 a9 -
- -ff a2 fc f6 22 6f 08 27 77 c0 e3 46 8d 1a 95 25 -
- -13 6f 06 e3 3c 23 79 ce 81 83 13 d8 47 2e cc 7d -
- -55 07 59 1d 1d bd 1a 33 5a 87 eb db -[3911 more] -
-id=7 timestamp=0 body_size=3963 content_type=0x09 dest=1 -0.707 s
0.716 s -
- - - -  Video 3963 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-47 00 00 00 00 0c 95 09 24 00 f0 40 00 ab f4 10 -
- -40 82 01 71 82 e1 05 c2 0b 91 ad f3 86 f8 ff aa -
- -e1 05 ea a7 8c 2d 89 62 1e dd 11 b5 7b 01 2b 55 -
- -41 f3 82 86 2a 9b 7c f9 49 28 ee e6 -[3169 more] -
-id=7 timestamp=0 body_size=3221 content_type=0x09 dest=1 -0.718 s
0.720 s -
- - - -  Video 3221 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-47 00 00 00 00 0d 10 09 24 00 f0 40 00 00 04 0b -
- -64 17 08 2e 10 5c 47 39 6c 44 50 0c 73 ad 63 03 -
- -40 c1 40 61 05 eb a1 04 2e 54 25 aa 92 34 80 51 -
- -94 34 b4 20 df 0a ab c2 00 ab df c4 -[3292 more] -
-id=7 timestamp=0 body_size=3344 content_type=0x09 dest=1 -0.722 s
0.724 s
0.730 s -
- - - -  Video 3344 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-47 00 00 00 00 10 2a 09 24 00 f2 40 01 09 d5 9b -
- -26 83 dd de 2f 5d 55 5f ab 72 a1 df 23 e4 72 f2 -
- -90 2f ed 41 48 48 08 95 8b 27 46 97 ff 45 ad 20 -
- -a4 f8 66 15 02 43 14 87 06 bd 2e 39 -[4044 more] -
-id=7 timestamp=0 body_size=4138 content_type=0x09 dest=1 -0.732 s
0.736 s
0.740 s -
- - -  [fragment] - -
-c7 ec 75 98 a8 b7 b0 4f 33 f8 a0 df f2 10 f3 f4 -
- -ed ec 74 ef 0a 3d d7 b9 74 ac e0 4e c3 e0 31 bb -
- -34 5b 09 47 63 9e 49 86 00 00 00 -
-id=7 timestamp=0 body_size=4138 content_type=0x09 dest=1 - -
- - - -  Video 4138 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-47 00 00 00 00 0f b6 09 24 00 f2 40 03 bb 80 8e -
- -9e df e7 d9 21 19 5b bb 71 c9 2f 19 8a 3d c7 23 -
- -dc 7c a0 9e 04 e0 c3 1f ff cd b0 b9 48 fa 97 1c -
- -8f 88 1a de e5 a2 0a d5 34 7f ce 31 -[3970 more] -
-id=7 timestamp=0 body_size=4022 content_type=0x09 dest=1 -0.742 s
0.744 s -
- - - -  Video 4022 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-47 00 00 00 00 0c 8a 09 24 00 f0 40 00 ab ee 00 -
- -0c 16 00 2a d5 51 1d 1a 01 55 ad 72 2a 06 37 8a -
- -00 15 59 fe 28 d8 9c 26 4b 0b 78 3e c4 b3 b3 68 -
- -85 22 64 5b cd 0c a1 88 75 d3 58 9d -[3158 more] -
-id=7 timestamp=0 body_size=3210 content_type=0x09 dest=1 -0.746 s
0.752 s
0.756 s -
- - - -  Video 3210 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-47 00 00 00 00 0d 1f 09 24 00 f0 40 00 49 d8 de -
- -20 f0 fc fc d8 ce b0 16 01 c5 e2 78 2d 58 0b 27 -
- -bc 14 60 40 ac c2 06 fd cd 02 12 b0 02 c5 7d ff -
- -5f db 79 f1 6b 1b 62 87 99 2f 81 f6 -[3307 more] -
-id=7 timestamp=0 body_size=3359 content_type=0x09 dest=1 -0.758 s
0.760 s -
- - - -  Video 3359 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-47 00 00 00 00 0f fd 09 24 00 f2 40 53 0c 1a 1b -
- -c0 05 44 5e 37 b2 53 6f 70 27 3a c7 4b 90 0a 90 -
- -e4 b9 a3 4d 3c 61 f9 cf 66 da 9f d2 52 e9 77 19 -
- -4c 63 00 6a 1f e4 52 13 82 75 22 42 -[4041 more] -
-id=7 timestamp=0 body_size=4093 content_type=0x09 dest=1 -0.764 s
0.768 s
0.772 s -
- - - -  Video 4093 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-47 00 00 00 00 0c d2 09 24 00 f0 40 00 ab f2 00 -
- -0c 60 ad 84 05 c2 d7 ca 5b 08 88 e8 4c 56 50 12 -
- -92 ac 20 5c 3c 11 a8 86 86 42 85 b0 88 8a ee 7b -
- -a2 51 31 f2 c2 ee be d7 9b 51 d2 db -[3230 more] -
-id=7 timestamp=0 body_size=3282 content_type=0x09 dest=1 -0.774 s
0.776 s -
- - - -  Video 3282 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-47 00 00 00 00 10 05 09 24 00 f2 40 95 4f d6 76 -
- -f0 01 a5 d4 90 8c 4d 43 95 a8 30 47 ce 3b 6e 07 -
- -b6 cf 06 87 31 d5 9c 7c e7 01 37 e1 50 63 d7 57 -
- -68 e2 2c b7 8b 4b 5f 84 9c e4 da 01 -[4044 more] -
-id=7 timestamp=0 body_size=4101 content_type=0x09 dest=1 -0.780 s
0.782 s
0.786 s -
- - -  [fragment] - -
-c7 40 48 da 00 00 - -id=7 timestamp=0 body_size=4101 content_type=0x09 dest=1 - -
- - - -  Video 4101 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-47 00 00 00 00 0f d8 09 24 00 f2 40 00 00 0c c8 -
- -40 0b 19 38 b8 e7 1f 38 e7 1f 38 e7 1f 43 be b2 -
- -5b 05 1c e3 f3 ee 28 36 61 04 b4 b5 28 e5 4b 04 -
- -a8 21 36 91 90 b6 3b e9 92 f5 6a f9 -[4004 more] -
-id=7 timestamp=0 body_size=4056 content_type=0x09 dest=1 -0.790 s
0.790 s
0.796 s -
- - - -  Video 4056 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-47 00 00 00 00 0c a9 09 24 00 f0 40 9e 14 a8 76 -
- -fa 09 ea 81 36 40 5c 62 ae 8c 17 08 30 ea 93 1c -
- -64 b2 3e 81 6f 5f 80 60 c4 c8 16 fd 33 20 8b 7f -
- -52 82 98 f2 12 16 b9 f5 43 24 be 53 -[3189 more] -
-id=7 timestamp=0 body_size=3241 content_type=0x09 dest=1 -0.800 s
0.802 s -
- - - -  Video 3241 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-47 00 00 00 00 0f cb 09 24 00 f2 40 05 d1 f5 ab -
- -af 1b cf 60 02 26 1c f1 fb a4 ff 92 a3 3b 0f f4 -
- -e9 4f e9 fe b3 b6 0c 58 5d 27 ff f0 23 ec 82 17 -
- -de a4 92 f8 e2 c9 0c 81 cf 92 40 62 -[3991 more] -
-id=7 timestamp=0 body_size=4043 content_type=0x09 dest=1 -0.804 s
0.806 s
0.814 s -
- - - -  Video 4043 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-47 00 00 00 00 0c ce 09 24 00 f0 40 00 ab f4 95 -
- -40 06 10 5c 20 b8 41 70 83 0e 45 53 64 26 80 ec -
- -61 bf 97 d7 8c 81 3b a4 e9 d5 3d fa cf d9 e3 2e -
- -62 17 0d f0 7f 05 25 27 e9 82 b7 f2 -[3226 more] -
-id=7 timestamp=0 body_size=3278 content_type=0x09 dest=1 -0.820 s
0.820 s -
- - - -  Video 3278 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-47 00 00 00 00 10 40 09 24 00 f2 40 95 7e 8f e0 -
- -13 43 cb b1 53 cf 2c 0c 6f fd 92 44 fa 50 92 05 -
- -e3 47 d7 8e 31 a8 3f ce 95 49 30 ef 3f 76 52 4b -
- -1a ae 1d c0 51 bd 16 00 83 cf a5 be -[4044 more] -
-id=7 timestamp=0 body_size=4160 content_type=0x09 dest=1 -0.822 s
0.828 s
0.828 s -
- - -  [fragment] - -
-c7 f8 42 8d 20 17 96 0c ef d5 71 de dd 6b e8 5a -
- -2d 8b 78 45 a9 ab 28 57 c1 fd 10 87 80 49 c2 56 -
- -2c 3f 45 7c ca 4f 82 b4 62 43 52 5c 51 d4 34 07 -
- -08 c9 34 a2 4f a0 f6 34 ce 2a 98 f1 1c a2 20 00 -
- -00 -
-id=7 timestamp=0 body_size=4160 content_type=0x09 dest=1 - -
- - - -  Video 4160 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 00 54 01 - -id=6 timestamp=0 body_size=2 content_type=0x09 dest=1 - -
- - - -  Video 2 bytes - -
-46 00 00 00 00 00 00 08 - -id=6 timestamp=0 body_size=0 content_type=0x08 dest=1 - -
- - - -  Audio 0 bytes - -
-06 00 00 00 00 00 69 08 01 00 00 00 2a ff f3 40 -
- -c0 ce 16 08 ce cd 9e 62 46 6d e8 c1 82 13 47 f5 -
- -9b c4 cb 83 3c bf ff 3b 7e 91 93 65 17 8f 99 fa -
- -9b 91 50 66 6a d1 c5 9f 49 84 99 d4 -  [57 more] -
-id=6 timestamp=0 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d0 16 e9 b6 cd 9e 61 -
- -86 94 ce c2 eb 96 ea 76 e9 aa b3 91 9c 76 38 a4 -
- -26 d6 bf f4 dd 1d 96 cc 7f 63 ce 31 e3 51 1c 32 -
- -d2 30 b3 ee f4 60 23 27 51 93 82 98 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cf 17 c9 ea d1 be 48 c6 b5 32 -
- -41 91 23 43 25 65 0d 8c f9 1b c2 f3 bb f3 92 1b -
- -33 73 8e c7 b9 99 82 55 cb bc c0 f2 27 72 6d d4 -
- -fc f9 c3 68 d0 a1 bb 97 c3 7d 47 a7 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 3b 00 0f 95 09 24 00 f2 40 00 fd 88 05 -
- -67 4d cf e1 42 65 8f f9 c2 aa 4d 11 0d ff 21 40 -
- -90 4a f9 e5 d1 05 cb 62 b4 4c 90 72 a2 9c f1 52 -
- -7c ed 79 74 15 39 ea 9d b4 a3 2f f7 -[3937 more] -
-id=7 timestamp=59 body_size=3989 content_type=0x09 dest=1 -0.830 s
0.834 s
0.836 s -
- - - -  Video 3989 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 ca 15 61 4e c8 f6 60 c4 91 6c -
- -2c 2b c2 26 29 54 e9 90 29 1e 22 01 15 5e 6f 7e -
- -6a fa 56 23 f4 d9 db e8 ec e2 4a d7 35 c9 69 41 -
- -f9 60 ca f9 42 52 58 4a c6 f8 34 ec -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 16 2a ff f3 40 c0 cf 17 6a 0a cd 9e 60 -
- -c6 b4 d3 98 47 04 51 59 c0 7e 19 e2 86 01 a9 82 -
- -e2 09 a5 ad e2 42 92 53 37 be a9 9e 56 f2 10 8c -
- -ed ab e5 94 39 fc 95 a6 47 92 7b 3f -  [49 more] -
-id=6 timestamp=22 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 91 09 24 00 f2 40 00 aa f7 df -
- -40 0a 5d aa ae 57 f2 04 15 27 d0 22 c0 ae 0f ff -
- -03 e8 4f 75 64 9f 3a 53 0b 91 c5 39 ca 5b e1 01 -
- -3a 18 47 ff f9 d4 7b 96 84 ce 81 df -[3933 more] -
-id=7 timestamp=64 body_size=3985 content_type=0x09 dest=1 -0.840 s
0.844 s
0.844 s -
- - - -  Video 3985 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cc 17 a1 ce c9 9e 60 -
- -c6 95 bb 4a 28 08 49 a9 02 81 0c 47 57 be 11 2c -
- -78 61 56 de 25 a2 b6 7a 47 6d a8 54 99 a5 89 1d -
- -94 92 95 8e 67 e7 01 7f cc d3 15 4e -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c8 16 22 06 c4 f6 48 c6 b4 3c -
- -21 06 ed 98 3c e3 e7 c2 4f 27 12 08 73 80 e1 12 -
- -e8 c4 5e 96 3e 5d 9c 52 2a 66 d9 a0 c6 59 93 85 -
- -14 6b 90 22 32 ba 72 1a 47 22 85 9f -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ca 16 79 f6 d1 be 60 c6 b4 a2 -
- -ec 71 84 96 20 81 07 a3 1b d9 1d 2e 4e 74 a4 5e -
- -9f a7 fd d8 a7 13 86 f5 8c cd b3 63 22 26 05 1b -
- -4e d3 f4 94 88 1e 9f c5 88 85 ea b3 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f c8 09 24 00 f2 40 9b 78 33 cf -
- -f3 03 d8 81 9f 49 f5 66 8b 06 59 ab fe 74 9f 50 -
- -9f ac a3 32 5f a1 3e 7d 28 20 19 dc 01 2f d9 64 -
- -bb d4 58 3c ee d1 24 d2 39 a2 e5 2e -[3988 more] -
-id=7 timestamp=64 body_size=4040 content_type=0x09 dest=1 -0.850 s
0.850 s
0.852 s -
- - - -  Video 4040 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cb 17 09 f6 d1 9e 48 c6 b4 26 -
- -1c 50 27 2a 2c 22 da d5 ae 7d dd 5e 7d 28 bd 23 -
- -e2 b8 46 67 24 23 9f 2a 67 9d 62 ca ee 4c 73 89 -
- -f5 36 a7 cb 49 8a 2f d8 65 75 3b 0b -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 c9 16 32 06 c8 fe 60 -
- -c6 b4 39 c0 40 61 cc 80 cf 33 96 96 d2 c6 01 ab -
- -2b 2a 95 c9 6f df 5e ad 86 b4 ff 8a 4f 4f dc 3a -
- -66 0c c9 eb da 6d 4e 4f 74 84 9f 4f -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c 9e 09 24 00 f0 40 00 ab f0 00 -
- -0c 24 14 46 38 02 b8 30 05 70 c2 f3 5f 18 02 b8 -
- -30 05 70 60 2e 17 42 78 96 f7 74 54 55 91 02 e9 -
- -02 9b d5 0d 4b 30 62 5d 42 fe ad 39 -[3178 more] -
-id=7 timestamp=64 body_size=3230 content_type=0x09 dest=1 -0.856 s
0.858 s -
- - - -  Video 3230 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cb 16 da 22 ca 36 60 -
- -c6 b4 ad 43 04 ea 28 73 04 dd ff 8f 92 40 6a d6 -
- -19 b2 b6 97 3f 2d 59 4e 91 f4 a7 99 eb 6a ce 29 -
- -aa e4 42 ab 64 50 9f ce 17 aa 09 ce -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ca 16 62 72 d2 3e 60 86 b4 c3 -
- -54 5d 51 44 2e 28 55 33 22 18 95 36 88 6d f3 ea -
- -ea 76 16 2d cf d0 f5 bc dd 02 1d eb 5e af 99 19 -
- -b9 49 da 96 cc ee 53 f2 b1 28 21 68 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 cb 15 ea 16 ce 5e 60 -
- -c6 b4 15 2e c3 82 c7 4d ce b1 32 d4 f5 01 a5 31 -
- -6c 10 c1 b3 3b d2 28 62 09 0f f6 f8 dd 38 ff c4 -
- -d0 a9 f9 c4 21 01 13 ee 22 d3 c7 84 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 7a 09 24 00 f0 40 00 67 1e 04 -
- -f3 c4 02 b8 30 05 70 60 0b b0 18 58 30 60 0a e0 -
- -c0 15 ca f9 bd 4f ed df b1 39 e6 a0 77 fc fe 85 -
- -46 1d 80 d5 76 37 6d 66 b8 bd 9b 6e -[3398 more] -
-id=7 timestamp=64 body_size=3450 content_type=0x09 dest=1 -0.864 s
0.866 s
0.868 s -
- - - -  Video 3450 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 ce 17 1a 0a d1 9e 49 -
- -46 b4 46 8a 89 aa 8e bd 30 c1 1a 06 02 60 c2 d9 -
- -8a 09 21 4c 2d 1e a3 07 40 64 3f ed 03 3e 84 e0 -
- -a1 56 da 5d 10 f9 2c 58 a2 7b 5e 86 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 cc 16 01 72 cd 9e 62 -
- -06 90 2a 3d 8d b4 97 70 b0 76 7f 73 d3 ac b4 dd -
- -4f a5 27 41 8e 62 23 6e 50 8b 1d 2b 96 4f e7 e6 -
- -fa 71 e0 df a0 73 3d 8a 4a 94 98 cb -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cf 17 98 d2 cd 9e 4a -
- -46 6d 84 77 2e 69 e0 09 0f 20 65 6d b4 c4 d4 98 -
- -f4 89 e0 a6 65 26 6c dc 8a d5 f3 b2 96 59 d2 9b -
- -82 4c 2a 9e 54 eb 89 6e 6c ff 9a 5c -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 10 57 09 24 00 f2 40 02 db ce de -
- -00 1d 55 37 3a 91 fd 26 7a 04 22 90 6b 1f 78 ec -
- -d9 27 dd 80 ec e2 78 68 4e 74 46 78 ec ee 3d ee -
- -9f c0 0e ce 48 0e d7 b2 5a 20 8b 36 -[4044 more] -
-id=7 timestamp=80 body_size=4183 content_type=0x09 dest=1 -0.870 s
0.874 s
0.878 s -
- - -  [fragment] - -
-c7 31 e5 31 ee d6 aa f4 29 1b 5a 6e 58 2d c6 29 -
- -d9 d9 80 c2 5b 0b 36 cb 03 9f a3 4d 02 a9 83 62 -
- -08 ec 09 c5 7c 0a a6 7f d8 a7 2d b0 58 1b 5b b1 -
- -42 02 fe f8 3f 2f 33 68 ca f0 7c 2a 14 62 f3 55 -
- -36 df f9 1a 27 c5 2a 2b bb 15 10 3e 19 1d ff b7 -
- -e3 9a 89 d0 93 87 00 00 -
-id=7 timestamp=80 body_size=4183 content_type=0x09 dest=1 - -
- - - -  Video 4183 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cb 16 99 b6 cd 9e 62 06 94 ea -
- -97 e5 97 65 f0 81 d2 8f 75 ff 2e fa f3 ad 06 6e -
- -5d 56 4d 07 26 ec 54 4f cf 3b ce 15 22 67 b9 a7 -
- -d2 41 6b 49 b2 fe 7f 72 84 62 c5 62 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 17 41 72 cd 9e 7a 06 91 b0 -
- -e0 a8 a7 36 b4 e8 79 d3 ae ae 9f 7a 28 a6 92 e6 -
- -6a 27 7e 84 f7 20 c4 47 eb 6f 1f 21 ad 2a f3 76 -
- -c5 4e 59 17 5f 90 be 5e 1b bf 4d 72 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 5d 09 24 00 f2 40 09 6e 34 94 -
- -2f 40 0d 78 4f 45 a0 b2 3c 76 68 90 b8 ac 8f 1d -
- -b8 ab 3e 73 50 13 b1 51 3c aa f3 e6 a6 26 fd c4 -
- -3b 34 4a e5 c8 2a 08 07 88 45 cf de -[3881 more] -
-id=7 timestamp=64 body_size=3933 content_type=0x09 dest=1 -0.882 s
0.882 s
0.884 s -
- - - -  Video 3933 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c9 15 21 b6 d1 9e 49 86 94 0b -
- -51 75 b1 21 00 cc 5b 70 ee ef 98 39 d5 8c 39 d2 -
- -b6 ae cc 5c 59 e6 51 b8 5f a1 7d 54 cc 81 1d 28 -
- -28 81 47 82 a2 23 a2 80 25 38 24 e3 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 cf 17 c2 02 cd 9e 61 -
- -86 b4 0c 95 99 96 91 aa 20 94 12 67 63 9a d7 55 -
- -2b dc b2 2c 89 07 2b 6b 9f 91 52 25 06 ab 0c 83 -
- -b6 f4 89 2e 79 39 19 c0 d4 e9 f9 6a -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 cb 16 99 76 cd 9e 48 -
- -c6 90 12 90 20 42 6b 89 88 46 e6 55 c7 5c 82 6b -
- -94 e9 e9 0c a4 86 7f f2 9d a7 a9 ba 4c 38 c8 8f -
- -0c cc 8a 46 d3 d3 3b fd 84 eb 47 87 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f ef 09 24 00 f2 40 09 4c a0 4b -
- -18 1e db da 21 27 66 cd 11 d9 d6 a7 03 88 f5 91 -
- -c2 e2 47 f6 d5 a7 6a 5e 96 47 a0 25 d1 de ef 00 -
- -c7 66 8a 86 2a bc 3d d9 2c c8 45 56 -[4027 more] -
-id=7 timestamp=64 body_size=4079 content_type=0x09 dest=1 -0.888 s
0.890 s
0.894 s -
- - - -  Video 4079 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cb 15 da 0a c9 96 30 -
- -c6 b4 da 00 90 4a 01 1a 68 6c 08 9c ad 05 ef 11 -
- -e1 e7 2a f7 5c c8 af 95 b0 d4 51 c3 0c 6a da c5 -
- -43 77 27 04 0d 35 0e 38 6c 16 15 0d -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ce 16 ea 26 cd 9e 60 c6 b4 19 -
- -6d 68 3c fb f7 77 1e 5e da 16 9f 77 43 0e 20 e7 -
- -e5 9d c8 d0 d5 96 32 f4 8d 0b c8 12 85 c3 2c 02 -
- -09 47 9c 2e 48 3c 52 93 05 65 d6 09 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c af 09 24 00 f0 40 00 ab f0 24 -
- -8c 01 bb b0 04 7c e3 e7 1c e3 47 ce 39 d9 f8 c7 -
- -ce 3e 72 4d a2 50 70 94 c8 86 04 02 46 f3 d4 75 -
- -72 2f ac b9 eb 7d 44 b8 9c f3 43 4e -[3195 more] -
-id=7 timestamp=64 body_size=3247 content_type=0x09 dest=1 -0.898 s
0.898 s -
- - - -  Video 3247 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 cd 16 49 72 cd 9e 48 -
- -c6 90 29 04 35 95 37 62 07 7d 46 7a 63 bc 1b bf -
- -fc 29 58 f4 af ca c6 9b 66 51 08 98 ef 99 27 c3 -
- -34 cb 35 cc ec fa f9 da 96 ef b6 de -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ce 16 c1 56 c9 9e 61 -
- -86 90 f2 6a d3 77 81 18 70 f0 a2 4c d1 e9 e8 fb -
- -e8 d6 f1 70 25 73 2a 6c 29 31 07 85 aa 99 d2 39 -
- -ed 9c 56 39 42 57 c1 45 bf 5f a2 ab -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ce 14 f2 02 c9 96 60 c6 b4 36 -
- -de 0e 0c d8 1d b1 83 9b 18 94 f4 93 ff 53 9e 4f -
- -ef 4b b0 dc cd c9 1e d2 4f 88 d9 64 4e 6f 2c d3 -
- -22 72 73 f7 fe 19 1e 55 d3 f2 82 07 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -0.902 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 5c 09 24 00 f2 40 04 50 11 b1 -
- -79 df 32 d2 29 48 18 7c 8c 09 c1 79 03 1d 91 d9 -
- -1e 9c 2a 78 8e c8 ec 92 02 5d 7a 81 b5 27 ee 4a -
- -29 3b 23 b2 3f bc 61 47 63 09 fe 7a -[4044 more] -
-id=7 timestamp=64 body_size=4188 content_type=0x09 dest=1 -0.904 s
0.910 s -
- - -  [fragment] - -
-c7 d2 d8 bf cf 9e f1 14 f0 39 de 28 32 0f 16 1d -
- -c8 b0 08 fe 29 07 0b 20 40 db 20 05 4d 20 80 56 -
- -01 c7 00 af de b7 2d 41 0c 67 9b c9 e8 4e 88 22 -
- -d2 e3 1d 12 8a 20 36 9d b1 e9 4a fc -  [33 more] -
-id=7 timestamp=64 body_size=4188 content_type=0x09 dest=1 - -
- - - -  Video 4188 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d5 17 b1 ae c9 9e 61 86 95 3d -
- -10 d5 9e 64 18 5e 82 2f 94 b7 ff 88 ee 7f 7b fc -
- -cf 0e 6a 20 9a 96 45 d7 0a 45 a4 d5 fe 24 df 35 -
- -b7 f4 b0 dd c5 57 54 13 89 58 80 dc -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d1 15 da 12 cd 9e 48 c6 b4 13 -
- -fd a2 f1 74 55 6b ec 6f 69 ca 9f 3d ff 67 f2 91 -
- -71 8c b4 38 49 e4 6c c4 1e 3f 47 67 9a bf 4f 2e -
- -fe 65 a9 39 65 2c f2 2d 6d d9 df 1e -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -0.912 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c 94 09 24 00 f0 40 04 59 e3 a2 -
- -17 9f 47 70 00 60 b0 04 a7 e5 40 2a b5 80 b6 4f -
- -f2 2b 00 15 5a ff f5 98 15 80 da ef 28 ae ca 83 -
- -23 12 95 27 86 b5 e6 59 01 03 74 e1 -[3168 more] -
-id=7 timestamp=64 body_size=3220 content_type=0x09 dest=1 -0.916 s
0.918 s -
- - - -  Video 3220 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 16 2a ff f3 40 c0 d4 17 62 1e cd 9e 60 -
- -c6 b4 81 71 32 cc a1 2a 40 8a bb 32 56 bc fe 9e -
- -b2 c2 53 5d d5 aa 1d dc 80 a9 64 d9 19 a3 9d 34 -
- -eb f7 f0 c4 8b 36 1a 29 89 73 47 a4 -  [49 more] -
-id=6 timestamp=22 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d1 16 fa 12 cd 9e 79 -
- -86 b4 21 75 22 9f 7d f7 11 e6 af 72 44 62 26 a9 -
- -a9 68 ac da 12 9d 7a db 3f 4d d1 33 cf 4c be 2a -
- -c7 17 35 53 06 a0 6e cd 13 2e 96 b6 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d0 15 d1 ca cd 9e 60 c6 94 92 -
- -cc c3 1b cd 2e cf 97 6d f2 37 47 2b 51 ba 87 0e -
- -91 2b a2 40 c6 96 81 b2 6f b3 f9 58 6f 5e 57 5c -
- -d0 df ed 35 77 93 a1 80 b6 0a 24 72 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 10 29 09 24 00 f2 40 07 51 e7 6f -
- -00 14 94 31 28 ea 09 29 83 f3 93 9f 61 b0 5c 59 -
- -b1 f5 ec 48 01 72 73 e7 d3 46 37 a5 fd d0 68 c1 -
- -cc 85 c1 cd 82 e4 e8 48 a2 1d 5d 89 -[4044 more] -
-id=7 timestamp=80 body_size=4137 content_type=0x09 dest=1 -0.920 s
0.924 s
0.926 s -
- - -  [fragment] - -
-c7 e1 9f 90 69 b4 85 0f ad 60 2c 1c b4 14 da 80 -
- -35 f7 36 98 1b 0e ec 46 f0 a1 0e a9 46 b5 a4 d0 -
- -a8 52 43 ce 15 ce 55 50 00 00 -
-id=7 timestamp=80 body_size=4137 content_type=0x09 dest=1 - -
- - - -  Video 4137 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d3 16 8a 0a c9 9e 60 c6 b4 fb -
- -1a 89 88 2d 73 b3 f7 bf dd 71 79 2c 9a b1 f9 b9 -
- -9f 0c fe a7 c3 e1 79 a7 31 e1 25 e6 52 73 23 39 -
- -d8 75 f2 36 98 91 42 c4 c9 89 01 f0 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d3 17 51 f2 c5 96 48 c6 b5 e9 -
- -7c 8f 36 ac a4 08 d6 1c ff e9 c6 39 fb 2d d5 36 -
- -55 50 cc 66 48 c7 a5 a5 2c 86 9e 48 cc 26 04 77 -
- -1a 14 54 6a bf de b8 e4 cc a4 29 90 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 d0 16 19 ba c9 9e 79 -
- -86 94 1a 1c d0 55 9a 6f a4 a3 e5 47 9b 27 b3 c9 -
- -37 76 e9 ca 60 7f 21 58 7e 03 4d cd fc 52 f9 20 -
- -73 27 5b d0 af ea 49 96 75 65 9f fc -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 6a 09 24 00 f2 40 04 f0 a3 40 -
- -1c 3a 80 59 fb 0c 40 93 e7 27 d1 9f cd 0a 8a a1 -
- -94 8f 9d 33 5d 36 d3 18 05 1f 3b 9e 36 9b 4b fa -
- -42 17 db b1 28 01 b4 90 41 e0 56 65 -[3894 more] -
-id=7 timestamp=64 body_size=3946 content_type=0x09 dest=1 -0.930 s
0.930 s
0.932 s -
- - - -  Video 3946 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 d2 17 42 12 c8 fe 60 -
- -c6 b5 51 f7 59 ba 5d 6e 64 d9 93 17 61 bc 16 c4 -
- -be 12 1c 87 85 fe 52 5c cd 67 65 9e ad dd d7 cd -
- -7b 7a 31 c0 d1 69 fc 78 e8 4f db ff -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d0 15 78 7a cd 9e 60 c4 49 c4 -
- -21 18 8d 27 a5 22 4f 2b d5 7f ce c2 60 f9 aa 43 -
- -53 75 1c ef d7 9d 80 d1 0f cd f2 d4 32 d5 28 e4 -
- -64 c5 11 07 9a 09 97 68 32 44 3e 17 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c d2 09 24 00 f0 40 00 ab f2 30 -
- -9b 07 d2 28 12 49 6c 20 2d 84 05 b0 80 b6 10 16 -
- -c2 0c dd 22 10 2c 09 49 bf 65 5c df c8 e5 0c 76 -
- -5f 46 e8 b9 ea 6e 35 39 63 e5 db 76 -[3230 more] -
-id=7 timestamp=64 body_size=3282 content_type=0x09 dest=1 -0.936 s
0.936 s -
- - - -  Video 3282 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 d5 16 5a ca c9 96 60 -
- -c6 b8 32 bf 91 9d 8a b5 42 c6 02 15 74 46 74 f5 -
- -62 b7 bf 2b b6 30 13 f4 13 3c c8 47 70 e2 8d 32 -
- -65 20 e6 b7 84 fb ba 12 05 6e 2b 03 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d6 17 c9 d6 d1 be 79 -
- -86 94 ae e2 d0 41 38 76 7e 64 ff 27 6c ca b7 fa -
- -59 f5 01 eb 48 b9 85 10 33 3a e3 5e 00 1f f8 41 -
- -40 32 ee d2 ff 2f ec f2 ad 40 e5 b9 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 d1 16 38 ca cd 9e 60 -
- -c6 6d c4 32 0c a2 4c e4 8e 11 fb 12 a5 5f f5 33 -
- -29 7f 3d 64 78 65 2b 58 6b 4c e5 3e 21 c0 6a 71 -
- -d6 86 08 fb d8 e2 e2 34 39 38 30 b5 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 23 09 24 00 f2 40 00 ab e0 00 -
- -1d c4 80 7e 7d 27 ce 99 70 cb 65 fc de 8f cf a5 -
- -2d 92 9e 68 a7 22 0a fd 10 04 7c e9 3e 80 24 9e -
- -f4 9f 91 5a 6c 29 8a 50 58 f9 e8 d8 -[4044 more] -
-id=7 timestamp=64 body_size=4131 content_type=0x09 dest=1 -0.944 s
0.948 s
0.948 s -
- - -  [fragment] - -
-c7 e5 3e 46 3a b6 3b 79 0b 5c e5 0e 08 98 dc 6a -
- -3c 0a 6e ab 01 0a 8b 2c 13 05 4f 14 9d 74 60 09 -
- -5f 80 00 00 -
-id=7 timestamp=64 body_size=4131 content_type=0x09 dest=1 - -
- - - -  Video 4131 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 d3 16 69 2e cd 9e 60 -
- -c6 91 c3 0d 91 ed 19 ba cf df dc eb 64 4e 3e 57 -
- -43 07 7f 22 cc 00 cc ea 82 8d b0 55 77 23 33 f2 -
- -8b 48 bf 7e ea cf 52 c3 93 2b 4b 32 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d4 16 52 06 d1 9e 60 c6 b4 dc -
- -cd 8b 64 e9 dc f8 7d b4 0c db ff 5a fc 63 67 7f -
- -5b d0 9c d7 6b a8 78 c7 c1 ba 89 32 d5 df dd 86 -
- -69 5f d9 f6 38 37 39 35 e2 1d e3 c7 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c b7 09 24 00 f0 40 00 ab f2 1e -
- -1f c2 4f f0 c2 02 d8 40 5b 08 0b 61 01 6c 20 2d -
- -84 05 b0 82 ca 3b 85 f5 2f c6 12 f5 0d 09 52 3b -
- -ad 32 a0 98 1e 66 ff 20 62 a2 a9 62 -[3203 more] -
-id=7 timestamp=64 body_size=3255 content_type=0x09 dest=1 -0.950 s
0.954 s
0.956 s -
- - - -  Video 3255 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d5 17 7a 02 d1 be 61 86 b4 cd -
- -bd c4 53 84 c7 5a 1a d2 24 3c ce fc 23 4f 3c ee -
- -b3 22 59 ea 42 5e 18 f1 a1 85 5d 95 0d a9 14 35 -
- -25 23 e8 d0 c8 b8 d7 8e 79 19 db b6 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d2 17 71 5a d1 be 61 8c 91 3b -
- -e8 e0 da 85 56 4c 2f 2c 8c 74 e1 b6 44 c6 7e fb -
- -ec 76 37 bb 2c 7f 34 16 f6 30 c4 af c5 34 25 2a -
- -1c b8 9e 58 99 c4 18 34 49 e2 65 0c -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 cf 17 52 06 ce 3e 58 -
- -c6 b5 11 10 9c d4 a0 9a 2c d1 d6 ac 34 28 d7 9c -
- -f8 bc 74 11 92 6b 19 a3 38 93 c5 2c 3a 4c 68 13 -
- -da 2d e9 29 fc d8 b2 2c 9f 22 e4 ce -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 10 79 09 24 00 f2 40 00 ab e0 1e -
- -18 da 33 1c f1 3e e1 1b 19 48 93 b8 67 a3 4e 94 -
- -75 50 55 20 08 9d dc 83 3a 4f 9c 58 65 df 83 3a -
- -4f 9d 7c ea 68 25 2d 5f 26 e1 a5 c0 -[4044 more] -
-id=7 timestamp=80 body_size=4217 content_type=0x09 dest=1 -0.958 s
0.960 s
0.962 s -
- - -  [fragment] - -
-c7 08 06 be cd 65 29 04 f7 69 35 02 1e 76 ed eb -
- -30 2b 08 85 f8 c0 78 54 9a 10 30 3e fd b5 cd 40 -
- -32 e6 6f 59 a6 3f 03 61 cf 01 4f c3 5e a4 0d 4b -
- -e3 5a 66 dc 7b ea 6f 3d 62 f2 01 ac -  [62 more] -
-id=7 timestamp=80 body_size=4217 content_type=0x09 dest=1 - -
- - - -  Video 4217 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 cc 15 c1 6e cd 9e 60 -
- -c6 90 43 4a 6a af 73 52 3f 77 38 e6 ce cb 79 9e -
- -6b de 7d 2e ac 66 40 6f 46 2c d7 54 12 c7 92 b7 -
- -95 c1 d3 ce f6 a8 c6 7e c6 21 2b b9 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d0 16 e2 16 cd 9e 60 -
- -c6 b4 54 de 69 8d 79 39 99 7f de a7 4e 9d cb 1c -
- -3d 32 b4 dc 38 76 1b b8 70 f7 cb 54 ac 11 0d a0 -
- -a4 43 1a e9 72 34 73 8f 4d 6d 76 d3 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f be 09 24 00 f2 40 2b a0 00 05 -
- -79 1b 59 49 0c 1a 0c e9 3f 5b 4b e2 fa 4f 9d 27 -
- -d2 7e 58 c4 b4 68 73 4f f4 9c d8 eb 79 8c a7 cf -
- -56 80 57 2c 09 03 24 4a da 56 1a 2a -[3978 more] -
-id=7 timestamp=64 body_size=4030 content_type=0x09 dest=1 -0.966 s
0.966 s
0.968 s -
- - - -  Video 4030 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cf 16 b1 ae cd be 60 c6 95 8d -
- -02 09 32 7b db e5 33 5c 10 13 32 84 6a ee 74 cb -
- -5a cc 55 73 27 76 d5 19 ad f5 1e c2 07 22 ca ad -
- -bc c1 a4 2e 1b 63 c3 ac dd 56 ec 8a -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 cf 17 01 da c9 9e 61 -
- -86 94 01 20 a1 15 43 1d 3c fc a4 2a 48 19 05 99 -
- -88 1e 14 de fc f9 88 c3 b0 87 86 47 12 3c be 44 -
- -36 8b 75 94 e1 69 4e 48 5b fc b4 88 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ce 16 d1 9e c9 9e 60 -
- -c4 95 e1 47 c7 9d 9e a5 6e 8a c4 b6 28 b7 dd 4d -
- -7a 71 87 06 89 92 1a 19 24 e0 c4 93 1d a5 85 0c -
- -b8 65 1b fa 61 5c 2c fa e2 2d e2 50 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 95 09 24 00 f2 40 2e b1 83 20 -
- -11 2c 47 84 6d 6a 19 f4 9f 3a 4f 9d 27 cf b1 c4 -
- -9c 0a 4f 9d 27 cf 63 a2 30 02 db 43 6a 82 b9 91 -
- -a4 33 19 a7 2d da c9 4d f1 24 ae 8a -[3937 more] -
-id=7 timestamp=64 body_size=3989 content_type=0x09 dest=1 -0.972 s
0.974 s
0.976 s -
- - - -  Video 3989 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cd 16 79 ce cd be 60 c6 94 1e -
- -84 48 4c e0 39 46 0f 19 4b 45 f7 dc f5 18 29 7b -
- -e6 d4 dc cf f2 36 cd 88 22 03 31 c1 a6 7b 08 42 -
- -64 d9 3b e8 95 ab d5 a4 68 a6 7b 39 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ce 15 81 9a c9 96 60 c6 94 d2 -
- -20 68 75 49 ed cd d2 00 83 50 30 a6 6e 74 2d 78 -
- -e6 aa 67 41 bb 8b 38 5b c6 e5 22 48 7d ca 94 37 -
- -e6 1c e2 bb e6 94 cc a9 28 66 73 45 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d3 18 22 06 ca 3e 60 c6 b5 d8 -
- -18 5c 91 64 6e 43 33 d8 cd 83 58 7d 4a b5 ff ff -
- -b4 d0 a3 d2 77 92 bd 80 91 b8 49 1d 11 cf f1 55 -
- -c5 9d c2 bd cf 15 e8 fc fb 20 fb 94 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c c9 09 24 00 f0 40 07 3c e7 7a -
- -03 44 81 a4 f1 43 82 e1 05 c2 0b 84 90 00 e0 b8 -
- -41 70 85 ef b0 d8 38 7f 26 0a ef 2b 9b 71 21 38 -
- -9c 53 96 87 2d 6a ab 4c 22 ee 7b ee -[3221 more] -
-id=7 timestamp=64 body_size=3273 content_type=0x09 dest=1 -0.980 s
0.980 s -
- - - -  Video 3273 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 20 2a ff f3 40 c0 cd 16 c2 12 d1 be 48 -
- -c6 b4 73 36 f1 9d cd 57 76 2d 14 4d af 0d f1 b3 -
- -3c 47 87 6a 46 ae 29 a4 6d b9 2d 27 b9 a1 92 b0 -
- -5a c6 33 88 65 a6 16 ad 3d 7a e8 56 -  [49 more] -
-id=6 timestamp=32 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cd 16 29 82 cd 9e 60 -
- -c6 91 a9 ee 10 73 0d 20 0e 18 88 20 62 2e 65 87 -
- -b5 59 61 1c 25 2d e7 9a d4 5c f7 20 6e 55 08 dc -
- -ca 29 21 95 8a 53 84 4f 51 3b 1b cf -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 2e 09 24 00 f2 40 0d 6c 1a 7c -
- -80 26 65 b7 38 59 13 fa 7d 4a 89 2a 3a 09 4f fb -
- -13 c6 b8 8b cc e1 78 19 f5 29 ff 50 e3 60 0a dd -
- -00 7f ac b2 06 72 bf 56 40 4b 0c 93 -[4044 more] -
-id=7 timestamp=64 body_size=4142 content_type=0x09 dest=1 -0.984 s
0.986 s
0.988 s -
- - -  [fragment] - -
-c7 2c e0 18 80 3f 73 cf c3 fe 9f dc 2c 04 4d 38 -
- -de aa 7a 6b a7 94 c9 42 21 d4 f2 d8 37 a9 b6 ad -
- -05 f4 ad 62 0a 11 23 47 8a a3 3e 4c 00 00 00 -
-id=7 timestamp=64 body_size=4142 content_type=0x09 dest=1 - -
- - - -  Video 4142 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cf 18 61 e6 cd 9e 49 86 b5 bc -
- -90 c3 68 c4 f5 01 83 8c a1 b1 e1 68 5e 48 52 75 -
- -26 a7 c3 2b 74 ca ff 90 d5 34 43 25 d0 ff 2f 8e -
- -9b 13 a3 23 82 5a 13 06 f0 d0 64 ec -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c8 17 41 a6 d2 5e 48 c6 94 20 -
- -e2 78 3a 29 3b ad 4e 78 96 75 31 24 f1 59 d6 a4 -
- -db cc fd 8b fa 9b a9 a7 69 ee 78 2d e1 42 9d 39 -
- -b3 13 4d 8f 55 32 28 49 96 87 a0 22 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -1.111 s
1.116 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f ab 09 24 00 f2 40 07 4e 01 2d -
- -c1 d7 f3 29 00 54 a8 01 d0 d1 d5 21 ea 4d 4c 1a -
- -7d 4a dd 82 28 f6 8c a9 4f fa 9a 9a e5 dd ad 24 -
- -ac 73 48 af 15 d8 68 d8 39 70 fa 56 -[3959 more] -
-id=7 timestamp=64 body_size=4011 content_type=0x09 dest=1 -1.120 s
1.120 s -
- - - -  Video 4011 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c6 15 01 8e d1 be 48 c6 90 31 -
- -0c 66 fa d5 b1 51 0c 07 70 e7 99 88 c2 13 99 f3 -
- -e4 25 aa 61 98 28 72 1a bf 73 84 6e 10 c1 33 31 -
- -3c a5 54 93 5d 83 43 86 a5 a1 36 a3 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 cd 16 29 fa c9 9e 60 -
- -c6 b4 a2 99 e1 91 34 3a e2 de 0b cb 6c 96 8c 97 -
- -96 e6 f1 cf c8 a9 19 7a 0e fa 01 12 ad 2c ba 5e -
- -66 61 61 43 58 c5 4a 34 0e 99 96 ae -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cf 17 91 ca ca 3e 61 -
- -86 94 ce aa 02 0c 0c 0d 85 06 af 1e b5 35 28 b7 -
- -60 6e c8 aa c7 7c b2 f3 39 39 64 53 fd e3 65 47 -
- -62 31 0e 60 2d 48 e9 c0 4d 8a ea ee -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -1.122 s -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0c b7 09 24 00 f0 40 04 4e e6 de -
- -40 04 64 2c 5b 08 0b 60 d6 30 5c 78 21 16 81 b9 -
- -bc 2d 84 05 b5 86 f8 ed 40 59 91 49 c8 8b 63 51 -
- -34 1f 90 aa e9 1e eb a3 f6 1b a1 97 -[3203 more] -
-id=7 timestamp=80 body_size=3255 content_type=0x09 dest=1 -1.126 s
1.126 s -
- - - -  Video 3255 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cb 17 31 b2 d1 9e 49 86 95 b5 -
- -f6 27 cf 2a 94 cf 50 c9 0c 12 11 9c 86 47 fc ff -
- -1e b3 fb 78 7d 87 83 49 98 10 2c 2c eb d2 05 eb -
- -be fd 67 ff ee 7d fe 6e b2 75 dc f6 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 c9 15 4a 02 cd 9e 48 -
- -c6 b4 c1 b7 20 94 d2 6c f6 8b a5 28 45 e8 41 63 -
- -f5 5e c8 b9 dd 18 a6 aa a2 33 15 c3 c2 a8 e2 22 -
- -b3 13 02 6c 59 26 94 aa 8f 8a 3c 1d -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ce 17 42 1e ce 3e 48 -
- -cc b4 09 41 84 6d 8c 2d a5 dd 9a d1 82 49 55 5c -
- -af e7 99 4f fc fb cf 95 cd 8e a3 19 5d 99 d6 4a -
- -bb 19 dd 03 54 91 e9 44 38 ee 1a b2 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f fc 09 24 00 f2 40 95 e5 3b f5 -
- -6e 20 10 df 91 69 a4 2c 8e d6 56 53 40 84 9f d3 -
- -a5 40 10 3a fc 00 67 d2 86 12 88 7e 7a 43 88 7e -
- -8f 6d 02 67 d2 7f 4e f6 6f c4 25 54 -[4040 more] -
-id=7 timestamp=64 body_size=4092 content_type=0x09 dest=1 -1.130 s
1.132 s
1.140 s -
- - - -  Video 4092 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 cc 17 61 46 cd 9e 60 -
- -ca 91 39 12 8d 38 49 0f 8e 33 1e 81 69 85 18 79 -
- -d3 99 ad 8c ee df 72 f7 7d f9 9b df fb 34 3b 47 -
- -86 87 f7 b1 bc bb 50 4c 30 21 00 15 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 c9 15 79 ca d1 9e 48 -
- -c6 94 07 25 42 45 22 04 b0 e8 da 70 04 50 8f 92 -
- -d9 99 fb ef d6 ad 66 6e ef 99 7f 6e f5 1f 33 6f -
- -f2 e9 b7 1a fe 4b 3f e8 e2 38 c1 e7 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f c5 09 24 00 f2 40 0a 2c 35 f3 -
- -d7 69 5d f5 18 92 dc e6 80 eb 80 7f a7 4a bf 09 -
- -45 e8 0e a0 0f f4 ea 61 d6 9c 36 13 2d c0 8b 4e -
- -87 27 f5 03 94 a6 5d be 1e 41 88 ae -[3985 more] -
-id=7 timestamp=64 body_size=4037 content_type=0x09 dest=1 -1.142 s
1.146 s
1.146 s -
- - - -  Video 4037 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 ce 16 61 76 c9 9e 60 cc 90 3a -
- -81 06 60 8c 99 5e c6 74 08 c6 5b 3b c8 0e 4c b3 -
- -26 5d ab 8f 33 ed 67 d0 ea a2 eb 46 0b 32 8d 39 -
- -dc ab aa a9 4b 75 95 8a 5a 98 aa 2a -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -1.264 s
1.268 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cf 16 e1 ca c9 9e 48 cc 94 b7 -
- -55 b0 29 cd 05 ca 26 24 ed 9b 0d 8f 76 d9 ee ab -
- -ce 7b 7f ef f6 66 c8 b0 a1 c7 ba 97 57 f3 bd 57 -
- -56 4a fb 43 ea 68 66 c2 9d 83 11 0a -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 ce 17 9a 06 ce 3e 78 -
- -ca b4 c2 87 23 d0 e5 73 a0 a4 cb 24 08 c1 07 2c -
- -47 13 89 d3 22 f2 3f f2 ce bb 29 ab cc fa 1c cb -
- -3a aa e0 cd 26 c4 af 2a 53 21 67 5c -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f dc 09 24 00 f2 40 00 00 03 d3 -
- -a5 3f a7 64 59 4f e9 d3 25 e8 08 bf 17 14 10 bf -
- -12 6f 74 3a 53 fa ac c2 7c a2 90 73 03 a3 6e 62 -
- -55 a8 ac 2d da 77 61 a2 ac b7 ad 4e -[4008 more] -
-id=7 timestamp=64 body_size=4060 content_type=0x09 dest=1 -1.270 s
1.272 s
1.288 s -
- - - -  Video 4060 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 ca 15 e1 be d1 be 61 -
- -86 94 8e 2a 96 b5 09 5b 64 d6 12 84 73 22 22 3c -
- -db 84 8a 9b 67 5b 68 49 fd 25 62 9d 14 c6 5e 69 -
- -79 cd e5 33 f7 55 6f be 5c 2e 99 4d -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 cd 16 b9 c2 cd 9e 60 -
- -c6 94 34 44 63 76 34 6a 1a 42 ea 65 b4 9f 9a 92 -
- -e9 72 12 bf 61 ce cd 7e 1d f7 42 39 a4 c8 9f 28 -
- -b0 b4 bc 6a 79 ab 25 35 18 b0 2e 31 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 -1.415 s
1.420 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c a9 09 24 00 f0 40 9b de 8f f0 -
- -00 26 f8 02 70 60 0a ea 81 02 b8 30 49 86 eb 16 -
- -98 0a e1 19 38 1e 2b 8e c8 76 38 41 26 7b a0 f4 -
- -b3 fe 2e 3e 19 75 d1 5f 5c 53 c3 16 -[3189 more] -
-id=7 timestamp=64 body_size=3241 content_type=0x09 dest=1 -1.422 s
1.424 s -
- - - -  Video 3241 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cd 16 fa 9a c9 96 48 -
- -c6 b4 28 e8 89 36 47 0c 09 5a 27 4d 69 86 b1 89 -
- -48 ff f9 22 1e 39 ce 82 2b 48 85 b0 f0 ec 9c 32 -
- -75 3d ee 7a 87 38 56 a6 6a 10 dc 40 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cc 16 59 be cd 9e 60 c6 94 08 -
- -41 2c ca 8b 39 90 68 45 83 c4 85 55 d0 77 22 88 -
- -bb 9b 9d 8d a9 35 1c 54 d2 79 14 d7 05 22 68 74 -
- -93 52 59 34 39 32 fd 20 62 cb c7 99 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 cd 17 21 9e cd 9e 62 -
- -06 94 b7 73 20 f5 4c db 7c d7 fb 9f ba 44 91 d2 -
- -18 7d bc 36 eb ef e5 4c 94 ac b9 39 47 cd 4c 9d -
- -39 48 c8 cf 2f 34 5b e5 da 88 e7 e8 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 2a 09 24 00 f2 40 02 b7 26 37 -
- -80 24 c2 32 6d a0 f3 d7 75 2c 7e 73 a9 a0 3f 3a -
- -3e 74 f2 d8 43 90 50 95 0e 57 74 7c e9 05 bb 76 -
- -ad 73 00 a7 89 b7 20 1d 10 49 c9 2a -[4044 more] -
-id=7 timestamp=64 body_size=4138 content_type=0x09 dest=1 -1.426 s
1.428 s
1.429 s -
- - -  [fragment] - -
-c7 0c b5 e1 10 8c 24 16 05 b4 3c db 29 d8 04 92 -
- -43 a2 48 b3 f4 08 04 66 a8 31 2c 44 d1 44 0d 20 -
- -d1 8c 08 89 f6 79 20 66 6c 00 00 -
-id=7 timestamp=64 body_size=4138 content_type=0x09 dest=1 - -
- - - -  Video 4138 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cb 16 62 1e c5 96 60 -
- -c6 b4 13 2b 43 da 18 d9 1c f9 ed 9f 14 b6 94 20 -
- -42 85 2a c3 cf cf ca d7 52 3d 25 33 b6 b6 ce 0e -
- -0c 9f 51 c2 0f 49 22 a8 7a 9d 02 93 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cc 16 81 f2 c9 9e 49 86 b4 19 -
- -1d 48 36 6e df 6e f1 17 5a f1 cc f6 9b a5 2d bd -
- -e5 f6 b4 64 2b 18 e7 d2 7b aa 15 4e a3 41 d1 50 -
- -ee aa 51 a9 21 1d d8 a7 11 29 09 b9 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cd 16 11 6a cd 9e 79 86 90 f3 -
- -75 ae 20 ca 09 d5 bd c7 ed df 22 55 46 86 cd d9 -
- -26 66 45 9e 79 17 7a 6d 9e ca 46 86 28 58 71 0d -
- -46 d8 58 9c d0 b0 36 13 0e 85 d2 44 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -1.567 s
1.572 s -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0c f1 09 24 00 f0 40 00 ab f0 00 -
- -0c 18 02 b8 30 05 70 60 35 9d f1 46 4e 0c 01 5c -
- -18 1d 3f ef 4d 7e 27 e6 a9 ac e3 d5 d7 ea b4 33 -
- -13 61 19 20 9b 3f 05 3a 96 00 42 1f -[3261 more] -
-id=7 timestamp=80 body_size=3313 content_type=0x09 dest=1 -1.574 s
1.576 s -
- - - -  Video 3313 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cf 17 92 22 c9 9e 61 8a b4 68 -
- -03 00 87 14 1f 06 b2 ca 64 c7 91 72 21 39 39 9b -
- -2d 34 e2 44 3b 51 c0 5c 32 53 2d f9 5d c1 05 65 -
- -20 f1 ee 0c 0c 07 20 b3 20 e0 82 70 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 16 2a ff f3 40 c0 cb 16 a1 66 cc fe 61 -
- -86 90 37 ce c8 60 78 25 6a 9c 78 79 21 4a 60 c8 -
- -27 e7 42 9f 5c bf 9f e7 e5 08 ba c7 eb 9b e8 6e -
- -6d e5 77 6c 38 44 7b a0 18 73 d2 dc -  [49 more] -
-id=6 timestamp=22 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 1c 09 24 00 f2 40 04 57 9c 95 -
- -67 00 00 5d 27 cf 97 6c 1d 17 b7 77 3c 24 02 93 -
- -e7 4d fc c4 70 3d 04 90 71 21 fa 74 09 3b 2a 4f -
- -a9 d8 b3 58 50 e7 92 42 82 57 12 b7 -[4044 more] -
-id=7 timestamp=64 body_size=4124 content_type=0x09 dest=1 -1.578 s
1.582 s
1.582 s -
- - -  [fragment] - -
-c7 57 06 31 6f b0 6a f4 1d 44 12 eb 3a 4f d8 a8 -
- -8a 81 44 21 6f 20 09 99 18 8c 53 00 00 -
-id=7 timestamp=64 body_size=4124 content_type=0x09 dest=1 - -
- - - -  Video 4124 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cb 17 79 62 cd be 60 -
- -c6 90 ea 04 dd 44 0e a0 ed d4 e3 53 d9 f3 14 2c -
- -b2 c8 26 27 93 96 f5 08 a1 13 ab 11 29 34 87 5e -
- -39 17 0c 9d 71 2a 08 52 ee 19 73 88 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c8 16 6a 02 cd 9e 60 c6 b4 59 -
- -a7 50 7c 7b ca 49 7b eb 5b 7c d6 60 1c b5 dc 66 -
- -db 9a 07 34 42 33 2a 66 47 f6 91 5a d6 9b 9d 33 -
- -77 23 52 a5 92 94 97 90 8f 27 a7 86 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c9 16 c1 fe c9 9e 60 c6 b4 ca -
- -2c ba 62 c0 04 22 be 53 5f ea 2b f3 cd 94 af 33 -
- -e9 47 a7 18 f7 f3 d1 89 9e 08 ce bd 54 a9 59 c3 -
- -eb 41 07 09 23 e2 fc fe 13 96 57 56 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f c2 09 24 00 f2 40 0a 45 20 00 -
- -ae 25 13 52 86 c4 d2 79 f4 b6 21 1a a7 66 c1 7c -
- -9f 3e b7 01 3d 0d ff 48 6f 1e dc 04 1b e5 78 ad -
- -00 c8 14 33 e9 86 7c f9 21 01 3a f8 -[3982 more] -
-id=7 timestamp=64 body_size=4034 content_type=0x09 dest=1 -1.584 s
1.588 s
1.588 s -
- - - -  Video 4034 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c9 16 11 b6 d1 be 61 86 94 86 -
- -3c 21 8c 28 2b 39 07 21 eb 07 27 80 9c 0c 80 52 -
- -c0 c4 3e ff 10 00 36 d7 0a 8c 1b e6 02 8f 4e 91 -
- -3c 71 e3 5f e9 a0 36 71 68 80 43 88 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 cb 17 0a 0a ce 3e 60 -
- -c6 b4 70 df 62 11 01 51 27 e9 18 bc a3 49 5e 10 -
- -44 30 49 ab fe e4 7c bb 97 f9 42 e4 9b b3 7e d6 -
- -ba a0 2c d9 72 dd c8 c8 dd 93 ae 78 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 -1.719 s
1.722 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c ca 09 24 00 f0 40 07 3e ba 5a -
- -5f 00 02 72 d0 38 02 b8 30 05 70 60 17 71 4d a2 -
- -e9 a4 08 8b 00 57 06 1a 69 61 63 00 58 3a b1 ed -
- -b1 54 e1 04 fd 52 8b 17 33 68 60 f7 -[3222 more] -
-id=7 timestamp=64 body_size=3274 content_type=0x09 dest=1 -1.728 s
1.728 s -
- - - -  Video 3274 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 c9 16 b0 7a ce 3e 61 -
- -86 49 c6 06 6e e0 a0 a2 0a e6 82 56 2a 92 7b d3 -
- -6b f0 ef 9e 65 55 18 a8 7c d8 cc a1 56 a7 5c fb -
- -37 31 d7 6b 6d 63 27 5c 94 94 2c 40 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c9 15 d9 be cd 9e 60 c6 94 4d -
- -10 79 d6 72 74 8b 56 5f 76 42 e2 3d a6 c7 3c d3 -
- -de fb 1f 12 b9 55 75 e3 9d a4 57 a7 73 24 31 67 -
- -c1 d4 19 b1 2d 34 10 35 f1 af 6d 60 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 20 09 24 00 f2 40 00 ab de 10 -
- -7f 0e 74 6f b3 49 e1 1d 01 e8 45 ca 4f a4 ac a3 -
- -ce 4c a0 4e 53 65 20 b4 fd 63 ac 84 66 fa ed 4e -
- -3f 38 a5 69 1f 39 3e 7e 0b e2 9c 3d -[4044 more] -
-id=7 timestamp=64 body_size=4128 content_type=0x09 dest=1 -1.730 s
1.734 s
1.734 s -
- - -  [fragment] - -
-c7 18 23 23 9c b6 43 37 00 02 ab 6b 52 6a b1 4e -
- -88 af 47 4c ef 48 8a c3 46 a9 3e 67 80 57 07 b8 -
- -00 -
-id=7 timestamp=64 body_size=4128 content_type=0x09 dest=1 - -
- - - -  Video 4128 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 cc 16 b1 be cd 9e 48 -
- -c6 94 83 81 62 09 6e 8e 8a 92 65 da 09 8b 40 e6 -
- -dd b5 1f 24 0b cf 25 0d e4 9a 24 42 26 4f ce 9b -
- -35 84 e5 fc 7f b9 70 ce 56 2d 2a 87 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cc 16 f1 b2 c9 9e 61 -
- -86 94 6d 6b ba 45 9f ff be 0f 6c d4 0a c2 0f 21 -
- -72 9a 3a 6f d3 86 a8 65 da b0 d8 80 42 84 d2 30 -
- -b0 36 55 02 5e cd 92 b6 d0 52 4c 8d -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -1.871 s
1.874 s -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 cb 16 19 c6 c9 9e 60 -
- -c6 94 a4 74 1d 83 ba 28 b0 66 0f 84 e4 59 d5 52 -
- -57 8c 45 54 de 5e 9a 77 ff 44 2c c8 85 90 af 30 -
- -b5 73 11 c1 e4 14 46 ba 32 a6 a8 b3 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f aa 09 24 00 f2 40 00 0f e0 32 -
- -f0 7e 49 a3 cf 32 40 0a f2 74 64 6f 0d ae d3 48 -
- -40 ce 4e 7d d9 16 15 03 22 88 61 a8 1f 21 ca 27 -
- -00 79 d2 10 6b 82 1a 0d 85 f5 28 7d -[3958 more] -
-id=7 timestamp=64 body_size=4010 content_type=0x09 dest=1 -1.876 s
1.880 s -
- - - -  Video 4010 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cd 16 e1 2e cc fe 61 -
- -86 91 e9 db ad 79 74 e8 1f 1a 5c 59 87 f9 d5 2c -
- -73 02 2b 08 a1 c5 04 c6 1f 3d f5 4f 54 28 9c e9 -
- -cb a5 5b 23 a1 f2 af 65 32 cc 93 32 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cc 18 a2 b2 cd be 78 c4 b9 19 -
- -e7 6b 53 1e b5 50 48 1f 40 69 4b 9b 33 b9 43 63 -
- -40 cb 7b 23 76 fe 77 ec 5e 7a f3 04 67 89 08 81 -
- -65 a1 ad 0e 4c 8b d4 60 db c4 22 a3 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -1.882 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c4 16 3a 0a c8 f6 61 46 b4 ef -
- -7d 22 18 18 72 13 29 62 f8 e6 95 96 6b 73 cc cb -
- -42 3b 77 be 4c 51 37 60 69 aa ac d5 37 e5 1d 10 -
- -14 ac a3 19 90 c2 72 53 dc 9a 1c ec -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0f 97 09 24 00 f2 40 07 47 00 07 -
- -0a b2 eb 56 70 b9 39 f1 f3 a3 e7 47 ce fd f0 5e -
- -a5 3f 0d 49 2f d4 90 8c d9 24 87 be 5d 80 e3 e7 -
- -51 55 a5 c3 8b ad 01 de 65 71 83 e5 -[3939 more] -
-id=7 timestamp=80 body_size=3991 content_type=0x09 dest=1 -1.886 s
1.886 s -
- - - -  Video 3991 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 c6 16 39 5e cd 9e 60 -
- -c6 90 fb d9 9c ae b9 76 7d 2e 82 6e ef eb 53 44 -
- -e3 7c 64 07 b4 26 5d 5e b4 63 7f 97 0d a5 88 b7 -
- -87 75 8f 3d c8 d5 85 29 c6 4a 0a c7 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 c8 17 4a 02 cd be 48 -
- -c6 b4 b8 35 62 84 14 53 13 aa 4f 79 1e 47 ab 2b -
- -b5 84 ff bf ba 95 8a 23 f4 30 1e 1a b2 ee 5a 8b -
- -41 b1 30 68 32 b2 7f 17 b2 ec 10 0f -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -1.886 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 0c 09 24 00 f0 40 00 ab f4 00 -
- -0c 60 b8 41 71 5a 05 0b 84 72 3c 87 43 36 75 b3 -
- -0b 84 16 17 4a 43 f0 5c f5 20 b2 1e 4a 9c 66 a3 -
- -64 75 4d 51 ae 35 9b f5 7e 63 90 7f -[3288 more] -
-id=7 timestamp=64 body_size=3340 content_type=0x09 dest=1 -2.021 s
2.024 s
2.026 s
2.028 s -
- - - -  Video 3340 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 c5 15 da 36 c9 96 61 -
- -86 b4 30 81 29 46 43 42 79 9e 74 19 84 12 36 84 -
- -5b 45 ff 97 fa bd 6a 4b e9 4a 66 a6 c0 de 28 b1 -
- -09 a1 4a 2a a1 1e 42 c8 46 ce 92 a8 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 c8 15 90 ba c9 9e 78 -
- -c4 6d 09 52 a1 04 36 f0 f7 62 0a ee ba a3 c4 73 -
- -b3 b3 c9 b3 2e 3f 59 08 44 d1 f7 dd 75 de 72 d6 -
- -6c 8d 7b 96 b6 39 9b d8 5c 6f 93 cf -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cc 16 e9 7a c8 fe 60 c6 91 b4 -
- -16 53 21 24 15 5c 8a 3e 91 92 be af 7c a9 23 20 -
- -86 14 18 70 a6 6b ab 89 54 26 90 57 fe 91 36 6a -
- -f1 79 21 39 e8 c5 87 75 5c ec 6f 53 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 0a 09 24 00 f2 40 58 8b 11 fc -
- -41 59 58 34 3d c6 89 cb a5 43 0f 00 81 0a 14 1d -
- -04 33 14 a6 92 09 40 48 6a 31 aa bd e9 5d cb d1 -
- -e5 00 06 a1 c9 fd ba ba d6 60 2b ea -[4044 more] -
-id=7 timestamp=64 body_size=4106 content_type=0x09 dest=1 -2.032 s
2.034 s
2.036 s -
- - -  [fragment] - -
-c7 45 f4 5c 1b e5 93 d9 6e 80 00 - -id=7 timestamp=64 body_size=4106 content_type=0x09 dest=1 - -
- - - -  Video 4106 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 cb 15 a9 fe c8 f6 48 -
- -c6 b4 13 11 32 9a 1e 47 95 93 49 9b 66 4d e5 91 -
- -d6 52 11 54 d0 f2 e4 ec b9 ae 0a 8c 64 14 75 78 -
- -46 7b f7 62 84 79 88 87 2f c3 29 95 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cf 16 92 16 cd 9e 48 -
- -c6 b4 75 b8 9a 8d af f7 d6 34 3c c4 55 23 ae dd -
- -4d ff ff 99 65 85 52 47 55 26 c9 67 41 a0 65 e1 -
- -8c 99 91 2c d1 7f 33 96 a2 c3 fe 16 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 45 09 24 00 f2 40 00 00 03 d4 -
- -1a 9d 01 81 93 d5 01 9f 49 fd 3a 54 b3 a7 83 02 -
- -b1 8d 7e c2 fa 4f eb 16 69 fc ba 88 2a c9 91 df -
- -f8 b7 2f b5 ee 32 65 98 c5 65 7f ac -[3857 more] -
-id=7 timestamp=64 body_size=3909 content_type=0x09 dest=1 -2.038 s
2.040 s
2.040 s -
- - - -  Video 3909 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cf 16 d2 32 c4 fe 60 c6 b4 c2 -
- -02 c5 2a 09 32 d9 4d c9 cc c1 52 56 92 c9 08 9c -
- -88 cb 3c 8f cc cb fa d1 2b 3a f3 0a 31 c1 6f 9c -
- -f7 18 bb 74 de 49 c7 b0 94 e1 6e ff -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ce 17 52 36 c5 96 61 86 b4 42 -
- -c1 a3 da 72 6f 23 99 11 e4 21 37 dc 8a 4d 51 97 -
- -ea 4a 59 5b fc e8 46 cb cb 24 c7 91 64 01 9a 09 -
- -8e 92 76 1a fa b1 c4 cc ab fe 92 a9 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -2.173 s
2.176 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 15 fa 0a cd 9e 60 c6 b4 ee -
- -4b 4a 16 61 42 aa 3b b0 eb 4b 5e 24 25 32 28 ef -
- -bd d7 ac ea 49 35 a6 84 70 b0 5f ad 28 a5 50 a2 -
- -6c 84 dc 2d 76 4f 33 24 43 42 1c 88 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 80 09 24 00 f2 40 57 11 11 b6 -
- -c0 59 84 75 07 a7 d3 17 48 a5 0f d4 36 d5 a8 05 -
- -27 f6 56 3e 3a 8d 23 00 8e 1b c2 71 89 a5 67 88 -
- -fe 9d 58 7a a0 5b 48 f8 88 fa 7f 4b -[3916 more] -
-id=7 timestamp=64 body_size=3968 content_type=0x09 dest=1 -2.180 s
2.182 s -
- - - -  Video 3968 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 20 2a ff f3 40 c0 ce 15 6a 1e cd 9e 61 -
- -46 b4 c5 16 80 98 96 91 da 7d 06 e7 ec 89 d7 67 -
- -5c cb a7 c2 34 38 1e 32 fc 38 8d da 5e 44 15 cc -
- -eb 21 e6 e7 33 cd 48 92 4d 35 2b b1 -  [49 more] -
-id=6 timestamp=32 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d3 18 62 02 ce 5e 60 -
- -c6 b5 4f a5 9c 70 15 72 f7 f7 cc 71 25 5b 89 48 -
- -c6 a8 44 b4 e9 e5 3b 0e e7 77 9d 84 ee 75 f2 a9 -
- -ae c3 c8 45 b9 b3 e6 98 c6 f3 fc 1e -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -2.185 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cc 16 5a 1a d1 9e 48 c6 b4 2d -
- -32 81 38 66 cf 64 e5 67 b0 b5 58 ee 44 5f 0c b3 -
- -22 ef c5 32 5d d4 57 56 d4 ea 91 87 e2 c3 28 40 -
- -2f 73 8b e5 11 3c 68 42 e5 e7 9f 6f -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cd 17 21 5e d1 be 49 86 91 26 -
- -a3 0a 61 6e 29 c5 16 64 7c 1e 7d 72 a9 ce ff b1 -
- -cd 47 1a 19 42 17 54 ab 19 26 8d 7a 6d d5 3a 6b -
- -e4 d6 7b 9f 96 73 cc f9 cd 14 e7 58 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 16 31 5a cd 9e 60 c6 91 68 -
- -bf 55 45 ce bf 16 93 a4 ba 25 d1 dc fb 6e 87 fc -
- -b6 14 2d ef 10 ba c8 11 37 48 80 a8 5f 04 dc a3 -
- -24 35 fa c6 e6 5f f5 cf 18 8d e5 fd -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -2.325 s
2.330 s -
- - - -  Audio 105 bytes - -
-47 00 00 90 00 0e fb 09 24 00 f0 41 13 f2 fd 17 -
- -1c b7 a2 e7 45 0d 78 7a 3d 04 09 e1 6b 71 60 d8 -
- -c1 70 6c 60 bc 5f 79 f4 90 f8 5c 60 b8 46 b0 29 -
- -3a 38 29 18 a0 76 87 37 ae d4 f0 65 -[3783 more] -
-id=7 timestamp=144 body_size=3835 content_type=0x09 dest=1 -2.330 s
2.338 s -
- - - -  Video 3835 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 cd 16 7a 0a c4 f6 48 -
- -c6 b4 c3 9a aa 12 a2 13 13 c9 43 2b bb d1 ca 97 -
- -4b 17 ed 1a 29 15 de 17 f9 3e c6 53 e3 22 b5 57 -
- -08 e6 54 8f b6 d6 27 73 20 65 24 16 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ce 16 a1 5e cd 1e 62 -
- -06 91 cb 2f 68 de cf 0d f6 dd 98 c7 f7 7b 1a fa -
- -fd 19 0c 1b ef 20 23 58 55 db 2f 62 2a 0b 82 71 -
- -83 67 f9 f9 c7 73 0e f4 8b e4 cf a8 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ce 16 21 d6 c8 fe 60 c6 95 2d -
- -50 8c d4 ea d3 aa 16 f4 79 b8 0a 94 8c b4 b9 b3 -
- -52 9a 64 50 b5 21 47 02 d1 18 94 0d 43 3a be 86 -
- -46 87 bc 53 94 cb 3a 60 85 18 43 ec -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f fd 09 24 00 f2 41 17 48 73 7e -
- -07 6e f1 22 b0 0e 73 9c e7 39 ce ad 00 88 42 10 -
- -a7 7b 9a 5f cd 3d d0 20 ad 00 eb 5a d6 bd a5 ad -
- -ed 1a 81 48 3e 62 79 dd b8 04 74 65 -[4041 more] -
-id=7 timestamp=64 body_size=4093 content_type=0x09 dest=1 -2.477 s
2.482 s
2.482 s
2.486 s -
- - - -  Video 4093 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 d0 17 0a 12 c4 fe 49 -
- -86 b4 46 51 48 e1 15 91 3c f2 db d0 d6 67 16 d5 -
- -8f cc 89 32 d5 a5 4f 63 6e c3 0c ea c4 ce a2 7b -
- -42 75 6b 2f b7 8c 72 10 54 c0 52 69 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ce 16 e1 ce cd 9e 48 -
- -c6 94 b1 33 6f 6d 4e ff 3e 39 02 14 ef cc 90 a7 -
- -fd 9e 47 4d 3e e6 fa 75 da e8 0c 3e ae 6c 87 47 -
- -49 83 81 06 9c 72 cb 08 40 27 03 6c -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 01 09 24 00 f2 40 00 03 e9 bf -
- -ac 60 1d 8b f8 61 08 42 10 86 0e bf 54 27 80 44 -
- -21 08 67 35 73 78 38 8d 3b 98 ab a6 00 8b 27 21 -
- -8c 63 18 c6 31 b8 d6 50 9d 08 8f b4 -[4044 more] -
-id=7 timestamp=64 body_size=4097 content_type=0x09 dest=1 -2.488 s
2.490 s
2.494 s -
- - -  [fragment] - -
-c7 00 - -id=7 timestamp=64 body_size=4097 content_type=0x09 dest=1 - -
- - - -  Video 4097 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 cd 16 39 6a cd be 60 -
- -c6 91 7a 6c a6 0c 36 61 ca 50 aa 97 cb 5c 96 fc -
- -37 25 cb d7 e3 a5 61 71 1a b1 8b 12 06 2a bb d8 -
- -14 b4 5c ca 77 3c 9a bb 64 83 0b 0a -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cf 16 29 6a c9 9e 61 -
- -86 90 32 7b 7c 7a cd fe 4b fe d7 e7 5f bb e7 be -
- -f8 dd 57 33 b0 53 19 88 89 1e ad 42 5e 16 66 5b -
- -0a 27 0b 05 90 13 8d 0f dc c3 1a f6 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d1 16 d9 be cd 9e 60 c6 94 66 -
- -4c a4 7a 39 da aa fe e6 f6 49 37 97 d6 48 65 48 -
- -f5 22 d8 e7 cf 97 ef 91 42 6c d8 50 63 47 05 50 -
- -ea 1b 96 2e a0 f2 0c 83 f2 70 7c 04 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -2.494 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c e9 09 24 00 f0 40 9b de 8f f4 -
- -00 0b 8e 47 b8 e7 55 24 79 1e e3 93 0c e4 75 e6 -
- -77 1c e3 91 d0 70 0c 8f 71 d4 c5 67 be 4e 5b 0a -
- -bf fa f1 04 80 80 82 51 b3 c2 2d d2 -[3253 more] -
-id=7 timestamp=64 body_size=3305 content_type=0x09 dest=1 -2.496 s
2.497 s -
- - - -  Video 3305 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d0 16 a2 16 c4 fe 61 86 b4 86 -
- -33 a8 33 ce 7c 8e 0b 56 02 0c 31 a5 84 c5 0b df -
- -d8 94 b3 95 63 2e 44 9a a9 d3 12 3f 36 2a c0 8d -
- -cc fd 6c 4e f0 d3 b2 a9 72 7c b6 04 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 d0 16 a1 9e c9 9e 49 -
- -86 94 4e 72 e0 26 30 b2 36 07 b1 42 a5 a6 49 db -
- -6e b9 f4 8e 4d 14 15 7d 0e ae 6a e5 49 56 b1 c5 -
- -66 87 24 93 9b 99 41 f4 87 65 a5 b9 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 -2.629 s
2.632 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f ff 09 24 00 f2 40 00 ab e6 10 -
- -77 84 69 f2 e9 d4 4e cd 11 d9 1d 91 d9 a2 3d 07 -
- -09 6e c6 7d 11 c5 a6 d1 09 3c 76 47 64 76 82 63 -
- -06 cf 83 e6 82 67 e1 9c 61 17 4e 99 -[4043 more] -
-id=7 timestamp=64 body_size=4095 content_type=0x09 dest=1 -2.634 s
2.636 s -
- - - -  Video 4095 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 d0 16 61 ee cd be 78 -
- -c6 b4 91 c3 21 67 b5 91 68 20 28 e9 7f fe fc 55 -
- -60 96 a1 72 99 52 e6 e4 0d 8d 0a db 92 19 19 32 -
- -2a 54 3c bc ce 44 5e 96 e5 5f 66 3c -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 d1 16 12 1a c9 96 48 -
- -c6 b4 fc af ad 58 8f 9b 78 59 69 ea 29 c8 f7 df -
- -9f b3 be 3d 16 72 a1 4f d5 9e 82 54 54 a3 1a c7 -
- -2a 39 77 d9 af 47 e8 ec 35 8f b3 63 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 -2.640 s -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d3 17 49 fa ce 3e 60 -
- -c6 b4 b7 77 8c 0c da 2b 47 70 68 f5 45 47 7c cc -
- -ab 5f d4 d8 c3 12 7a 96 37 61 95 c9 98 aa 18 de -
- -64 52 70 ae b3 7e 8b a5 96 14 c2 29 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 33 09 24 00 f0 40 42 e8 81 d0 -
- -e7 d0 5f 52 7c 2a a9 54 ff fa 9f d5 4a b1 30 e5 -
- -59 ce 15 4c b0 eb 5a 9f d5 4a ac 78 fc 1e 32 18 -
- -61 3c 2b 7c 30 1d c6 92 da ad db 0f -[3327 more] -
-id=7 timestamp=64 body_size=3379 content_type=0x09 dest=1 -2.642 s
2.646 s -
- - - -  Video 3379 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d0 16 a2 16 cd 9e 61 8a b4 50 -
- -c5 4d d1 c8 e4 0e 45 8c a2 a5 9a 5a ea dd b7 9f -
- -99 0d 1c e1 23 28 43 14 62 5a a4 56 2a d1 3f 3d -
- -53 2e 1d f2 77 e4 33 d9 61 bc 94 76 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 d0 16 51 c2 c9 1e 78 -
- -c6 94 9e d7 8a 2c 9d 70 47 a6 5f 0d 58 f6 df 39 -
- -f7 4c 92 66 fc 29 c4 4b 10 94 58 3a ed eb 4c e9 -
- -19 c6 a6 f8 54 84 83 23 0b 1c 62 36 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d1 16 aa 26 cd be 61 -
- -46 b4 e2 b8 28 c1 23 92 fe ca 64 44 ca b2 15 0a -
- -25 95 67 93 5a 53 4d 2c 8b aa 65 90 c8 38 e1 75 -
- -31 8d 56 bd c8 f4 7d 14 cc 8c 8a 89 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 10 34 09 24 00 f2 40 00 00 03 d6 -
- -42 57 4f ec 50 46 05 4a a7 ff f1 c9 85 f0 63 04 -
- -a8 09 4f a4 a3 c9 40 d8 51 0e d8 91 4f ff aa 07 -
- -2a 24 50 9c 0d 16 b5 92 00 75 94 09 -[4044 more] -
-id=7 timestamp=80 body_size=4148 content_type=0x09 dest=1 -2.646 s
2.648 s
2.649 s -
- - -  [fragment] - -
-c7 06 66 48 89 fb e7 ed 99 5b b4 c4 aa 39 58 ae -
- -5f f7 09 e2 00 48 03 1d e2 09 87 06 d6 ee 9e 0c -
- -ab c2 0f 5c a0 99 16 49 6d 88 08 93 bb 95 e3 69 -
- -09 c1 8e 00 00 -
-id=7 timestamp=80 body_size=4148 content_type=0x09 dest=1 - -
- - - -  Video 4148 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d1 17 a1 d6 c9 9e 48 c6 94 ef -
- -9d 68 ae ad f7 3a bc f6 f3 19 94 aa 77 b8 7f 9d -
- -fe 59 cd 8c 47 99 3d c9 12 91 7b 12 8a f2 22 72 -
- -e3 17 b6 70 fc ce ba 7b ec 57 fe 06 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cd 16 9a 12 cd 9e 48 ca b5 51 -
- -62 49 1c dd fa 48 78 cc ea 02 82 dd de 1e e5 9c -
- -d0 e8 3c 42 d7 94 9e 44 44 cd 1c 8a 68 69 5d d6 -
- -10 22 e6 66 64 62 20 fc 12 1c 2a 4c -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -2.783 s
2.786 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 5a 09 24 00 f2 40 02 dc 40 73 -
- -95 21 6d 6d 70 bd 9c 79 40 f8 78 2e 02 00 27 91 -
- -b7 b1 2d 61 80 48 d9 0e e5 83 fd f5 ec e3 ce e0 -
- -11 77 17 b6 8f 44 02 05 bb 9c a3 22 -[3878 more] -
-id=7 timestamp=64 body_size=3930 content_type=0x09 dest=1 -2.788 s
2.792 s -
- - - -  Video 3930 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cd 16 89 ee c9 9e 61 86 b4 e0 -
- -2b 06 3a 71 4d 98 de 35 d2 96 42 ce 35 bb 65 18 -
- -d4 8a 52 55 23 b7 c8 b1 9d 8d 25 86 a1 8f 15 4d -
- -d0 59 1f 6a f2 1b 4e b0 c3 a9 b8 c5 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 16 2a ff f3 40 c0 cd 16 b1 ba c9 9e 60 -
- -c6 94 ba e0 dc c9 2b c2 33 3f 61 35 75 4d 72 c8 -
- -cc b3 5e 6a fd 8e 56 a6 eb 10 15 ee e9 2e 7b f6 -
- -6c d3 ff fc c3 22 3d 42 50 08 00 ac -  [49 more] -
-id=6 timestamp=22 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cd 16 b1 d2 cd 9e 60 -
- -c6 94 19 9b 9e 63 20 a2 ca 7a 18 70 72 f3 66 3e -
- -92 94 5a 9e 7b 66 fa 1c cc c3 4e 07 14 1e d8 0a -
- -71 04 5f a1 89 10 07 0a ec 20 a4 bd -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -2.793 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f b4 09 24 00 f2 40 00 44 00 59 -
- -90 3b 38 f2 36 f2 36 f2 36 f2 40 6d 9a a1 d7 81 -
- -cf b2 9c 9e 3c ae 4c 2b 2b a9 f0 76 d3 c8 d9 c7 -
- -91 b8 2c 76 ba ea 6e fc c4 24 f1 3f -[3968 more] -
-id=7 timestamp=64 body_size=4020 content_type=0x09 dest=1 -2.933 s
2.936 s
2.938 s
2.942 s -
- - - -  Video 4020 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cd 16 69 9e c9 9e 78 c6 94 b4 -
- -0c 06 06 06 ad 51 35 29 72 f9 6f 48 9f 62 da 5d -
- -7d 0d 0c 9d 0a c2 2f ec ca e8 ad 59 5c e9 9b 70 -
- -8b 2e 7b ab 9b 29 a7 29 76 cf e1 1b -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ce 17 49 1a cd be 61 86 71 9c -
- -43 3a b0 f4 08 2a 69 09 64 ad c3 0a 67 77 0f 97 -
- -b5 77 7c 89 56 99 77 9d b4 c6 9a da c1 2d 9a a9 -
- -93 9c 49 d2 f6 41 98 4b 94 a7 e6 df -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f b7 09 24 00 f2 40 00 00 04 50 -
- -5e 62 24 6d e4 6d e2 f6 f2 3c be 27 61 fd ab 42 -
- -07 22 46 de 49 52 60 e3 6a a3 e0 08 32 50 a7 fc -
- -69 8c 5f c5 e7 a7 d1 0d 01 cc 0c 0c -[3971 more] -
-id=7 timestamp=64 body_size=4023 content_type=0x09 dest=1 -2.944 s
2.946 s
2.948 s -
- - - -  Video 4023 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cb 16 62 1e c9 96 60 c6 b4 5f -
- -56 2d 43 61 22 93 a4 5c 58 20 b4 f6 90 c8 81 4b -
- -ec 7c 21 ca d6 63 f8 84 d5 6e 7c 35 8c 44 da 65 -
- -f3 aa 42 4e 51 08 44 94 d6 31 56 1b -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 cc 17 42 16 cd be 60 -
- -86 b4 c2 97 39 6f 28 63 43 01 5d a3 97 fb 3e 70 -
- -6b d2 be bb dd 2d fb 18 ee 5a 8a 36 c0 06 10 86 -
- -66 e7 e1 cd ec d0 ea 55 2e 96 71 f3 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f f3 09 24 00 f2 40 00 00 1d 7f -
- -20 ff 65 1b 37 0b 32 44 42 a3 91 23 6f 23 75 3c -
- -3b 66 8e 48 fb f2 02 de 46 ce 3c 8f a4 8e a4 bd -
- -7b 4e 48 0f 25 18 34 4b f3 53 b8 a0 -[4031 more] -
-id=7 timestamp=64 body_size=4083 content_type=0x09 dest=1 -2.950 s
2.952 s
2.955 s -
- - - -  Video 4083 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 ca 15 42 1e c9 9e 60 -
- -c6 b4 b3 be 67 9f 48 98 01 da 34 3d 14 ae 67 f3 -
- -27 28 e7 91 d3 b9 40 c5 10 d4 fd 40 6a c5 55 06 -
- -14 83 06 12 48 0a 5c 94 eb 12 a6 c7 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d0 16 ea 0a cd 9e 60 c6 b5 09 -
- -cb a6 4e 48 ef 93 57 6c 88 c8 fb 97 7f 39 2a fc -
- -e1 86 56 8c cf 07 51 41 8b dd c1 a7 19 e3 80 97 -
- -a7 56 2e 34 30 c2 c5 ef 40 71 0d 0f -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -3.085 s
3.088 s -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 cf 16 7a 22 c8 fe 60 -
- -c6 b4 4d 15 b3 8f 76 28 73 5b f0 86 40 54 bb 29 -
- -e4 da 4b 3f dc 57 ea fd 9b 6b ec e1 53 aa ca f4 -
- -e4 c8 c4 31 ce 11 2a 3d f2 4c 94 e8 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f f4 09 24 00 f2 40 00 30 20 24 -
- -a7 18 08 2c 38 61 12 36 f2 38 33 a3 ab e6 ec 83 -
- -37 31 75 ee e3 8f 23 a1 48 62 e1 5c 45 7e b2 83 -
- -9e b7 5e 1a 54 b4 0d ed e4 6c ec f6 -[4032 more] -
-id=7 timestamp=64 body_size=4084 content_type=0x09 dest=1 -3.090 s
3.092 s -
- - - -  Video 4084 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 d0 16 b1 66 cd 9e 48 -
- -c6 91 11 13 22 84 06 e0 e1 d1 28 59 c7 1c 9a b1 -
- -1b 7d b9 1e e4 5d a6 76 f4 e6 22 83 35 6c d9 57 -
- -9d 76 29 3d ff 8a 58 7c 15 0f 81 65 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 -3.094 s -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d0 17 19 fa d2 5e 48 -
- -c6 b5 bb 86 b9 59 4a 64 3a b2 94 b2 33 ef b2 cc -
- -cc d1 27 e7 ce 42 40 cb 18 d4 63 35 3a 3a 34 d6 -
- -46 3f 86 62 ab 68 59 1f 9b fe fb 66 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ce 15 81 b6 c9 9e 48 c6 94 1d -
- -06 c1 dc 39 57 23 ad e4 c4 ae 20 3a d1 30 a7 0e -
- -76 5e 3f 58 8d 89 d5 d4 51 43 20 a6 ca 24 6a 1a -
- -0f 06 82 4a 28 3c a2 44 81 2a 0f a8 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0f a4 09 24 00 f2 40 00 00 06 98 -
- -b8 47 1e 47 06 c0 7a d3 a8 db c8 da 03 ff 95 0c -
- -47 df 48 13 26 7e 2d fa 36 f2 39 44 8b 8a c2 30 -
- -63 f5 e0 67 58 f5 cc 97 27 dc ef 91 -[3952 more] -
-id=7 timestamp=80 body_size=4004 content_type=0x09 dest=1 -3.098 s
3.100 s -
- - - -  Video 4004 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d3 17 8a 82 ce 5e 61 46 b4 a3 -
- -2c db 55 14 21 91 8a 8d 42 31 f3 63 03 29 47 63 -
- -4e 11 c7 a4 85 88 04 49 8d 52 d1 d4 84 4c c1 56 -
- -c3 97 21 b5 9f c3 6d 1e 55 da c0 bb -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -3.100 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cf 17 21 62 c9 be 60 c6 90 f6 -
- -d4 b2 fb fb 3c 3b 6a 0e 89 64 6c e3 48 8d 8b 18 -
- -61 bb a2 10 31 5f 02 a6 f8 63 c5 e9 ee de bd f6 -
- -74 3e 59 f3 0f 3c 78 87 73 14 fe b6 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 88 09 24 00 f2 40 0a 29 a0 03 -
- -20 17 1e c1 2d e4 74 47 87 b0 84 6c 3c 8d bd aa -
- -5b 5c 60 54 3d 1c 84 c9 f3 eb 7d ce cf 0f 55 84 -
- -67 85 6d 30 c8 d9 b7 92 e1 22 c6 69 -[3924 more] -
-id=7 timestamp=64 body_size=3976 content_type=0x09 dest=1 -3.237 s
3.240 s
3.242 s
3.244 s -
- - - -  Video 3976 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 cd 16 d1 0a d1 9e 4a -
- -46 71 28 b5 27 c8 b6 63 85 44 8a 55 63 1a 37 c3 -
- -7a 4d f0 cb 53 7c 99 29 10 8f 0e 1f 82 11 f0 3d -
- -ec 3b 0f 34 8a 64 ea de 7c 26 e1 39 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cc 15 c8 c6 c8 fe 4a -
- -0c 6d a6 08 c8 51 18 ee b5 62 f3 72 52 15 8b d8 -
- -49 bc d6 a9 1c d9 9d 69 5e 9f e6 6a a7 f9 5b 86 -
- -d9 e2 c3 73 55 23 37 9f 0b 3f 4f f2 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 cf 17 61 ea cd be 48 -
- -c6 b4 d3 3f 69 3f 6f 5f 7f 01 c7 43 da 64 5d e1 -
- -91 db 97 ee 66 a4 a7 b3 e5 20 a3 31 31 02 64 e3 -
- -92 11 ed 1e 07 07 4f 82 c2 30 c0 90 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c f6 09 24 00 f0 40 00 ab f4 00 -
- -1b 40 33 e4 fa 72 7d 39 3e 9c bc c1 1f 39 3e 9c -
- -a5 41 12 8d 9e ce 51 a7 68 16 69 1e 68 ce e1 51 -
- -25 76 fb 21 3e 98 9a 57 90 78 f4 b2 -[3266 more] -
-id=7 timestamp=64 body_size=3318 content_type=0x09 dest=1 -3.246 s
3.248 s
3.250 s -
- - - -  Video 3318 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cc 14 91 ea c9 9e 48 -
- -c6 b4 22 4e b7 5e 2b 45 31 4c ca b3 e1 a5 69 aa -
- -a3 fd 8f df 43 f6 52 b9 ec bc 90 8b 5e b0 28 0a -
- -46 33 33 7a e6 48 ce bd ad 29 1f cd -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d4 17 49 b2 d1 9e 49 86 94 fd -
- -3f 64 6a d0 98 5c b6 fc ff b3 31 3b 5f 2e 91 d3 -
- -6e a0 a1 8d ad 0c 14 0b d0 78 08 1b 15 91 0c f1 -
- -d4 e8 47 4b 05 5d 52 3e b9 cc df 12 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 46 09 24 00 f2 40 0d 52 1a 7c -
- -c0 03 ce e7 f3 fb 4d cf bf 1a 86 2c e3 c8 db d5 -
- -70 e1 0a b5 07 91 b7 97 42 13 e4 96 b5 01 30 d3 -
- -53 d2 19 d5 98 2c 44 cd bc 90 5a b9 -[4044 more] -
-id=7 timestamp=64 body_size=4166 content_type=0x09 dest=1 -3.254 s
3.256 s
3.256 s -
- - -  [fragment] - -
-c7 b4 30 2b 5b a1 61 09 72 f5 05 bf ad ad f0 0e -
- -66 0a e1 4b d4 29 4b 71 e2 42 9f ce 56 10 ec 0b -
- -4a d6 4d 93 d1 94 df c2 05 99 8f 4b f0 16 71 ff -
- -e2 19 51 08 d4 94 48 99 bc 94 38 63 3e 8c a3 12 -
- -e6 57 c3 0d 58 00 00 -
-id=7 timestamp=64 body_size=4166 content_type=0x09 dest=1 - -
- - - -  Video 4166 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 d1 15 e9 fa cd 9e 4a -
- -06 b4 a7 46 08 2c c3 9d 89 d3 43 94 d6 16 89 bf -
- -29 2d 7f 20 f5 4c 38 54 b8 e1 0c 20 ee b2 f4 a6 -
- -60 e4 40 cf 9b 92 a8 d9 53 52 24 3b -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 -3.387 s
3.392 s -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d4 16 c2 02 c9 9e 61 -
- -86 b4 37 d9 56 80 51 12 03 80 56 83 19 af bd f5 -
- -df fe fe 66 b7 37 5e 7e 66 1b ca 8f 68 a0 68 75 -
- -68 7f 34 e7 a7 39 e8 34 11 27 eb cc -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d4 16 ba 22 c4 fe 60 c6 b4 71 -
- -82 04 0a 0a 42 ee 38 84 16 20 1f 4d b9 b2 7d 3d -
- -0f 9f cb 50 8c e1 1a 70 89 88 a9 0b 37 54 4a 75 -
- -54 e6 12 01 8d 41 8c 08 05 41 c3 c2 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 70 09 24 00 f2 59 9b 80 1a ad -
- -40 03 aa a8 9f 29 90 02 79 1b 79 1c f8 f1 62 2f -
- -af 08 e3 c8 ff bb cd 0d f6 1c b5 e6 0d aa 3e 92 -
- -29 f0 5b ba c0 51 23 72 9f 2b b6 d3 -[3900 more] -
-id=7 timestamp=64 body_size=3952 content_type=0x09 dest=1 -3.394 s
3.396 s -
- - - -  Video 3952 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d4 18 91 56 c9 be 49 8c 91 18 -
- -6b aa 89 a1 80 72 a5 bf 99 e8 59 bc 8c 96 5e 7b -
- -b9 e5 33 ba 79 64 49 1f a1 8a 8c d6 e4 24 94 98 -
- -58 b7 cf de 11 73 39 eb c3 59 0f 68 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -3.397 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cc 17 09 7e cd 9e 48 c6 90 d0 -
- -ab d8 21 ca b1 74 c9 d0 c8 cc 08 0a 16 35 d8 58 -
- -6a 98 f9 3c fd 6e 8a 9a ef 5b 55 d7 45 a1 e7 29 -
- -77 24 3e 57 8d 74 e5 b9 c9 de dc 2f -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -3.539 s
3.544 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 82 4a 09 14 00 74 46 0f 14 0f 14 -
- -3f 6e 97 27 01 70 1f 7c 2b d7 f6 1f b1 e9 b3 12 -
- -20 2e bb 9f 89 b9 5f b5 f3 cc 47 b2 5d 64 77 f1 -
- -af 16 96 28 08 9f 93 99 cf fe 47 ef -[4044 more] -
-id=7 timestamp=64 body_size=33354 content_type=0x09 dest=1 -3.544 s
3.546 s -
- - -  [fragment] - -
-c7 f2 b8 96 18 ef 8b 01 ff 6c f4 1a 61 d5 13 76 -
- -1a e7 8b 79 43 3f 2e a5 cb 81 57 89 24 f2 58 b3 -
- -ce db d8 41 fc 47 58 e6 3b b0 f9 85 49 b2 17 ba -
- -9f 69 95 46 29 a7 40 f2 4d ac bb fb -[4037 more] -
-id=7 timestamp=64 body_size=33354 content_type=0x09 dest=1 -3.550 s
3.550 s
3.552 s -
- - -  [fragment] - -
-c7 12 00 be 91 6d 65 ce c5 ff db 75 58 96 c8 6f -
- -d5 b0 b9 5a 0a f5 17 65 f4 db d2 47 a9 b6 39 ae -
- -63 ce ef 87 8b 34 fe 71 e0 39 91 df 87 b1 07 ed -
- -d6 e8 81 aa a1 f1 b7 52 10 98 69 e6 -[4037 more] -
-id=7 timestamp=64 body_size=33354 content_type=0x09 dest=1 -3.556 s
3.558 s
3.560 s -
- - -  [fragment] - -
-c7 3f 66 d9 41 0d ba 98 54 85 d7 c7 d6 9f 3f bf -
- -9f cb 83 cf 5e 7d c8 68 c2 26 a4 4d 99 60 10 c9 -
- -72 d6 23 00 3b e2 41 9c e3 c3 72 50 31 b8 64 37 -
- -14 08 0e 06 5d a2 1c 5b 98 59 26 d4 -[4037 more] -
-id=7 timestamp=64 body_size=33354 content_type=0x09 dest=1 -3.562 s
3.564 s
3.566 s -
- - -  [fragment] - -
-c7 8b fa 99 1c ba 01 78 2d ba 70 5a 73 e9 13 78 -
- -a8 b1 08 4b bb 07 b3 11 69 8d a0 36 a5 29 44 7f -
- -3e de b4 87 6e 03 83 fd de 66 47 a3 d5 c4 bf 8d -
- -b6 5d a4 42 87 3b 48 44 53 c6 d9 1c -[4037 more] -
-id=7 timestamp=64 body_size=33354 content_type=0x09 dest=1 -3.568 s
3.570 s
3.574 s -
- - -  [fragment] - -
-c7 eb 83 11 70 44 df 8c 41 07 c3 b7 26 62 7f 09 -
- -e7 3c 8d d0 e2 82 12 40 9e 08 85 ce 56 af 00 a8 -
- -5e 5b 1e f7 c8 fc 3e c6 5c 11 ab c9 1c 32 f6 0d -
- -0e 15 1b 34 15 fd 56 03 e3 d4 08 f7 -[4037 more] -
-id=7 timestamp=64 body_size=33354 content_type=0x09 dest=1 -3.576 s
3.578 s
3.582 s -
- - -  [fragment] - -
-c7 eb 80 b4 7b 59 89 a6 53 5f 31 7c 3d 67 c4 cd -
- -3c d0 e7 f8 9e 7e f0 e5 c3 60 69 5b c1 45 64 d7 -
- -38 e5 c6 28 e2 8c 9e aa 4a b7 5f d8 7f 65 13 8f -
- -27 f2 86 30 fd 10 66 c1 72 d1 5e ab -[4037 more] -
-id=7 timestamp=64 body_size=33354 content_type=0x09 dest=1 -3.582 s
3.584 s -
- - -  [fragment] - -
-c7 5d f9 41 f3 43 ba 83 8d 50 75 f9 1f 3b 28 35 -
- -b6 8d 59 e9 64 cb 8c d1 4a fd 07 87 04 19 d5 f1 -
- -19 2b 8b 2a c3 d6 30 9f 84 ea 01 a2 d8 1e 3f a1 -
- -e2 26 82 36 e2 30 03 79 2f 96 cd 63 -[4037 more] -
-id=7 timestamp=64 body_size=33354 content_type=0x09 dest=1 -3.588 s
3.588 s
3.592 s -
- - -  [fragment] - -
-c7 fb 0d 26 03 ac 7c 65 cb bc a2 19 07 d3 59 ef -
- -04 9b 7d 43 4e 17 43 16 93 0c 0d 0f 6a 0c 86 63 -
- -4a d8 13 59 92 8b 13 72 b8 cc f5 dc 89 f5 a4 d9 -
- -bb 99 07 70 d7 f8 92 2c d4 d0 cc 2d - [527 more] -
-id=7 timestamp=64 body_size=33354 content_type=0x09 dest=1 -3.594 s -
- - - -  Video 33354 bytes - -
   - - -    VP6( - -
   -0 1 1 1 0 1 0 0 - -      frame_mode=Intra qp=58 marker=vp61/62 - -
   -0 1 0 0 0 1 1 0 0 0 0 0 1 1 1 1 -
-   -0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 1 -
-   -0 0 0 1 0 1 0 0 -
-      version=8.3 interlace=0 dim=320x240 render=320x240 - -
   - - -    ) - -
-86 00 00 20 2a ff f3 40 c0 ca 16 9a 12 cd 9e 60 -
- -c6 b4 8e 04 15 5e 9a 90 36 10 65 d3 10 4c c4 2a -
- -05 0c cc bb 59 5a 49 91 cd 4d c2 75 1d 19 0d 70 -
- -24 76 27 9e 18 50 f1 60 08 94 78 d3 -  [49 more] -
-id=6 timestamp=32 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ca 16 e1 72 cd 9e 60 -
- -ce 91 db 56 06 14 b0 f1 f3 6d 06 c2 bd 61 4e 16 -
- -02 85 59 82 d1 fc a7 c3 b7 22 7f 26 3a 69 bb 63 -
- -81 d0 4e 2d 2a 40 6e 1c a1 d4 48 6b -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c9 16 b1 52 d1 9e 60 c6 90 f6 -
- -06 6c e3 90 41 02 8c 86 52 3a d5 cc 10 6a db e9 -
- -13 7c e9 17 a5 b5 cc e3 47 67 90 5b 3a 20 49 ce -
- -ba 86 89 cb 3b b6 49 e6 42 44 68 91 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0c a7 09 24 00 f0 5a 9b 93 7f df -
- -c4 61 63 db 7a 2c 61 4d 2c d2 ca c4 4f 8d 38 0d -
- -90 b9 3c 21 ff af bf ff 1e 1b af cf 5d 85 6f f9 -
- -9e 9f 70 f6 d5 ed 7f f8 ed f7 66 05 -[3187 more] -
-id=7 timestamp=80 body_size=3239 content_type=0x09 dest=1 -3.596 s
3.598 s -
- - - -  Video 3239 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c9 16 e9 aa cd 1e 60 c6 94 78 -
- -ac d9 bc fd ea 6b 9b 74 40 d2 1b 8a 88 b9 6e 4b -
- -54 db 7d e9 c8 41 0a 4a a3 28 98 4c c4 ca 91 d0 -
- -62 43 26 4a fe cb 09 81 93 26 19 60 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c8 14 c9 aa d1 9e 48 c6 94 a5 -
- -44 c8 d0 29 8c ff ce 7d f2 da 89 b9 59 3d 8d 4a -
- -1b 4f 33 35 2f 32 24 3e e6 39 fc 31 d4 58 a4 44 -
- -37 63 04 4d 4b e9 43 af ba 9c c3 a0 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 cf 17 49 b2 c9 9e 61 -
- -86 94 40 bc 54 be 11 7c 8a ba c6 f3 be b2 cc 8b -
- -d6 5c cd 9a b5 22 b0 bf be 47 44 98 66 71 84 90 -
- -50 80 98 82 ab 0a 0d 26 a3 5b 8e 1e -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 41 09 24 00 f0 40 75 61 c9 05 -
- -19 e5 58 f0 ff c6 5a 3f 86 48 28 ff ff cb 5d 6e -
- -7f 93 96 f9 be ff cf ed 60 20 00 00 00 02 9e 7b -
- -08 1b d8 2e 02 0b 43 90 7f 01 55 a8 -[3341 more] -
-id=7 timestamp=64 body_size=3393 content_type=0x09 dest=1 -3.600 s
3.602 s
3.603 s -
- - - -  Video 3393 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cc 16 d9 be cd 9e 61 -
- -86 94 38 69 2a 03 10 6c 4a 15 22 d9 23 d2 45 03 -
- -70 e9 01 d5 86 39 65 77 a6 fc ff b7 52 25 85 85 -
- -20 7c 52 60 04 c1 5a 46 26 d7 71 c1 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 16 d1 72 d5 be 61 86 91 62 -
- -f2 22 6e 32 2e 36 9e 1b 5f d5 52 ff 7f ea bf 7d -
- -dd 6e fb f0 cc ce 29 92 10 b0 62 e3 98 54 36 0e -
- -dc 43 63 3e 29 f1 4b 3a 76 2d ca d3 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -3.689 s
3.694 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 25 09 24 00 f0 40 04 4f f4 20 -
- -5a 04 55 c3 56 2e 80 81 55 55 55 85 f9 aa b5 61 -
- -cf 2a e3 2a 68 ac b4 63 55 81 37 66 60 67 a7 b5 -
- -6c 0e 95 c3 c5 3d c3 d4 98 5a d9 5f -[3313 more] -
-id=7 timestamp=64 body_size=3365 content_type=0x09 dest=1 -3.696 s
3.698 s -
- - - -  Video 3365 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 ca 16 80 ce cd 9e 78 -
- -c6 6d 00 a9 ea b1 09 9a 7c 77 8f 4a 3b 5f d5 b9 -
- -7d f3 e3 6d 7e f8 b6 c9 95 46 70 e7 57 95 cd ca -
- -71 16 ae 9a 15 6f 3c be 12 a6 7d 43 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 cb 16 62 12 d1 9e 61 -
- -86 b4 70 68 23 db f3 e9 2e 58 c1 83 89 02 1e 2e -
- -8c c8 51 9d bf 96 ef 56 fe 3b df bb 35 bd c5 1d -
- -b3 b3 02 b6 6f 6e 7d 6e 7d f4 d9 da -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 1a 09 24 00 f2 41 18 13 b4 e1 -
- -a2 de b1 32 7b ce 6c 7f 1e 9e c7 84 fe 77 f3 ff -
- -f5 7b 61 f3 76 0d f3 6c ed e2 28 73 c3 39 2d 4f -
- -9d 5b 2d 71 8f 34 03 7d 22 a0 f8 98 -[4044 more] -
-id=7 timestamp=64 body_size=4122 content_type=0x09 dest=1 -3.702 s
3.702 s
3.704 s -
- - -  [fragment] - -
-c7 28 02 76 55 d7 e3 53 ee 3b 46 bb 20 1b 20 65 -
- -5a 7c 5f df ac 03 04 64 00 00 00 -
-id=7 timestamp=64 body_size=4122 content_type=0x09 dest=1 - -
- - - -  Video 4122 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cc 16 59 f6 cd 9e 49 -
- -86 b4 0d 9b 14 c3 47 65 b1 90 8f 94 83 a1 2b 92 -
- -9a 5d b4 f7 9b 66 94 a6 e5 b1 9a 79 52 8b 33 a3 -
- -aa 8b df 54 df e5 14 50 e9 e1 03 34 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cd 17 3a 22 d1 be 48 cc b4 57 -
- -31 4e 11 c5 36 22 48 77 06 7a 2b 00 61 96 08 2a -
- -f4 ce 7f b9 79 65 d9 f7 9d 25 a1 4a 83 d9 10 8c -
- -cd 9a 96 b8 a3 ee 46 99 09 df ac 43 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 16 ea 0a cd 9e 48 c6 b4 1a -
- -29 60 f5 65 3b 02 64 9f 91 7a be 30 44 08 9d 19 -
- -f2 af ff 95 cc d0 ae 62 88 b8 7a 91 e9 38 79 43 -
- -53 49 d4 38 75 e8 56 a2 45 61 a7 8e -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c 76 09 24 00 f0 40 2d 60 42 f8 -
- -03 43 e2 2d d3 09 4f f5 f0 8f a7 d2 9f d3 97 75 -
- -3a 31 33 7a 7d 27 f5 0d 8e 73 90 0a 17 c8 6d f3 -
- -19 e8 08 37 07 bb 1e 83 4e 4c c1 ba -[3138 more] -
-id=7 timestamp=64 body_size=3190 content_type=0x09 dest=1 -3.841 s
3.846 s
3.848 s
3.850 s -
- - - -  Video 3190 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 ca 17 19 ca cd be 60 c6 94 73 -
- -8c e5 76 32 8f 5a 23 36 46 ce 5b 79 5c 8d a8 9b -
- -ab 94 c4 9c 8c 84 22 94 53 57 23 50 8e 56 4d 51 -
- -48 8e ce bd ec 74 47 ba ad 73 21 98 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 c8 15 b1 a6 cd 9e 60 -
- -c6 94 e3 b4 0f e5 c8 0a f5 37 5c ca 9b 99 f9 ba -
- -ea de 8b d9 a4 49 df 3e 31 0c d0 8d 84 e7 32 e9 -
- -23 1d f9 bc ee 86 53 45 69 cc bb 5e -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cc 15 f2 22 c8 f6 48 -
- -ca b4 8e 2a 6c f2 a5 d8 e9 44 7b 4e ef ff 36 9f -
- -75 59 a8 70 5f 96 e6 99 4b 2c 73 19 94 eb 4c da -
- -e6 64 49 c5 9e fa 2d 30 97 32 8f a5 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 05 09 24 00 f2 40 00 ab d2 29 -
- -9a 46 e9 32 fc 81 a2 3d 70 08 79 13 d6 b6 37 39 -
- -96 7a 0d 2b 60 84 e1 50 c4 fa 22 08 c5 8a 40 1b -
- -17 f5 25 c1 87 33 e6 b0 dc 16 72 62 -[4044 more] -
-id=7 timestamp=64 body_size=4101 content_type=0x09 dest=1 -3.852 s
3.854 s
3.856 s -
- - -  [fragment] - -
-c7 d5 af b8 00 00 - -id=7 timestamp=64 body_size=4101 content_type=0x09 dest=1 - -
- - - -  Video 4101 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 cf 17 32 1a cd 9e 60 -
- -c6 b5 40 c7 0d 17 22 4c e9 ee 20 f3 42 59 52 ac -
- -ff b5 5c e1 7f c2 9f 9f 66 71 d0 30 67 24 82 d8 -
- -98 d7 0a a3 7c d7 d9 90 b8 7a af 82 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cd 16 89 f6 cd 9e 60 -
- -c6 b5 2a 82 21 64 2e cd 5c 6e cc c0 c4 30 e5 3a -
- -89 39 1d 2b 6b 5d 6c 75 42 21 7c 85 22 25 95 dd -
- -e5 a8 90 87 07 69 43 c0 db 82 73 1d -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cd 16 19 8e c9 9e 60 c6 91 b4 -
- -73 12 50 19 cb a5 5b 5c a0 42 15 d7 43 24 4f 48 -
- -88 85 95 22 bc 40 00 ea ce 10 22 07 74 d1 56 a3 -
- -b4 ab 61 76 91 b1 14 08 80 3e 85 a0 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0c aa 09 24 00 f0 40 9d 19 fc 24 -
- -7f ee f9 00 05 f4 a9 fd 3f a5 4f f0 d8 a5 59 4f -
- -fc 3e 95 3d 2a 7d 35 0d 74 97 1b a5 4f f0 b8 d4 -
- -2f f2 1f 5c 50 fd 9a c9 42 32 0a a2 -[3190 more] -
-id=7 timestamp=80 body_size=3242 content_type=0x09 dest=1 -3.858 s
3.860 s -
- - - -  Video 3242 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 cf 16 89 6a c9 9e 78 -
- -ca 91 19 8b 78 20 22 a1 5f 0a ab 17 87 47 f5 06 -
- -8d 9b 91 36 70 cc b7 8c f1 fd 57 85 23 5c da 36 -
- -9a e4 4e 73 6a cc 3c 9a 17 31 84 86 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cf 18 11 aa c9 9e 78 -
- -c6 95 82 8e 8e ca 42 51 56 3b 3a e7 9c 85 54 63 -
- -52 33 1d 7b 29 f9 9f 66 ef 48 ee 79 79 e9 8c 91 -
- -49 10 8c 5a a5 d8 f5 9b 75 28 62 a6 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 0a 09 24 00 f2 40 96 4d a4 f0 -
- -1b 57 6f 63 15 d1 e9 7c 09 22 2f 33 ec 51 66 93 -
- -2f e1 ca 01 6a 13 a1 74 00 83 c4 02 02 ae 51 e1 -
- -2a fd cc d6 23 95 43 b3 44 76 6d 4a -[4044 more] -
-id=7 timestamp=64 body_size=4106 content_type=0x09 dest=1 -3.993 s
3.996 s
4.000 s
4.002 s -
- - -  [fragment] - -
-c7 22 e9 6d 34 92 55 a7 e0 00 00 - -id=7 timestamp=64 body_size=4106 content_type=0x09 dest=1 - -
- - - -  Video 4106 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c9 16 ba 16 d1 be 60 c6 b4 47 -
- -2c 8c b1 7a 6b 52 ad 8a 06 20 28 ec 44 c5 33 42 -
- -ff e2 29 9d 35 de 21 b2 36 7e 9c de ee ed 52 32 -
- -95 ca fa e7 09 53 b6 31 4e e4 87 ef -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c9 16 09 ca cd 9e 48 c6 94 57 -
- -12 f0 76 63 28 28 1a a1 2c 13 ed 0c c6 3c 58 27 -
- -ca f4 8c ca 29 c2 22 55 5c c8 f3 ec dd 63 47 2c -
- -9a f9 cf e5 2e 55 4f 08 27 e4 32 a5 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f ae 09 24 00 f2 40 07 4a 85 d6 -
- -d3 7a bf 36 55 0c a0 e9 0d 0b 36 49 03 86 a0 90 -
- -4e 11 6a 4a cd 91 f7 56 4c ec c4 16 ca ff 3e 85 -
- -b1 7a 28 0e 89 4c d5 24 b1 b4 4f 12 -[3962 more] -
-id=7 timestamp=64 body_size=4014 content_type=0x09 dest=1 -4.006 s
4.006 s
4.008 s -
- - - -  Video 4014 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cb 16 12 1e ce 3e 60 c6 b4 5f -
- -1e 4d d4 39 c1 88 e0 80 81 fa e4 b0 ad 38 e7 9f -
- -c3 9f 93 91 3e 70 99 4d 75 ea a3 92 83 a3 bf 9f -
- -32 a4 4a ca a9 7f b9 97 4c c5 31 96 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -4.145 s
4.150 s -
- - - -  Audio 105 bytes - -
-86 00 00 16 2a ff f3 40 c0 cd 15 b2 12 c9 9e 48 -
- -c6 b4 f7 4e 62 2d 73 3e fc bc 6d 55 20 30 a7 14 -
- -ae 5c 87 6f 23 30 50 e2 03 35 50 63 5b fb af e5 -
- -47 dd 16 84 c8 35 05 04 c0 70 40 1e -  [49 more] -
-id=6 timestamp=22 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d1 17 8a 1a cd 9e 60 -
- -c6 b4 84 32 71 e0 a7 44 74 a5 99 a7 30 40 c5 07 -
- -10 c5 42 6f 15 36 e2 fb 88 ff 28 44 45 22 19 25 -
- -12 86 ef 21 94 24 e4 25 85 6d 3b bd -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c 9b 09 24 00 f0 40 9d 10 8f f0 -
- -0c 0f e0 1e 9d 49 fd 3a 93 fa 75 27 f4 ea 4f e9 -
- -d4 f3 8f 40 3f 58 9c 16 3f f5 63 33 f5 00 95 f5 -
- -78 4e 1f 51 59 17 16 d2 61 db 3d 3a -[3175 more] -
-id=7 timestamp=64 body_size=3227 content_type=0x09 dest=1 -4.150 s
4.152 s -
- - - -  Video 3227 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cd 16 c1 76 c9 9e 61 86 90 fa -
- -f7 51 0c 3d 15 4d 52 86 33 eb 7c 23 e1 03 08 ec -
- -06 11 0d 32 4b 9d e1 f4 e2 85 d1 13 02 39 21 a0 -
- -ea c8 af 55 f9 41 24 b6 b9 94 fc 78 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cd 18 0a 0e cd 9e 48 c6 b4 d3 -
- -1c 0d fd 06 1c 50 81 14 c7 45 0c 13 bd d7 18 d4 -
- -f3 9f 4e ba 5e fb dc 91 8c 9f 2b c6 29 7c 8f 32 -
- -6c 2d 44 b4 24 ed 24 a8 f1 ae 90 18 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 26 09 24 00 f2 40 00 ab e0 0c -
- -0d 84 16 50 76 72 24 72 8d 48 e4 48 df eb 88 a9 -
- -e3 f6 9e 6f 3e 0d 61 db cb 48 2a 46 df f6 d0 a8 -
- -43 90 23 7c d0 aa f3 d0 0e 38 c8 05 -[4044 more] -
-id=7 timestamp=64 body_size=4134 content_type=0x09 dest=1 -4.156 s
4.158 s
4.158 s -
- - -  [fragment] - -
-c7 95 ae 7d 14 19 f2 5a 3d 22 bf c9 a3 27 de 22 -
- -31 22 00 1d 69 5c 83 c4 c0 2b 44 45 b7 0f c6 3d -
- -07 be 40 5f 00 00 00 -
-id=7 timestamp=64 body_size=4134 content_type=0x09 dest=1 - -
- - - -  Video 4134 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c7 16 d9 66 d1 be 60 c6 91 1a -
- -5b 04 5a 73 58 7e 5f a5 43 4b e4 66 fe f3 e1 ae -
- -6d 26 a5 74 1a 9a 34 a8 dc 8e fa d5 1f 35 36 fc -
- -08 ac 31 ef 3b b6 eb f3 70 26 18 18 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 c6 15 a9 56 c8 fe 60 -
- -c6 91 9d a4 3e ed 35 f1 02 d5 c4 06 45 0b a5 ab -
- -2e 56 7c 0a ba dc ab 21 df cf 2f 2b f5 0c 86 85 -
- -d3 83 b0 35 04 24 81 0e 65 e7 91 4a -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 -4.297 s
4.302 s -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ca 17 91 86 d1 9e 61 -
- -8c 90 6c 08 20 be d8 7c 86 32 be 29 8a a0 34 76 -
- -d5 09 01 c5 82 11 79 3d 1d 5e 15 b9 ec 6f fe 8c -
- -f0 b9 1a 12 92 43 64 14 4f 49 22 0b -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 8c 09 24 00 f2 40 00 07 c4 31 -
- -23 78 89 1b 79 36 12 82 07 0b 4b a9 f8 cf d7 07 -
- -61 2d fc 40 3b 94 25 65 6f aa 7d 83 3a 6f 93 7f -
- -bd 7b fe 79 1e 30 06 6d dd 89 80 c7 -[3928 more] -
-id=7 timestamp=64 body_size=3980 content_type=0x09 dest=1 -4.302 s
4.304 s -
- - - -  Video 3980 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c6 17 8a 02 ce 3e 60 c6 b4 fb -
- -18 04 8c d9 16 2a fb 55 53 15 24 68 43 89 56 56 -
- -2b d6 ad e2 0c 87 48 bd b4 7a 87 08 cf 3f 10 7c -
- -36 b0 8a fb 6c 24 1d 18 60 50 19 40 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 c2 17 aa 12 cd 9e 48 -
- -c6 b5 67 cf 4f 12 d3 f7 71 f1 e3 29 b4 10 83 19 -
- -03 53 d9 b1 38 45 45 17 3b a4 a6 6c 74 8c b8 0e -
- -21 ba 8a 3c a2 ef 22 22 04 e0 80 6e -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 -4.308 s -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 be 15 99 36 d1 be 48 -
- -c6 90 70 1a 74 db ad 8b a8 06 44 37 a4 09 c7 b2 -
- -42 35 e2 46 47 84 7a 3d ba c3 f2 d0 98 fd 3f 3d -
- -a9 2a d0 b0 e3 b2 a0 31 7b c2 53 22 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0c e4 09 24 00 f0 40 00 ab f4 00 -
- -72 04 aa a0 01 a8 0d 65 59 44 27 ff 5a f4 ec b0 -
- -2a 75 e2 7f d5 4a a9 ff 9d 5e 18 88 4f 2e 5a 1f -
- -08 d7 2f 50 f5 f8 87 8b 30 51 f1 e3 -[3248 more] -
-id=7 timestamp=80 body_size=3300 content_type=0x09 dest=1 -4.308 s
4.312 s -
- - - -  Video 3300 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 c2 16 09 5a ce 3e 60 -
- -c6 90 46 0f 25 cb 56 36 a8 9a b9 81 2d 71 94 48 -
- -b5 60 e2 5b 60 7f 4f 32 2c cd 1b fa 70 c4 04 fe -
- -8b a7 6b ba 31 e8 fd 46 52 5c 86 d8 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c4 17 8a 1a cd 9e 48 c6 b5 05 -
- -41 9d 9d 76 e6 b4 ad 97 d9 e3 38 82 26 0c 43 95 -
- -ce 5e 72 e7 ad e2 88 91 54 76 7b ae f4 67 5a a1 -
- -cc 08 71 12 24 a6 30 99 8c 87 46 a5 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f ee 09 24 00 f2 40 00 ab e0 40 -
- -01 dc ef 7c e0 25 1b 51 53 52 0a 38 4a d1 b7 91 -
- -b3 91 b6 24 7d 09 3a 73 c9 64 71 47 61 38 8a 0c -
- -6e 48 e3 c8 e4 c2 1f a5 96 70 f9 42 -[4026 more] -
-id=7 timestamp=64 body_size=4078 content_type=0x09 dest=1 -4.314 s
4.316 s
4.316 s -
- - - -  Video 4078 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c0 16 a1 c6 ce 3e 78 c4 94 ab -
- -17 1e 14 9a 9a eb ca 2c ef 07 08 5a 07 36 a1 48 -
- -e4 cd 07 31 9a 40 40 6c 47 bc 2a 71 bc f2 cb 8c -
- -79 db 5e db d4 37 81 46 12 70 ce 50 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c0 16 61 b2 ce 5e 60 ca 94 c7 -
- -8e 52 bb 57 bb f0 13 11 8a a4 64 31 9e 49 2e 46 -
- -da fc 36 e0 53 23 23 a4 59 91 91 9c c8 e1 e4 56 -
- -93 68 77 57 43 88 64 db a5 b2 c3 25 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 c1 16 2a 02 cd 9e 48 -
- -c6 b4 08 80 8d 45 63 67 9d 43 ad 2e 0c 12 26 20 -
- -a1 07 fe 67 82 35 74 58 81 28 00 80 9c 67 62 6d -
- -d7 45 e2 21 f9 6f 99 0a cd f5 84 52 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c 97 09 24 00 f0 40 00 ab f2 41 -
- -24 04 a7 f4 fe 95 db 5a 47 fd 3e a5 3f 84 fa 94 -
- -fe a6 d8 85 81 ca c0 49 9f da 0a 56 bf 3b 4c 23 -
- -1e ed c6 f4 b1 1d b4 e5 e7 ec e5 29 -[3171 more] -
-id=7 timestamp=64 body_size=3223 content_type=0x09 dest=1 -4.449 s
4.454 s
4.454 s
4.458 s -
- - - -  Video 3223 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 c3 17 62 22 cd 9e 60 -
- -c6 b5 45 8a 57 61 9e 71 67 8f 08 60 94 81 6d 2c -
- -46 12 5b e9 68 ca 4c 04 19 13 66 8e 5f da 91 88 -
- -8b 22 d5 a3 61 11 a3 25 13 75 c8 a7 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 c0 15 a1 7a ce 3e 60 -
- -c6 90 6c c4 64 9c 91 44 22 d0 e8 3c af 1f 60 76 -
- -35 4e 94 60 1c 4b 93 a1 c2 2d 08 44 2e 11 7f 3c -
- -d6 67 9e 6f c8 c6 12 8b a7 14 24 52 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 48 09 24 00 f2 40 97 b3 b3 76 -
- -f0 20 0b 8d d4 7c f1 43 88 1e 3b 36 47 66 d2 c7 -
- -49 db 94 84 40 14 28 52 83 df 52 c9 9d 9b 53 fe -
- -04 79 31 05 41 0b 2c 30 ff 2e 90 85 -[4044 more] -
-id=7 timestamp=64 body_size=4168 content_type=0x09 dest=1 -4.460 s
4.462 s
4.462 s -
- - -  [fragment] - -
-c7 e1 bb 1e 80 44 9e 36 29 28 23 c6 f2 27 95 53 -
- -b1 be fa 6d 38 2d bf d3 ee c3 b7 8a 05 97 76 31 -
- -62 98 65 fb 47 ff 3b 90 5a bd 9a 6c dd bf e6 6b -
- -91 01 7e ad dd c2 6a e2 5a 5b 20 45 08 46 c0 47 -
- -7d 66 d9 8f cd 70 00 00 00 -
-id=7 timestamp=64 body_size=4168 content_type=0x09 dest=1 - -
- - - -  Video 4168 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 c4 16 79 c2 c9 9e 60 -
- -c6 94 79 7c 48 23 0c 1c 1c 6d 69 b4 86 af ce 92 -
- -42 99 ae 76 7e 47 58 c9 69 2e 6a d4 d2 19 5b b8 -
- -e7 99 c4 d8 60 6e 2d 4c ba 75 3a b9 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -4.601 s
4.606 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c5 15 e9 ca c9 9e 60 c6 94 37 -
- -90 35 12 4a 6c 00 50 11 1a a9 7a 8e 82 9d 18 80 -
- -c7 23 4e c7 2f 2b f9 79 6a f9 3d 33 cb e6 ac 53 -
- -32 8e 3e 26 9a 23 94 e8 25 48 54 24 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 c8 16 b1 ee c5 96 60 -
- -c6 b4 df 55 0a 06 3c 3d 16 88 59 7f 26 45 53 ff -
- -68 53 ff af fe fe dd bb fc cc b2 f3 37 db 3c bb -
- -c9 d1 6e fb 94 7f 4a 85 a5 5a 59 8f -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c 9a 09 24 00 f0 40 10 43 3a bd -
- -85 9b 40 ba 4f e7 d2 a0 ca 3a 93 fa 20 ee d9 87 -
- -98 88 9e 49 fc fa 51 73 e5 89 d2 65 64 0e 06 3c -
- -bb cc 82 52 30 43 c9 f8 b0 70 5a 83 -[3174 more] -
-id=7 timestamp=64 body_size=3226 content_type=0x09 dest=1 -4.608 s
4.610 s -
- - - -  Video 3226 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 c8 16 81 96 cd 9e 48 -
- -c6 94 55 7b e9 62 58 29 03 e1 12 1f e3 ed 0d 89 -
- -70 ea 74 71 8c 1e 4e 59 c7 e7 24 f2 cf 27 b2 25 -
- -73 51 e5 b0 4d 3c 8f 95 69 76 6a e5 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c9 17 69 92 ce 3e 60 cc 90 68 -
- -ce 10 18 87 35 35 01 58 75 18 3c 7b a9 2d 33 47 -
- -39 7e 49 36 6b c2 5c e1 8d 11 d0 60 60 a1 c5 0c -
- -30 21 34 b8 60 40 90 11 b1 09 40 44 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f f3 09 24 00 f2 40 0a 27 2a 8e -
- -00 01 61 bc 6c d1 22 36 e6 2d 41 f8 01 91 86 da -
- -b3 64 76 b5 c4 0e fc 6b 40 b3 64 76 dd c2 f9 0d -
- -08 97 18 87 d2 fc b7 31 48 be be 04 -[4031 more] -
-id=7 timestamp=64 body_size=4083 content_type=0x09 dest=1 -4.612 s
4.614 s
4.616 s -
- - - -  Video 4083 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c6 15 99 c2 cd 9e 60 c6 94 18 -
- -35 f6 a6 cd 65 d3 ff eb b3 6c 95 73 13 0e fd fb -
- -bd f3 d9 89 4e a3 37 33 86 85 42 1b 31 8a 47 14 -
- -38 88 79 1e 87 3a e1 21 3c 05 4e 06 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ca 16 d9 5e cd 1e 60 c6 90 33 -
- -8c 15 90 3b 13 ba 64 a7 91 12 1e f4 a0 83 e7 27 -
- -4c e6 69 a2 70 9e 1f f0 18 61 01 5c 20 90 ec 1e -
- -2a 9b 56 1a 15 76 bb 11 9d 09 1c 1e -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 20 2a ff f3 40 c0 c9 16 b9 b2 cd 9e 49 -
- -86 94 61 c3 b5 4d b1 44 d9 b7 19 d1 1e ab b0 65 -
- -52 52 bc fe 99 c4 30 2d 19 a6 a4 47 83 52 1f 35 -
- -31 66 3c d9 64 e1 2d be 68 5a 6a c6 -  [49 more] -
-id=6 timestamp=32 body_size=105 content_type=0x08 dest=1 -4.755 s
4.760 s -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0f 80 09 24 00 f2 40 10 11 01 a6 -
- -42 df 22 76 6c d9 1d b6 2a 39 20 7c ea c2 78 ec -
- -f8 18 9b e1 0b 20 8a ee 65 68 0a 06 88 ec f3 51 -
- -85 09 a2 1c 72 c2 09 98 1a 38 09 ef -[3916 more] -
-id=7 timestamp=80 body_size=3968 content_type=0x09 dest=1 -4.760 s
4.762 s -
- - - -  Video 3968 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 c9 15 a9 ae c9 96 60 -
- -c6 94 7b 33 bf f0 fa f4 56 5b 5c 7d 24 28 af a1 -
- -53 e9 a1 66 75 36 86 6c 3b 6c 00 48 29 03 ef 3a -
- -91 b2 36 8e 84 38 97 88 64 90 40 14 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cd 15 c1 e6 c9 be 60 c6 b4 aa -
- -0c 40 02 30 55 fa 79 31 45 20 4a 56 f7 f2 92 e6 -
- -92 15 9b ff cb 94 ff 57 cf b0 51 cd 16 a5 45 2b -
- -39 29 5a b1 63 6c 2c 38 74 0e 2e 41 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d1 17 f9 be cd 9e 49 86 95 1c -
- -8a ad 82 c6 57 94 78 59 27 95 d0 9c e5 29 7c 8d -
- -b3 a4 66 5f 0c c4 fd 52 26 32 87 fa 75 fd d4 16 -
- -65 03 0a 50 a1 69 40 9c 3f 13 eb a0 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -4.766 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c ac 09 24 00 f0 40 00 ab f2 00 -
- -0b 93 e7 27 ce ec 97 4a 3e 74 7c f6 f9 0a 3e 74 -
- -7c fd 04 4a d9 41 87 3e eb d8 34 e7 c7 4d 6b 44 -
- -51 00 a6 c0 2d ad 35 a2 3b 21 e3 1b -[3192 more] -
-id=7 timestamp=64 body_size=3244 content_type=0x09 dest=1 -4.768 s
4.770 s -
- - - -  Video 3244 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 cc 14 f1 ee cc fe 60 -
- -c6 b4 a8 af 56 63 1b 6a 57 5c c8 fd 3c a5 a8 c8 -
- -54 8d c7 bf f7 84 a6 9f 93 24 39 d5 8e b2 b0 71 -
- -06 66 19 b8 29 9a ff 78 2d c2 aa ec -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d3 16 81 d6 cd 9e 48 -
- -c6 95 fb 2f 5d ae 31 cb 79 a8 8e d8 dc 98 f5 cf -
- -6e 97 c9 63 4c fc 16 63 9a a2 13 c2 3d ec 81 a1 -
- -1c 84 6b c3 b2 12 db a4 08 0b ea b4 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 17 09 24 00 f2 40 0a f6 18 bb -
- -ff fc 08 89 37 dc bd b0 8d 16 80 64 76 68 86 c8 -
- -6c 86 d0 92 ff 22 40 01 a3 53 f9 b3 be 1a 51 8d -
- -27 3f fe d4 ec 8e ce 38 03 f3 de 87 -[4044 more] -
-id=7 timestamp=64 body_size=4119 content_type=0x09 dest=1 -4.772 s
4.774 s
4.774 s -
- - -  [fragment] - -
-c7 a6 60 53 eb 13 ef 3a 86 50 2c d8 26 49 d9 8d -
- -26 af 5d 60 ff a7 20 00 -
-id=7 timestamp=64 body_size=4119 content_type=0x09 dest=1 - -
- - - -  Video 4119 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d4 17 a9 c2 cd 9e 62 06 95 20 -
- -72 1d 29 91 e7 74 30 41 84 08 21 b6 6c b9 79 65 -
- -6b ab 29 a5 24 31 9d 35 75 7c 82 4c f7 38 ed ea -
- -5a 65 0c bd cf 85 ea 66 6c 5f 07 0c -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -4.907 s
4.912 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d0 17 61 ca cd 9e 61 86 95 36 -
- -c0 81 9b 70 a2 1e b7 5e 87 2c 11 11 64 fc 86 f1 -
- -99 58 db bb 5a c1 c8 51 5d ff ab 0c c5 9a 14 15 -
- -2f 3b 18 79 46 0a 00 1c 65 6b 44 ab -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 cd 16 61 ee c9 96 40 -
- -c6 b4 ab 58 a9 c7 bf fe 04 91 5d c3 39 6c bf 50 -
- -ed 84 6a 7d bd b3 de 94 c1 77 91 71 d9 03 20 46 -
- -cc 52 f0 4e 9b 2a e5 44 2a 04 63 16 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f df 09 24 00 f2 40 0a 40 c0 80 -
- -f0 5d 1b c8 c0 e7 66 89 1b a0 89 a6 b2 6a 81 46 -
- -78 6d ff a0 b2 6a 1a 82 a0 4f df 94 f4 28 8d b8 -
- -3c fd af a7 12 7b 8d 0b 33 c3 64 3c -[4011 more] -
-id=7 timestamp=64 body_size=4063 content_type=0x09 dest=1 -4.912 s
4.914 s
4.918 s -
- - - -  Video 4063 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 ce 15 d9 56 c8 fe 61 -
- -86 90 d5 23 0f 99 89 0a 41 4c 5c ab b1 ed 7f 2b -
- -ff cf 73 23 e7 1a bf 1e 62 02 1a 87 4c fa ac e6 -
- -95 0e 17 8b 67 86 44 f3 63 2c a1 7e -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d1 17 01 6e cd 9e 61 -
- -86 91 14 98 46 08 2a ee 4b 3a 48 df 32 3d 9f 23 -
- -9f 3c d2 96 40 d6 bc 59 0c 8a be a8 18 ba f7 45 -
- -46 ae 95 1a d0 86 8c 0c 23 41 20 6c -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c e8 09 24 00 f0 40 00 ab f6 16 -
- -09 4a 93 aa 33 e9 64 bd 61 d2 9f cf a5 4f 6a 9b -
- -9a 6e c1 11 a4 04 c1 ba ca 2f d3 e9 40 9b 83 0b -
- -4c 03 49 14 0c 0a b5 a4 c4 a4 2c bc -[3252 more] -
-id=7 timestamp=64 body_size=3304 content_type=0x09 dest=1 -4.918 s
4.919 s -
- - - -  Video 3304 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d0 17 6a 12 d2 3e 48 c6 b4 09 -
- -7b 58 a2 c7 78 78 06 c4 ea 70 c5 f4 ff f7 85 50 -
- -76 08 cf ff 1e 65 09 e3 f6 39 9b 08 a6 f5 48 8b -
- -2f b9 3a de 27 6f 73 96 dc 89 32 5a -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cd 16 41 9e cd be 60 c6 94 d0 -
- -b6 ae 72 b3 97 4e 79 16 aa 5e 85 b3 c2 c2 06 a3 -
- -84 3a 24 de 0a 46 c3 33 0a 27 bd 80 61 83 a4 0d -
- -ee 24 87 35 be 59 00 5c 04 5e b7 bf -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -5.059 s
5.064 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 74 09 24 00 f0 40 0a ca d9 94 -
- -00 0a a4 fe 7d 2a 42 88 fa 54 0b bb 68 6d d8 a1 -
- -68 e6 a3 0c 30 bb 89 31 32 d4 e1 f4 9f cf a4 90 -
- -08 0e e3 73 d6 c4 d3 12 3c 23 0c 6b -[3392 more] -
-id=7 timestamp=64 body_size=3444 content_type=0x09 dest=1 -5.064 s
5.072 s -
- - - -  Video 3444 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cf 15 5a 1e c5 96 60 c6 b4 05 -
- -a4 b7 95 6f 0e c4 5f ce 6e 5f 0c aa 29 31 86 a1 -
- -ab 29 21 a9 e9 d6 62 28 d5 6b ee 76 f9 ff b2 1c -
- -22 26 a9 7c bb d3 22 64 6a 40 eb dc -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 d4 17 39 6a c9 9e 60 -
- -c6 91 1f 38 2e f9 53 63 b7 fb 2d 65 6c 1c 67 d8 -
- -3c f2 f5 95 b2 a6 44 60 b2 b9 e7 1c 78 ef c4 67 -
- -3d eb c6 27 26 3e 13 a3 bf 4f e1 f1 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d2 17 0a 1e c5 96 60 -
- -c6 b5 01 14 3a 15 35 82 40 e8 42 34 21 0e 57 ae -
- -fd cf d6 1e 66 57 22 d4 b5 f9 87 04 42 01 84 57 -
- -8d 52 ca a8 ab e5 02 9c 23 32 17 24 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 d0 17 39 d6 ce 5e 79 -
- -86 94 89 8a cd 1c e0 3f 21 20 d3 58 46 91 cf 22 -
- -e9 92 93 3a 2c 4f f6 d8 d8 82 41 c5 93 07 71 a3 -
- -a9 83 78 6f cc 92 57 0f 09 d1 58 7b -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ce 16 19 8e cd 9e 60 -
- -c6 90 14 b9 c2 23 c1 31 39 e6 54 1a 12 f6 ea 7e -
- -5c 53 87 3f 60 8f 64 28 83 ba 06 ea 47 aa 8b 73 -
- -66 a7 d6 22 51 d2 2c 4d 9c 3a 15 40 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d0 16 42 06 ce 3e 60 c6 b4 8f -
- -16 15 40 71 44 54 20 d1 d0 5b 21 98 6f 7d 9a 6d -
- -ff 8d 8f 78 de f2 0c d4 4b 43 5d ea af 66 87 e9 -
- -4c de 08 66 6b eb eb 52 7f 1d bb 3b -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -5.211 s
5.216 s -
- - - -  Audio 105 bytes - -
-47 00 00 90 00 0e f0 09 24 00 f0 40 10 43 b5 aa -
- -5b 89 4e e3 f4 ea 4f e7 d8 31 0e 94 ff 1e f7 ba -
- -b3 7c b0 e8 11 eb 66 87 f3 ea 53 82 4e ef a8 a9 -
- -3a 5a 6d 4d d1 cb 23 e0 55 d5 2b 74 -[3772 more] -
-id=7 timestamp=144 body_size=3824 content_type=0x09 dest=1 -5.216 s
5.218 s -
- - - -  Video 3824 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 d2 16 d9 aa ce 5e 60 -
- -c6 94 9d 5d 06 63 21 ba 98 a2 4f b9 35 23 b0 75 -
- -b4 c8 31 9b 99 93 7c bf e7 b1 a6 fc 1d 5e c1 21 -
- -5e 93 69 5d 97 9e c8 e1 42 aa d6 1d -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d1 18 e2 1e c9 9e 48 -
- -cc b4 4c 35 03 de ba 08 2c a1 a2 c3 cc d9 97 93 -
- -4d f3 e5 75 23 89 c3 42 ce d6 48 68 06 61 c3 87 -
- -a6 b9 3b dd c7 cd 8d 24 1a 0d 41 b2 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 58 09 24 00 f2 40 10 11 ba 8a -
- -fb c0 45 ce 05 10 da 10 08 ce ea 4a 52 c8 ec 8e -
- -04 47 82 cb cf d3 03 81 93 c0 fb ca ec d1 9e 1b -
- -ed 00 da 6d 57 53 3c 90 1d 92 8b 67 -[4044 more] -
-id=7 timestamp=64 body_size=4184 content_type=0x09 dest=1 -5.222 s
5.224 s
5.226 s -
- - -  [fragment] - -
-c7 4e 2d c7 0a 14 94 34 90 a0 39 1a f4 9e 34 e9 -
- -67 18 3f 7c a1 b2 1c fd 75 e8 c5 72 7d 6a ef 00 -
- -4f d3 bf 95 8d dc bb 15 25 b7 86 c9 7f 1d 06 14 -
- -da 01 0f 39 e6 16 d1 1a ec b5 b1 21 ce 8d e0 e0 -
- -2f 60 40 6e 1d 2c b4 55 c1 7b c2 13 7f cf bc 0e -
- -cc ef 64 00 11 c6 02 80 00 -
-id=7 timestamp=64 body_size=4184 content_type=0x09 dest=1 - -
- - - -  Video 4184 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c8 15 71 8a cd 9e 60 c6 90 f0 -
- -91 16 a9 cb 52 a1 26 6c 25 4c 41 c3 ad de 4e 94 -
- -07 f3 b0 cc 30 94 b5 1e f0 2d 01 75 25 25 28 cd -
- -ab b3 91 eb d5 ce 33 c1 d8 8a e7 ea -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cd 16 61 a6 ce 3e 60 c6 94 29 -
- -f0 a0 a8 c2 9e a2 3c 69 d8 62 bf 04 6f 23 99 a6 -
- -b2 97 9e ff e9 48 ef 08 d6 16 fe 11 ec c1 80 f9 -
- -3b b5 5c 31 b3 57 04 d8 66 91 69 4f -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ce 17 7a 06 cd 9e 60 c6 b4 10 -
- -9b ae 04 29 e9 38 e4 9e 18 f8 da 67 0a 3b d3 19 -
- -1a 1e 6b 62 7f 93 ed a1 79 22 af 62 2b 2c 66 26 -
- -a0 2b 34 6d 8a 41 02 12 29 20 6d d4 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 42 09 24 00 f2 40 00 10 02 2d -
- -fa d7 c3 46 78 6c 86 c8 6c 8a ca 83 1d 9a 3e 61 -
- -dc dd 1b 3d c0 b8 74 41 46 41 69 66 78 6f d5 db -
- -60 2b 78 b8 33 d9 7e 84 a0 a2 48 c9 -[4044 more] -
-id=7 timestamp=64 body_size=4162 content_type=0x09 dest=1 -5.363 s
5.366 s
5.370 s
5.370 s -
- - -  [fragment] - -
-c7 dd 51 62 9e 1b 01 b2 1a ff 35 85 87 11 1c 16 -
- -b6 6e e2 aa fc 39 61 1c 06 6d 49 32 17 f8 f5 f0 -
- -06 43 d5 36 93 0d 81 56 04 e2 8c 99 32 01 19 e1 -
- -dd e2 87 6a e9 73 47 c0 0b 0f 5a 87 d7 c5 7c a3 -
- -cc 00 00 -
-id=7 timestamp=64 body_size=4162 content_type=0x09 dest=1 - -
- - - -  Video 4162 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 16 2a ff f3 40 c0 cb 16 09 4e c9 9e 60 -
- -c6 91 01 20 00 7e c1 34 3a d1 88 e4 dc a9 9f b1 -
- -b5 ac 01 bb 20 c4 73 f7 33 78 75 c8 bb 41 d4 35 -
- -86 9f 99 87 85 65 cc f3 9b aa 07 8b -  [49 more] -
-id=6 timestamp=22 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cd 17 1a 0a c5 9e 60 -
- -c6 b4 28 8a 38 78 1d 58 a0 d7 24 81 c5 35 a2 88 -
- -dd c5 bc b7 b3 32 f9 7d 6f ad 39 1a a9 03 62 32 -
- -ed fd 10 88 e3 7b 99 c1 79 6a 73 9c -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -5.372 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 0f 09 24 00 f0 40 43 11 27 e4 -
- -4e fd 1e 00 01 74 9f cf 94 fc 3d 19 4f a7 6b b7 -
- -85 57 1a 54 af 0d ce 4d 4a 2e 13 0f e7 d5 4e 25 -
- -cd 00 57 e7 b0 74 99 71 b9 bc 0d d2 -[3291 more] -
-id=7 timestamp=64 body_size=3343 content_type=0x09 dest=1 -5.376 s
5.378 s -
- - - -  Video 3343 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cb 16 6a 0a d2 3e 60 c6 b5 0b -
- -d3 35 0e 72 a2 35 bc eb db e1 d3 1b 3b 1e 0c fc -
- -ba 5f f9 65 7f 6d 89 32 3e 84 7b a2 1b 9b 03 51 -
- -6e 19 d8 84 22 3e 0a 06 08 85 cb 4f -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cc 16 aa 02 cd 9e 60 c6 b4 82 -
- -36 69 a1 8e 9a e4 29 d8 a9 43 e0 8d 67 e5 94 a6 -
- -54 19 f7 a4 6e cf 79 d5 40 ac 64 1c a9 b1 84 11 -
- -14 84 8c 13 12 15 54 22 32 60 79 36 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 cc 16 41 9e cd 9e 49 -
- -86 94 a7 a2 b0 5d 04 0b 74 30 ac 22 af c3 7f 39 -
- -9d a4 65 35 e7 5d ff d0 1d cd 10 eb b9 ba 93 31 -
- -88 55 20 a3 42 64 84 0d 41 00 d4 47 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 54 09 24 00 f2 40 00 0d 4f a3 -
- -a2 4b 3e 93 f0 91 00 bd 29 f5 07 f3 e5 4a 40 d1 -
- -b1 e4 e1 89 bb 06 d7 0e 93 e9 da 9b c5 ac 0d 21 -
- -dc d7 b8 33 33 28 73 39 cb 82 00 ff -[4044 more] -
-id=7 timestamp=64 body_size=4180 content_type=0x09 dest=1 -5.380 s
5.382 s
5.383 s -
- - -  [fragment] - -
-c7 e1 6b f3 12 50 55 e8 03 b6 12 9b c0 98 50 64 -
- -19 a2 20 0b cc 69 ac 2f 40 ea bf 6d 6e 07 98 43 -
- -7d 25 8a be cc 08 8b b1 61 c7 65 ec f6 56 87 b1 -
- -97 05 8d 03 11 a5 3e 98 08 08 3b 91 8c 9d 63 f0 -
- -6a b5 48 c3 bb 6e 3b 7f 33 a5 54 1b 43 83 0e 74 -
- -6c 21 d4 00 00 -
-id=7 timestamp=64 body_size=4180 content_type=0x09 dest=1 - -
- - - -  Video 4180 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 ce 15 a9 9a c9 9e 60 -
- -c6 94 14 68 66 54 b7 7d 99 42 86 02 84 c9 52 9d -
- -ff a6 88 74 be 17 e4 3f 24 73 a8 fe 12 ea 83 38 -
- -9c 08 30 52 19 0f 82 46 01 06 87 92 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -5.515 s
5.518 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d2 17 21 96 c8 fe 78 c6 94 1b -
- -0c 2a ef 23 99 c8 bf 21 94 3e e7 51 fe 13 94 eb -
- -1e 45 9b c5 55 24 8e 0d 00 54 19 f1 0a fc 1e e6 -
- -a3 10 64 d9 23 0c 52 bf 46 20 4d 61 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d0 16 a1 6e cd 9e 78 c6 90 8d -
- -cf 7b 1c c3 90 45 56 4a 60 a4 3b e6 fd 4a 6f 49 -
- -4c 8b 3e fb d7 f8 cf 9a 46 b3 a8 e9 4c f2 53 d2 -
- -e5 86 cc 1d c9 93 b6 6c 97 32 08 d3 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0f a7 09 24 00 f2 40 9d 76 8f e2 -
- -04 5e 63 23 6f 24 21 f4 0b 38 12 21 9c 8d e8 14 -
- -78 f2 df 62 90 03 45 43 05 29 8c 74 3f 3d 0a 99 -
- -b8 30 0e c4 85 99 b0 64 c2 81 a6 4e -[3955 more] -
-id=7 timestamp=80 body_size=4007 content_type=0x09 dest=1 -5.520 s
5.522 s -
- - - -  Video 4007 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 d0 16 e9 56 c5 9e 60 -
- -c6 91 a4 06 d6 3a 2e 55 0e 14 4d f3 3b af b9 cc -
- -9a be de 94 cc a1 19 5e a7 ec f5 28 a5 1c 21 d3 -
- -92 1c fb df 82 d1 21 e5 9e 75 df 88 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 -5.524 s -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 cf 17 9a 9e c4 f6 78 -
- -c6 b5 88 06 26 b0 b8 50 91 9c ab 3b 7d 6e cf 0a -
- -c1 11 12 9d 73 af 7c d7 52 bd 72 56 dc 0e 2b 25 -
- -cc 91 49 d4 d7 fb 0c d8 f5 5a 5d bd -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c b2 09 24 00 f0 40 00 ab f6 28 -
- -1e 00 49 ff fd 54 00 84 8d 4a aa 80 00 0e e9 55 -
- -51 3e 6c f2 4f fc d1 3c 30 68 5e c5 84 a3 28 34 -
- -08 b8 0a c9 42 a4 5e 50 3c ec fc 4b -[3198 more] -
-id=7 timestamp=64 body_size=3250 content_type=0x09 dest=1 -5.528 s
5.528 s -
- - - -  Video 3250 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cb 16 ca 7a cd 9e 48 -
- -c6 b4 10 23 90 18 c0 c2 ab 68 a7 c6 64 5e be 83 -
- -13 34 f6 b5 fc 86 c8 8b a8 44 74 a5 a5 ac 46 58 -
- -a6 66 6d af 61 17 bb 51 b2 b5 64 af -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ca 16 39 be cd 9e 78 c6 94 b0 -
- -44 39 6f a3 93 26 b7 26 80 d1 da 35 77 48 59 c8 -
- -51 ca bd 32 99 a9 9a 1c 59 4a 7f 5d 21 1a 47 e4 -
- -25 30 4c 5e 1d f6 ba 2f 24 dd 65 73 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -5.667 s
5.672 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cc 15 e2 1e c4 fe 48 c6 b4 85 -
- -2a f9 75 19 1e b0 a0 40 a8 45 67 34 7e 1e 5d 37 -
- -23 b0 88 a4 e1 da 51 6d 71 9e 3f 41 b1 19 9a a7 -
- -6b a1 73 22 7e 21 75 f3 3e dc 74 42 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 7b 09 24 00 f2 40 95 18 8f e4 -
- -02 77 c1 71 06 67 33 99 cc e6 73 39 9c df 96 b9 -
- -75 c3 fc 2a 95 cd 45 d5 44 26 f3 79 cc 86 cf 41 -
- -21 26 6a 56 80 63 61 7d e4 a9 83 b7 -[4044 more] -
-id=7 timestamp=64 body_size=4219 content_type=0x09 dest=1 -5.672 s
5.674 s -
- - -  [fragment] - -
-c7 b0 bd f3 d3 48 c7 ba b6 c0 1b de ec 69 5e e2 -
- -5d 2a 52 1c 9d 8a be dd 0e 3e 14 05 68 a9 f6 f2 -
- -7e 38 41 16 fc eb 94 d6 b0 51 a5 fd 27 f7 e9 92 -
- -08 e3 b6 db dd 7b 6d 6f bf 01 00 24 -  [64 more] -
-id=7 timestamp=64 body_size=4219 content_type=0x09 dest=1 -5.678 s -
- - - -  Video 4219 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cf 16 89 aa cd 9e 60 c6 95 10 -
- -b8 a4 45 23 55 17 a0 b2 49 1f 2a 71 32 c8 af 3c -
- -f5 d0 cb fc 99 2a a7 24 b8 e8 0b a4 b1 29 4e 3c -
- -cf 55 46 60 c6 56 2c 96 f9 64 4f 76 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 cf 17 2a 26 c8 f6 60 -
- -c6 b4 0a 20 58 30 36 45 39 07 50 7c 63 d8 a0 51 -
- -9c d6 21 11 19 fa e5 be 59 14 6d fc bb 54 8c 87 -
- -5b c7 fa c1 1e 70 84 72 12 50 78 c6 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 8b 09 24 00 f2 40 03 55 d8 cc -
- -40 18 fa 41 91 b8 db cd e6 f3 7b 04 ac 37 1b 79 -
- -ce c0 46 de 70 06 81 6b 39 ba 4b 2e af 79 ba 7a -
- -a5 d3 18 1e a0 4c 61 a0 0c 58 09 a0 -[3927 more] -
-id=7 timestamp=64 body_size=3979 content_type=0x09 dest=1 -5.678 s
5.682 s -
- - - -  Video 3979 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cd 17 02 6a cd 9e 48 -
- -c6 b5 35 50 20 30 65 61 04 67 bd a4 5e a2 d0 f4 -
- -3a e4 c4 c5 73 d5 38 7c 2c cb 48 f6 97 eb db 90 -
- -34 64 46 cf 92 cb cd 27 35 1a 05 c0 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -5.682 s -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 cc 17 49 6a c8 fe 78 -
- -c6 91 1a 50 60 4e 19 0e a9 9d 86 82 60 ed 7f 43 -
- -3b f6 e7 3f 87 3e 73 23 b9 51 1a e5 ac 75 30 67 -
- -41 9f 33 43 0b cd 35 cb 47 23 cf a4 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 c9 16 09 e2 cd 9e 48 -
- -c6 b4 67 c3 60 d1 c5 05 80 2a 7b 68 57 cf 90 32 -
- -8c 08 20 aa 42 d5 57 e7 08 ef f7 29 ed 0c b7 3b -
- -99 42 33 db 9b d1 a1 42 3f ee a9 b1 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c c2 09 24 00 f0 40 00 ab f5 79 -
- -70 42 4c 1e a3 31 c3 4f ea 54 ff c6 84 9f f4 fe -
- -58 b9 e6 7b 37 d1 84 b2 51 4d 40 35 12 9f fd 40 -
- -28 bf ea 40 96 36 35 c2 91 ab ca dc -[3214 more] -
-id=7 timestamp=64 body_size=3266 content_type=0x09 dest=1 -5.819 s
5.822 s
5.826 s
5.826 s -
- - - -  Video 3266 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cb 17 0a 1e cd 9e 60 c6 b5 f0 -
- -8c 38 50 c2 dd e0 e3 a5 52 f7 42 92 ab cc d5 84 -
- -6a 75 e3 eb cf 9c 22 c9 3c c9 e9 8a 62 8b 43 da -
- -1c b9 f3 a4 09 8f 17 20 81 39 c9 d3 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 c9 16 c9 b2 c9 9e 78 -
- -c6 94 e7 0e 87 41 4f 13 16 3b bd 74 62 92 dc 62 -
- -df a6 ca ee 4e d9 f9 67 9a 97 c4 9a 19 bc 67 2a -
- -50 97 b3 19 92 b2 da 6e 50 8d 51 3f -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 45 09 24 00 f2 40 01 67 19 6d -
- -e0 2b b0 49 43 55 7f b3 6c c3 d5 11 b3 66 1b 00 -
- -31 e4 80 07 f1 a9 83 9a a5 d0 14 9d 6d 47 54 5f -
- -6e de 3d 7d 48 3e 2b 9f e3 d1 dc 77 -[4044 more] -
-id=7 timestamp=64 body_size=4165 content_type=0x09 dest=1 -5.828 s
5.832 s
5.832 s -
- - -  [fragment] - -
-c7 76 f2 b7 8e a6 a9 ed 64 36 e8 36 f9 61 34 f7 -
- -a2 2e 33 7c c6 3f e9 c3 32 24 48 92 59 54 d0 88 -
- -5a 5b 1b b1 49 42 c0 2d 52 a7 49 4f 92 7c 9e 22 -
- -c8 42 26 c8 dc 82 d7 f5 df a0 3b 94 d9 d8 f3 35 -
- -b1 28 51 00 00 00 -
-id=7 timestamp=64 body_size=4165 content_type=0x09 dest=1 - -
- - - -  Video 4165 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 c8 15 a1 5e cc fe 48 -
- -c6 90 7a 20 33 e9 1b 10 86 ce 96 41 8b dc d6 ef -
- -0f 1c 60 ea 79 d4 6c 9c 94 6f bf e5 9c 8b 28 d6 -
- -a9 03 28 d4 c8 cd 53 25 2b 1a 49 61 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cc 16 e2 22 cd 9e 49 46 b4 71 -
- -98 86 0e 10 48 61 2a 2d 69 52 4c d7 d9 21 c7 77 -
- -12 8b 17 f4 ff ce 1c 67 34 44 2a 97 6d d3 45 cd -
- -0f 44 75 46 a8 2c 25 90 15 b4 82 f7 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 17 92 32 cd 9e 78 c6 b4 d8 -
- -4a 2a 2e 18 92 33 2e 36 5a 31 b5 fd 5f c0 82 d3 -
- -e9 b1 ab e5 bc 3f 3d dc ee 99 e7 87 16 3e 10 27 -
- -7a fc 62 70 f4 1e 6c 5b a8 d1 9a 78 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -5.971 s
5.974 s -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0d 02 09 24 00 f0 40 9a ac 8f f2 -
- -00 0b e9 4f e9 f4 a7 f4 fa 5a c9 0d a4 32 95 d2 -
- -9f d3 e9 52 1a e4 01 52 a0 3d 2c 88 49 6a f9 74 -
- -7d 3a 5f 83 51 61 9a eb ed 50 6b 54 -[3278 more] -
-id=7 timestamp=80 body_size=3330 content_type=0x09 dest=1 -5.978 s
5.978 s -
- - - -  Video 3330 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c7 16 79 7e c5 96 60 c6 91 57 -
- -b3 1c e3 05 24 19 d0 43 32 42 5f dd 88 a8 71 c6 -
- -1d 45 23 56 f3 9c ac 66 f8 31 a1 39 9e 62 3b 50 -
- -68 54 a0 68 e6 c6 c7 35 cc a7 96 42 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 16 2a ff f3 40 c0 c8 17 01 92 ce 3e 49 -
- -86 91 42 55 20 aa 24 90 51 10 6b d9 ae 70 05 81 -
- -19 0e e4 10 8a 1b 12 7c f2 23 c2 a4 1f ef df ea -
- -52 b2 20 b3 55 a5 ba 6e 6f 0c 9d 4f -  [49 more] -
-id=6 timestamp=22 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 c7 16 71 9e ca 3e 48 -
- -c6 94 9c 55 c5 85 7a 26 87 32 0a 43 de 73 8a 7e -
- -d6 33 31 95 9e 71 13 82 bc 95 93 27 fc fb cc e2 -
- -12 53 75 57 17 6c 82 e6 49 15 1c 84 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 70 09 24 00 f2 40 00 ab de 00 -
- -a5 03 e8 a8 64 79 3c 76 ed df 95 f4 9f 67 09 c4 -
- -48 98 4c c8 aa 6a 9f 98 fc d4 ed c9 9b 8b 1a a2 -
- -34 78 eb d6 fc b7 f1 ac 89 12 ce 12 -[4044 more] -
-id=7 timestamp=64 body_size=4208 content_type=0x09 dest=1 -5.980 s
5.984 s
5.986 s -
- - -  [fragment] - -
-c7 e5 04 58 5c 80 f2 2b 19 a6 2d 11 39 5a 1a c3 -
- -1d 7c 91 91 e4 bd 66 4e fc a4 03 80 82 df 7b a7 -
- -50 71 b3 74 a8 dc 30 c1 01 3b 7e 14 55 ce 3d af -
- -87 98 b4 f9 a1 ac ed 02 25 d4 69 52 -  [53 more] -
-id=7 timestamp=64 body_size=4208 content_type=0x09 dest=1 - -
- - - -  Video 4208 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c8 16 61 ce ce 3e 48 c6 94 90 -
- -c3 89 0b 8a 61 08 2c 53 1c 43 08 d0 34 cc cc d5 -
- -ae 49 0c 92 c7 7c 8c e3 c0 c9 72 d3 82 50 e8 e2 -
- -4d 2b d0 62 15 4c 55 58 59 e1 85 9d -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c9 16 39 66 c9 9e 78 c6 91 ff -
- -1c 97 67 8c 42 d8 1a 2e 76 d5 8a 18 2b 81 9c 10 -
- -89 4f 2a 7e a6 9b 2a c5 7d cc f9 30 5b 61 8d 56 -
- -b9 31 05 36 de 62 48 95 7c 87 6b ea -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f f3 09 24 00 f2 40 01 63 3c 6f -
- -c4 3a fe 07 ec aa 5c 3c b6 08 d1 74 a0 2d db b7 -
- -6e dd cc 7f 2a 13 c7 6e dd bb 7b c3 9a 36 6c e1 -
- -52 80 b8 a6 05 c3 b1 54 f5 21 23 50 -[4031 more] -
-id=7 timestamp=64 body_size=4083 content_type=0x09 dest=1 -5.988 s
5.990 s
5.992 s -
- - - -  Video 4083 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 cb 17 11 9a c9 9e 78 -
- -c6 94 74 c7 58 2d 36 04 a2 c3 16 a4 12 cd 5e b8 -
- -b4 6c e3 24 08 2c 9f 45 2d 67 50 dc 8a 5e 7b 84 -
- -3d e1 8b a3 d8 84 5f 75 6b 3f 4a f1 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 c9 16 d9 6a cd 1e 60 -
- -c6 91 80 29 40 6d 2c d6 35 b9 b3 19 1f 01 dd 61 -
- -9f 24 a7 6c 8e 19 e2 19 05 84 0e ef 57 a9 24 89 -
- -dd ec af 98 a4 3d af c7 d2 e8 11 08 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -6.123 s
6.126 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c8 16 29 42 cd 9e 60 c6 91 aa -
- -2c 5c 86 19 e6 ab 14 d1 ec 42 32 16 0c 4a 9b 95 -
- -2b a9 73 e5 37 fe 49 af f2 ed 4c b2 0a e8 c6 f5 -
- -d1 cd 15 44 95 01 0e 84 c7 83 25 46 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f ff 09 24 00 f2 40 00 00 d8 41 -
- -49 b4 ac f2 0b 36 6c d9 b3 b5 08 d9 b3 66 c1 ba -
- -cf b5 74 89 d2 e4 3e 72 b0 d8 44 17 44 0c 89 13 -
- -33 a7 a7 6e da dd 79 0b 1f b0 c5 24 -[4043 more] -
-id=7 timestamp=64 body_size=4095 content_type=0x09 dest=1 -6.128 s
6.130 s -
- - - -  Video 4095 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 ca 16 a2 0a cd 9e 58 c6 b5 73 -
- -0e 31 39 06 e1 f7 e6 6e 6a c4 68 7d 4f 73 9d 84 -
- -a9 aa 02 b5 33 22 6c 85 19 42 23 73 8c 1d c9 ad -
- -67 7c 8d d4 20 14 6a 4f a4 6c b3 61 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -6.134 s -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 ca 15 d9 86 c9 9e 48 -
- -c6 90 02 24 cc 8b af 99 19 25 6e 53 a5 d9 7e db -
- -83 5b 72 3a a4 bb 11 2d 45 49 46 5d 99 a5 90 a2 -
- -82 2e a6 6c f6 3f 1e 83 15 df f7 2a -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c d4 09 24 00 f0 40 00 01 7d a1 -
- -1b 36 6c d9 b3 66 cd 9b 36 7d 65 c6 04 1a 80 23 -
- -66 cd 9b 36 74 41 ae 15 71 65 4e cb 3b 0d 88 fe -
- -20 ec 31 92 ea 8c 6e 37 78 5d 90 92 -[3232 more] -
-id=7 timestamp=64 body_size=3284 content_type=0x09 dest=1 -6.136 s
6.136 s -
- - - -  Video 3284 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 cd 16 b9 a2 c9 96 48 -
- -c6 94 b8 3a 5c 42 7c f0 c1 b6 c6 3a de f9 a7 76 -
- -ff be 7e af fe 47 dd fb 3a bc f6 b7 16 d1 79 6c -
- -8e f2 ec ea 4f 33 eb 1b b1 8d 97 97 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cd 16 09 82 c4 f6 60 -
- -c6 91 ae 86 74 28 39 a0 89 4b 23 a1 65 95 4a 1c -
- -ad fb 7f f7 d0 e5 23 ad da 7e 74 a0 a0 71 f6 4a -
- -48 65 9b 67 9c d8 95 50 c9 33 a6 8f -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -6.275 s
6.278 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cf 17 e9 ca c5 96 60 cc 94 d6 -
- -11 03 e2 5c 43 ac 37 23 f4 45 97 45 51 05 29 97 -
- -c7 a7 eb d9 0a ac 35 32 75 2f 62 94 c6 a9 ea d4 -
- -38 87 70 4a 96 d9 0b 3e c9 9e 64 57 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 11 09 24 00 f0 40 00 ab f2 00 -
- -1b f9 c6 9f 4a 7f 4f a5 3f a7 d2 ec 09 e9 f4 a7 -
- -fa 08 0a 29 63 6b 70 a9 52 63 92 ec c1 ab 5c 89 -
- -76 44 dd 76 60 a7 8f 98 1f 7e c5 3d -[3293 more] -
-id=7 timestamp=64 body_size=3345 content_type=0x09 dest=1 -6.280 s
6.284 s -
- - - -  Video 3345 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 ca 16 52 0e ca 3e 60 c6 b4 8f -
- -19 eb 51 85 06 63 3c 47 9a 1e 45 18 8e c0 13 24 -
- -52 72 2c dd a1 9a 9d bf ea e5 11 0e e7 1c d8 b7 -
- -40 25 3d a3 11 7c a7 33 39 59 b6 5a -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 17 62 1e cd 9e 60 c6 b4 d7 -
- -9c f5 7e a3 5d 10 ac 41 33 22 2b b4 92 11 c8 08 -
- -41 8e 91 a8 fd af 33 ad 24 76 21 bb 5d 72 e0 cf -
- -02 ea 7e d8 81 45 62 91 9e 73 e9 29 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 c8 17 7a 12 c9 96 60 -
- -c6 b4 29 99 59 e7 b0 2d b4 ae 74 73 e1 05 e6 21 -
- -4a 2a 94 22 4d ba ad 14 a9 db 9f 3e 9f ca 67 c2 -
- -af 9c 74 bc 7d fa 3b cc 29 b1 2d 3d -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 10 4f 09 24 00 f2 40 00 ab de 05 -
- -3f 3b 52 74 46 67 8c 60 7e 30 46 dd bb 78 61 84 -
- -04 6c bb 78 a9 17 8e 44 a4 15 8b c4 93 9b f6 e9 -
- -2e 04 1e 3c 96 08 a0 58 59 fd d1 63 -[4044 more] -
-id=7 timestamp=80 body_size=4175 content_type=0x09 dest=1 -6.286 s
6.288 s
6.288 s -
- - -  [fragment] - -
-c7 2a bb 59 53 86 66 06 87 3b b5 19 99 4b c2 32 -
- -31 8c b3 ba 24 80 cd 2c 82 48 a9 0c da d9 dc 7e -
- -f9 84 fb f2 96 df 7d 55 a7 1d 62 a1 9a 20 02 01 -
- -13 01 be e0 74 b1 ab 16 1b 35 4f 9f 73 9c 97 e4 -
- -e0 e1 5b 84 47 1c 43 14 1c 9b b3 05 a6 15 00 00 -
-id=7 timestamp=80 body_size=4175 content_type=0x09 dest=1 - -
- - - -  Video 4175 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 c5 17 ca 22 cc fe 59 -
- -46 b5 a2 11 c6 4b 0c 78 db 40 1c cc a6 94 b5 84 -
- -c6 4b 0c c4 18 73 b6 28 60 61 8d 4c df 39 e4 76 -
- -11 5f 2a f2 14 0c 81 b2 42 70 4c 58 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 c0 15 99 ea d2 5e 48 -
- -c6 b4 e3 93 30 69 b5 d0 53 23 0c 63 1a a1 45 48 -
- -45 b8 ea 16 0a 1c 8c 55 3f 3c 8b 8b f2 11 19 a7 -
- -2a 12 b8 32 0c 1c aa d9 08 dc 4d 64 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 -6.427 s
6.432 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c bb 09 24 00 f0 40 00 ab f0 00 -
- -0b a4 fe 7c a7 d3 a4 fa 74 9f 4f 3f d5 8c fa 4f -
- -bb f8 54 9f 4f 5b c8 b9 ff a4 74 ac 25 26 37 b0 -
- -6b ec d8 6d a3 c6 88 bd 12 75 4e 4d -[3207 more] -
-id=7 timestamp=64 body_size=3259 content_type=0x09 dest=1 -6.432 s
6.434 s -
- - - -  Video 3259 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 c4 15 f1 3e d2 3e 60 -
- -c6 90 55 43 d4 34 82 07 50 7a 21 35 f6 f6 b7 0a -
- -25 07 3c 48 85 e5 34 bf ed 61 94 cb fe 66 7a 89 -
- -50 e4 6b 48 11 79 a1 39 ed 8d 91 96 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c7 16 79 66 ce 5e 60 c6 90 d4 -
- -98 91 0a eb e1 0d 05 bd a4 58 6a 6e bd 52 e9 20 -
- -e5 df 29 95 91 ce d5 5d 3f 33 e4 71 5b 9b 52 a4 -
- -9c d3 ad 09 9d e8 37 db 46 56 ed 6b -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 c8 16 19 d2 ce 3e 48 -
- -c6 94 95 46 b4 4e 79 12 7c 7f fd f7 47 1f 31 ff -
- -3e 32 9e 67 5b 1f be 3f a5 d4 a2 f9 33 9e 65 8a -
- -26 c3 4d 55 11 0c 47 29 34 5f 25 8e -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 69 09 24 00 f2 40 00 ab e2 02 -
- -2e 54 80 c2 79 9e 3f ce 14 07 92 90 c0 76 72 45 -
- -52 01 13 7d 96 aa 21 da 88 41 81 67 33 20 23 67 -
- -24 1f 04 63 5d 9f 07 38 fc f3 86 57 -[4044 more] -
-id=7 timestamp=64 body_size=4201 content_type=0x09 dest=1 -6.438 s
6.440 s
6.442 s -
- - -  [fragment] - -
-c7 1f b2 71 a0 ae 8b d5 3a 4a b9 92 fb f1 ea 9e -
- -ea 29 bc 8d 6b 2b 08 52 41 95 7c f5 62 29 7c 88 -
- -4d dc 2c 38 95 b8 9f bb 47 25 2c dd 77 a6 01 18 -
- -f4 e8 92 ce 6d a0 10 c4 56 90 16 ac -  [46 more] -
-id=7 timestamp=64 body_size=4201 content_type=0x09 dest=1 - -
- - - -  Video 4201 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 ca 16 69 fe cd 9e 60 -
- -c6 b4 53 69 f0 d4 2b 91 05 42 9c ed f4 39 95 f1 -
- -d8 e7 76 d7 b2 bd da b5 c5 d7 fa 4a 99 39 07 9e -
- -79 b7 42 06 4c 89 18 bb d9 a1 5e b2 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 17 c2 06 cd 9e 79 86 b4 a6 -
- -c9 82 31 dc fa 0f ce 14 85 ff a5 b0 c5 b0 a2 3f -
- -22 4d 5a ed 0e bc 3c 39 8a 43 6f 35 62 12 4a 25 -
- -ec 5f 34 33 db 76 14 62 54 94 a1 ef -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f c7 09 24 00 f2 40 07 e6 43 d8 -
- -00 01 f1 a1 c9 4f 23 6f 33 91 b3 91 b7 95 b2 80 -
- -86 4f 5d e5 ed 23 47 67 2f 74 1c 19 1b 7b b1 cd -
- -06 91 24 ba 2d 9f b1 fe 87 47 5f ff -[3987 more] -
-id=7 timestamp=64 body_size=4039 content_type=0x09 dest=1 -6.444 s
6.446 s
6.449 s -
- - - -  Video 4039 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c7 15 9a 02 d2 3e 48 86 b4 9a -
- -02 91 ad 10 f1 18 c9 a7 10 81 05 0e 20 b0 89 0a -
- -45 65 a1 95 b4 eb d8 cc 8c 6a 23 0a 08 a1 5c 59 -
- -40 ed ca da 42 3a 54 fd 06 95 c7 cd -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -6.579 s
6.582 s -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 cb 16 a1 ea c9 9e 60 -
- -c6 b4 6d 02 88 48 b4 bd 39 56 f0 77 c6 36 9c ad -
- -80 d5 85 1c 75 49 bc be 90 59 f4 87 42 73 33 77 -
- -64 0c e1 40 9d 5a 3d 53 24 d0 28 f0 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f a8 09 24 00 f2 40 00 00 9e 68 -
- -0c 89 9c 8d 9c 8d ea 28 a2 67 25 2e 6d 8a 35 fd -
- -02 ce 60 1a b8 3b 79 9f be 03 e9 09 03 b7 60 18 -
- -16 d0 23 7e b8 a0 62 8e 93 11 1a 73 -[3956 more] -
-id=7 timestamp=64 body_size=4008 content_type=0x09 dest=1 -6.584 s
6.588 s -
- - - -  Video 4008 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 cb 16 e9 4e d2 5e 60 -
- -ca 91 6c f8 11 75 bb 6e 42 10 1d 4c 40 41 ab df -
- -4d 64 ad b1 87 29 48 d8 bf 34 5d 2c 89 76 a4 aa -
- -3a 1b 3b 93 4b 01 54 2c c5 18 46 59 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ca 17 89 6e c9 9e 49 -
- -86 90 94 81 9a 79 8d 2f 41 a0 ab 08 7a a9 56 4c -
- -b3 30 73 e7 29 cd a7 c3 fb 2e d4 c8 b7 a5 0c d0 -
- -55 68 0d 82 a2 6a 88 b4 19 f3 a6 c0 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -6.590 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c6 16 b2 16 cd 9e 78 c6 b4 60 -
- -62 86 8c 91 65 23 fd 58 87 0d 9b cf eb fb 9f 3f -
- -d0 e6 fd ce e5 04 92 18 90 81 dc 1a 0e 8e 38 97 -
- -22 d5 68 53 e1 1e 54 90 f5 cd a4 2b -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0c ed 09 24 00 f0 40 00 15 78 01 -
- -91 34 2d c5 bc 8d bc ce 46 c4 be e3 a6 03 9e 46 -
- -de 67 26 a1 25 b7 b9 1d 64 14 67 ef 80 c1 96 2d -
- -21 6a 23 a3 ed d6 e1 8c ed 01 56 38 -[3257 more] -
-id=7 timestamp=80 body_size=3309 content_type=0x09 dest=1 -6.592 s
6.592 s -
- - - -  Video 3309 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c6 14 69 72 c9 9e 60 c6 90 84 -
- -9d 71 31 01 3e 3f 7a cd 9f a0 33 3c cb 9c c9 6e -
- -59 4a ec 6e b1 ce 69 28 7d c9 cc f8 47 ef b9 21 -
- -82 72 d5 a6 47 fa 6b 27 cf 2d 4a 92 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -6.733 s
6.734 s -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 cf 17 fa 0e c9 9e 60 -
- -c6 b4 3a 81 18 c1 a0 84 0b 8b 85 36 88 d7 33 33 -
- -55 27 8c 5c fe 65 53 32 41 45 5b 33 3c 8d 75 66 -
- -e3 92 d3 ca 71 6e 44 59 fd b9 6d 97 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ca 16 ca 02 c9 96 60 -
- -c6 b5 50 d6 2b 4a 49 69 16 ac e4 cf 66 3e ef f9 -
- -ae 67 9b 9d ed de bc 09 15 6b 6c 2d c5 c2 29 5f -
- -cd cc d4 4e 66 b3 03 6a 1d 02 00 08 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 72 09 24 00 f2 40 42 19 00 85 -
- -ea 0c 76 ed db b7 6f 7d 1c 1e 98 d8 63 c8 21 38 -
- -52 6c be d6 36 50 87 2f 76 ed db f1 33 ff 2d 3d -
- -5d a4 2e c5 51 fa 04 f2 45 c8 ac 40 -[4044 more] -
-id=7 timestamp=64 body_size=4210 content_type=0x09 dest=1 -6.736 s
6.740 s
6.742 s -
- - -  [fragment] - -
-c7 56 5a 89 83 2a c8 91 b6 64 37 7f 84 86 51 a9 -
- -c3 13 43 12 57 86 9d 8c 41 18 80 99 c4 6d 2b 66 -
- -97 08 0a 39 93 3f 37 1a 3b 94 4c 27 c5 dd aa ef -
- -36 5e 42 bd ba 13 47 cd 12 e2 91 02 -  [55 more] -
-id=7 timestamp=64 body_size=4210 content_type=0x09 dest=1 - -
- - - -  Video 4210 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c9 15 aa 22 ca 36 48 c6 b4 45 -
- -3b 02 b9 89 5a a8 53 3f 79 45 40 05 47 7a 48 27 -
- -29 74 cf 22 0f e5 10 cb be f2 4a 39 9a 2d 49 11 -
- -0f 92 43 64 f2 b4 28 95 72 b9 16 ff -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cd 16 da 1a cd 1e 60 c6 b4 db -
- -d9 be 06 43 85 36 37 81 c8 58 bf fb bb a9 1b b1 -
- -ed 92 9c 7b 92 b7 4f 7c d4 10 76 23 dd 3b 99 e6 -
- -9c 16 77 e8 97 9e 7c dd 3c d7 1d db -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f e3 09 24 00 f2 40 00 15 20 01 -
- -8e dd bb 76 ed e3 97 53 48 63 c7 8f 03 3b 56 0c -
- -83 92 c0 be 24 3a a2 3c 83 88 16 99 65 0e 8d 9c -
- -da 0d c4 ea 85 00 13 89 1e 59 62 14 -[4015 more] -
-id=7 timestamp=64 body_size=4067 content_type=0x09 dest=1 -6.744 s
6.746 s
6.746 s -
- - - -  Video 4067 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 cc 18 a2 ea d1 be 60 -
- -c6 b9 70 62 59 a6 88 24 21 4d b6 f5 b7 7f ba f8 -
- -e9 97 cf 75 26 f9 16 74 b2 7c 97 f6 d9 0f 8c 81 -
- -b0 70 13 98 a6 86 c5 08 37 98 38 8e -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 c4 15 19 4e cd 96 48 -
- -c6 91 51 6a d1 aa ab ce 12 40 fa 2a 89 0d ad a9 -
- -08 e7 0b 6e 64 62 cc fe f3 5b 6b c0 96 25 08 ad -
- -cb 99 2a 11 8c f7 db c2 6d 48 0a ef -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ca 15 f9 b2 c8 fe 60 -
- -c6 95 97 64 a2 95 59 8a 25 86 6f 64 a5 db 67 40 -
- -73 50 ac ec d9 5d d9 64 36 b3 34 8e 15 c0 8c 2c -
- -e0 92 49 b5 85 a3 01 66 11 03 80 97 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -6.883 s
6.888 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c cf 09 24 00 f0 40 43 15 df 99 -
- -8f 44 0f 20 b0 50 2f ea 54 ff a7 f5 2a 7f d3 fa -
- -95 3f e9 fd ab 88 4c 37 5e 38 0f 60 a0 e5 d6 8b -
- -b8 28 df 74 f5 27 5e 10 a3 94 5e 02 -[3227 more] -
-id=7 timestamp=64 body_size=3279 content_type=0x09 dest=1 -6.888 s
6.890 s -
- - - -  Video 3279 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cd 17 09 86 cd 9e 78 c6 91 1e -
- -c5 91 a1 82 84 f6 7e 39 08 34 1f 8c 2e 0f 66 03 -
- -eb f9 40 4a 11 74 40 86 23 23 07 ae 66 71 3d 27 -
- -a6 d4 a0 42 7e 66 12 7f 3d cd 57 6f -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 15 b1 46 c9 9e 60 c4 90 4d -
- -7b 1a ce cd 2d 9d ed 54 59 3c 6b dc 6d 6d ef de -
- -3f f9 c3 73 38 64 97 37 2d f3 5d f6 30 90 8a 30 -
- -36 82 8f 67 6e 29 4f c0 3e df 2e 75 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 4f 09 24 00 f2 40 00 ab e4 00 -
- -1c 24 05 5f 0f 23 71 b7 9c 00 cc 2d e6 f3 b1 7f -
- -d2 10 2f db 82 36 f3 79 bc dd f7 80 f4 36 69 3e -
- -36 f6 74 72 cd 11 08 10 84 8a 5e d8 -[4044 more] -
-id=7 timestamp=64 body_size=4175 content_type=0x09 dest=1 -6.894 s
6.896 s
6.896 s -
- - -  [fragment] - -
-c7 13 84 4f 2f 96 ad 6c 0e f1 2f 7f 74 8b f0 91 -
- -c6 f5 c6 c1 56 c0 7c a8 de 34 06 94 4a 7a c7 40 -
- -90 8c 19 86 3f eb 4f a9 31 90 da 10 61 b5 a7 fd -
- -51 85 3c e4 ec e6 de e7 c7 ee a7 8e 0a 63 de 91 -
- -4f 37 76 30 00 53 0f a6 5d 4e 70 02 1e fb 00 00 -
-id=7 timestamp=64 body_size=4175 content_type=0x09 dest=1 - -
- - - -  Video 4175 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cf 15 c8 ca cd 9e 60 c6 6d 61 -
- -c2 33 02 60 61 08 22 6d 19 a7 bb 19 20 81 42 a5 -
- -9d be ca 6f 79 59 d1 e5 b3 5d 92 eb e5 6d 96 f6 -
- -fe 93 2a ba 22 ae 5c d6 bd c2 a2 a3 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 d2 18 3a 1e ca 3e 79 -
- -86 b4 3d 90 e6 78 82 90 2a 9e fa 12 29 58 61 d8 -
- -49 c2 75 8a 71 bf a4 d1 90 c8 98 fc bf 27 57 62 -
- -f9 83 cb a4 a1 14 cb 26 77 44 34 45 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 -7.035 s
7.038 s -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cc 17 82 ca ce 5e 78 -
- -84 b9 b1 61 6d 0a c2 aa 08 c5 13 0a d0 16 e8 50 -
- -a6 60 8c 95 32 73 10 c4 fb 3b 15 f8 bc 23 5d 27 -
- -5d 3f 3b 4d bc 95 18 ee 41 85 ef b4 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f fd 09 24 00 f2 40 00 77 7f 03 -
- -04 47 e0 b3 00 ed e6 f3 a5 28 47 33 b1 1c c2 ce -
- -6d 4f 64 62 88 5d f9 40 59 83 89 bc e9 41 0d 69 -
- -01 88 b1 9e d0 1d c5 d7 55 b1 98 2c -[4041 more] -
-id=7 timestamp=64 body_size=4093 content_type=0x09 dest=1 -7.040 s
7.044 s -
- - - -  Video 4093 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 c9 17 82 aa cd be 60 -
- -c6 b9 51 2e c2 87 e0 90 c8 a1 e3 c5 24 26 a1 14 -
- -c9 dc 82 12 ba 53 72 f6 c9 b8 ca bf 91 c6 93 48 -
- -5b a1 2d 4d 69 90 33 36 10 6c 5a 9c -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 -7.046 s -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 c6 15 61 96 c9 9e 60 -
- -c6 94 4f 13 61 51 28 4a 91 41 70 41 15 22 eb 24 -
- -22 96 eb ca 46 9e 77 27 f3 49 51 4a 1d d0 8e 5e -
- -1f 93 28 72 6a c7 72 2c 93 36 27 5b -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 17 79 ae cd 9e 78 c6 94 53 -
- -49 28 f1 e5 8d 67 30 9b cf a2 8f 64 06 18 e7 4f -
- -fe 95 ed 87 f4 ce e7 15 4b a7 b9 56 a6 6e 4c 50 -
- -f7 5b 17 ff 46 35 3d 1c c2 5a 7e 1d -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0c 75 09 24 00 f0 40 00 00 03 b7 -
- -9b cd e6 f3 79 bc de 70 79 65 a4 24 a4 1c 4d e6 -
- -f3 7a 07 2c 2a 6f 37 94 63 85 23 75 e3 75 62 ef -
- -c2 84 5a 57 19 b6 60 20 c5 0d 13 07 -[3137 more] -
-id=7 timestamp=80 body_size=3189 content_type=0x09 dest=1 -7.048 s
7.050 s -
- - - -  Video 3189 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 c8 16 99 ba c9 9e 78 -
- -c6 94 aa 2f 8b 36 08 c4 8a 48 48 47 88 29 2a 39 -
- -c8 eb 2c 2f 34 a4 b8 48 f9 93 b7 cd df 22 eb 92 -
- -99 43 c4 45 33 89 4a 4f ef ed 78 48 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 c8 15 e9 ce c9 9e 79 -
- -46 94 a1 d0 48 84 2a aa 22 48 ec 8e 8e fe d1 51 -
- -d9 7c ea 79 31 dc 99 07 57 4a 67 b3 e4 6a 66 d5 -
- -63 86 79 34 07 38 3a c3 31 f4 92 dc -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 09 09 24 00 f2 40 03 bb 80 00 -
- -d6 e4 0f 45 b1 34 5b cd ec 6d 25 d3 f8 02 ce 67 -
- -36 b9 7c 6f 8c e9 12 a8 13 1e f6 62 ef 08 17 1b -
- -7b 29 69 ef b7 c9 39 37 83 99 01 57 -[4044 more] -
-id=7 timestamp=64 body_size=4105 content_type=0x09 dest=1 -7.052 s
7.054 s
7.056 s -
- - -  [fragment] - -
-c7 83 07 29 27 4b 86 02 f0 00 - -id=7 timestamp=64 body_size=4105 content_type=0x09 dest=1 - -
- - - -  Video 4105 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cb 16 8a 06 cd 9e 60 c6 b4 8b -
- -52 12 62 55 05 3b 4f 75 53 ef 55 6e 79 92 e9 e7 -
- -3d 3f b7 b6 43 f9 3f 3f ec b4 2f 03 02 7b 44 c3 -
- -a8 a2 54 53 61 12 46 9d 17 0e 94 54 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 16 b9 52 d2 5e 60 c6 91 16 -
- -d7 b2 d7 0f b6 d5 7f 3e 15 fd d3 fb fb ba d8 fe -
- -51 63 ec 4a ed 0e 7b 9a 03 83 57 72 5f 48 1c df -
- -ec 45 72 34 78 09 5a 05 19 dd 2e ae -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 cb 15 e9 8e d2 3e 48 -
- -c6 91 70 63 b4 0a 34 a4 51 68 35 d6 79 2c f5 dc -
- -94 ff 32 df 26 2d 0e b7 87 d5 c7 08 21 45 0a 0e -
- -61 90 9d cd fb 44 fe 93 84 95 8e 34 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 02 09 24 00 f0 59 9b 82 b3 78 -
- -66 ea 00 0f af 44 23 71 b7 9b cd cb 79 bc de 6f -
- -37 9b cd e9 18 0c 30 23 99 cd 5f 4e 54 9b 1a a3 -
- -79 9f 7e 06 14 bd 96 cb ce d6 2d 48 -[3278 more] -
-id=7 timestamp=64 body_size=3330 content_type=0x09 dest=1 -7.058 s
7.060 s -
- - - -  Video 3330 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 ce 16 ca 0a c8 fe 61 -
- -86 b4 d3 23 9e 0b 4c 27 6a b3 5f f6 f8 ec ab 29 -
- -f1 fc 66 57 ff b4 2f 90 b1 88 94 8a 98 a8 6e a8 -
- -11 bb 89 d9 99 e1 a9 bd 85 c4 32 2e -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 -7.187 s
7.190 s -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cd 17 b2 06 d1 be 48 -
- -c6 b4 0d 3d 14 1f 43 06 59 83 57 12 e0 92 6b 51 -
- -dc d1 8b 65 77 47 85 27 e4 70 ad 23 a4 f5 5a 3a -
- -38 e2 02 d2 cc 42 25 cc 2a a2 61 40 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 47 09 24 00 f2 5a 9b 80 00 04 -
- -f5 30 64 6e 36 f3 79 bc de 6f 37 bd 49 71 5f c1 -
- -cd 6a 26 31 89 0f 5d cb 78 8f d7 5b 28 db d2 5d -
- -b4 c0 c1 60 81 f0 a3 8a 7b 33 ff 65 -[4044 more] -
-id=7 timestamp=64 body_size=4167 content_type=0x09 dest=1 -7.192 s
7.196 s -
- - -  [fragment] - -
-c7 3b 24 0b 8b 71 a7 40 d3 b1 58 37 4d 4e e9 69 -
- -e0 bf 35 4e ed 23 4a b1 57 33 26 a7 4c 13 27 d8 -
- -72 0a 36 e3 de 42 45 f7 c1 0e cc 63 dc 97 05 b7 -
- -a4 89 b7 1a 0d 68 01 e8 9f 84 29 a6 05 5e 37 7c -
- -90 93 f1 30 17 0c 00 00 -
-id=7 timestamp=64 body_size=4167 content_type=0x09 dest=1 -7.197 s -
- - - -  Video 4167 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c9 16 d1 b2 cd 9e 49 86 94 44 -
- -1a 8c 42 15 55 70 93 92 e1 c2 98 3e 06 24 ea f3 -
- -fe 1e 87 ac 27 91 96 75 53 a6 9b f9 9c ec 15 8e -
- -8d 76 28 2a 39 43 bb b3 1f 27 e7 33 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c8 15 d1 7a cd 9e 60 c6 90 9c -
- -94 63 a2 8b 75 b9 56 86 68 86 8a 27 63 5c 60 67 -
- -53 8d 92 79 52 37 ad 65 5a 85 1b f2 2b 21 aa 21 -
- -38 73 23 78 4e 73 96 9f a3 2a 10 f3 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -7.339 s
7.342 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f bc 09 24 00 f2 40 42 6a 13 2e -
- -25 4f f0 00 3c 89 1b 36 f4 87 82 0e 24 cd bc 8d -
- -eb 88 70 d4 8d 99 f2 36 6d e5 a0 b1 c6 00 84 ca -
- -fd 25 db 03 0e c8 04 a6 50 ba 5b ff -[3976 more] -
-id=7 timestamp=64 body_size=4028 content_type=0x09 dest=1 -7.344 s
7.348 s -
- - - -  Video 4028 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 cb 16 d2 16 d2 3e 60 -
- -c6 b4 a8 df 4b 3a 0c a2 14 d0 5c 57 24 43 bb d3 -
- -21 6d ae d0 13 75 b2 3f d3 cf fe 79 43 d8 55 47 -
- -22 74 a9 b5 04 66 51 ab 8d 86 c7 17 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ca 17 a1 c2 ce 3e 60 -
- -c6 95 ea 18 85 40 65 1c 31 21 86 68 c7 38 68 b0 -
- -31 89 86 14 84 61 2a 2d d3 f3 d5 a6 48 c8 8b ef -
- -e2 44 7f ab 4a 1a b5 d5 81 95 8a c0 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -7.348 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c6 16 39 7a c9 96 78 c6 90 55 -
- -20 63 0a 3d ba 65 78 c4 8e 5a 09 1e 20 0c d6 da -
- -b3 cf cb 5d 11 3b 9c a9 9a eb 93 c7 73 cb 4a af -
- -59 e8 6f f2 04 19 02 02 82 c8 32 7d -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 23 09 24 00 f2 40 00 d9 b8 01 -
- -1e 9c 19 9b 79 1b 36 f2 36 fe 46 21 46 cf c4 6c -
- -b8 c7 00 79 49 8d 9c 8d 9c 94 f6 7d bb d0 cc 99 -
- -ad b2 bc 58 7a 26 46 60 20 57 64 82 -[4044 more] -
-id=7 timestamp=64 body_size=4131 content_type=0x09 dest=1 -7.352 s
7.354 s -
- - -  [fragment] - -
-c7 10 06 fd bd bd 7d 8c d1 09 07 c6 53 90 7c f4 -
- -55 92 ea fc ce f7 c5 12 0e ce 98 78 61 0d b0 b2 -
- -96 00 00 00 -
-id=7 timestamp=64 body_size=4131 content_type=0x09 dest=1 - -
- - - -  Video 4131 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c8 16 30 a6 c9 9e 60 c6 6d d4 -
- -48 84 ed 59 c4 22 91 58 a7 01 c2 a4 91 17 dc a9 -
- -73 99 48 9b 44 28 71 5c 3c 37 d1 3e 32 45 33 b5 -
- -fc be bd f3 65 2a 2b 97 82 3a ed 6b -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -7.354 s -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 ca 16 39 9a c9 9e 60 -
- -c6 94 84 71 01 48 a0 36 66 0b 1c dd e5 16 a4 6d -
- -2c 33 38 b7 cc b8 67 dc 98 e2 6d b4 25 2a bd ed -
- -13 d7 84 c6 6d c9 6f f9 33 2f 51 08 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 -7.491 s
7.494 s -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 cc 16 12 0e ca 3e 78 -
- -c6 b4 b5 92 09 1a 0c a0 02 63 91 ab 21 a9 8d 15 -
- -36 6e 79 1b d9 9a 74 9c ea 3b 59 9d 17 a1 fa b5 -
- -31 88 79 b7 cf 85 c5 c9 9f 97 2b 2d -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0f aa 09 24 00 f2 40 00 00 04 4e -
- -a2 29 1b 38 32 36 03 f5 07 8a 99 b7 ae 32 c4 79 -
- -2c 55 37 91 b3 8a 52 40 21 1b fd 5e 11 fb 05 cb -
- -59 7f 0c dc 50 5e fc 71 dd e3 e9 0b -[3958 more] -
-id=7 timestamp=80 body_size=4010 content_type=0x09 dest=1 -7.498 s
7.498 s -
- - - -  Video 4010 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 ce 17 c2 0e c9 9e 78 -
- -c6 b4 14 ae c3 84 74 0c 49 a2 3f 56 02 25 1c e1 -
- -2b 19 44 4c bf 9e 45 a6 4a 65 21 65 f9 df 08 31 -
- -68 12 9c 30 61 0a 0e 71 c7 fa 5d c8 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ca 16 8a 16 d2 5e 48 c6 b4 93 -
- -a4 90 48 79 aa 18 df 3d 04 d6 52 22 20 84 25 df -
- -43 3b 29 19 31 39 9f 0b f4 cc ce 47 46 52 1f 3e -
- -78 4a 39 ec 61 b7 97 0b 03 30 db 41 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -7.500 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ca 16 c1 8e cd 9e 60 c6 91 2c -
- -ae 4e 70 d7 31 ac 11 86 64 08 63 94 53 3c b7 bf -
- -c9 72 86 aa bc a0 a2 0c 66 a0 40 64 94 ee 5f 7a -
- -bc f4 8b 0f cb 27 12 53 cb f2 42 32 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f bb 09 24 00 f2 40 00 00 04 53 -
- -39 a9 1b 36 f4 85 5e c5 1e 46 ce cd e8 fa f9 65 -
- -8f 44 8d 9c 8e 19 73 a0 af e0 75 48 48 70 4b 59 -
- -44 e1 24 d3 ef 8b bf 63 fd f3 88 27 -[3975 more] -
-id=7 timestamp=64 body_size=4027 content_type=0x09 dest=1 -7.504 s
7.506 s -
- - - -  Video 4027 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 ca 15 31 4a ce 3e 60 c6 90 bc -
- -3f 57 a5 89 b6 6a 66 ed a6 98 db cb 7f 3b bc c8 -
- -ed e7 94 45 f2 a1 cd 46 0c 08 2a 13 43 61 dd d9 -
- -c9 97 6b 0d 58 85 9f 94 f0 c7 31 d2 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -7.506 s -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 d0 16 6a 0a ca 3e 60 -
- -c6 b4 da c1 45 00 8e a6 fe 9e ad f9 28 47 2a c4 -
- -84 51 7f 3d 67 3f 35 f5 54 b5 c4 d4 dd d5 93 e9 -
- -55 19 ce ab 28 7f 71 e0 0b a1 60 10 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c cd 09 24 00 f0 40 02 5f c0 34 -
- -42 96 f2 36 6d e4 9c b0 7c b5 9b 79 22 a0 1d 9c -
- -a5 ec e4 6d b2 fc c6 c5 12 2f 48 57 1a fc 49 5a -
- -32 ff 89 1b dc c8 48 13 6e 58 e9 17 -[3225 more] -
-id=7 timestamp=64 body_size=3277 content_type=0x09 dest=1 -7.643 s
7.646 s
7.648 s
7.650 s -
- - - -  Video 3277 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 d1 17 09 b6 cd 9e 4a -
- -06 95 8e 2c 29 09 dc 96 75 7c 94 cc f6 2e 36 4a -
- -73 e6 7c 9a a6 59 27 73 d0 8f 33 39 99 18 d3 f4 -
- -75 35 5f df 46 b4 fe ee b1 42 25 86 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 cf 17 b1 8e cd be 61 -
- -86 91 44 08 15 11 d4 68 e1 4d cb b4 b4 f8 a6 cd -
- -99 ca 28 20 53 4f e1 e4 66 44 d9 ef a0 8a 9a 13 -
- -0a 95 ae b1 30 f4 0a 32 b4 55 b5 4d -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 60 09 24 00 f2 40 5c c8 bc 00 -
- -00 4a d6 2c 93 09 e4 6c db c8 d9 c8 2a 0a 36 83 -
- -0b bd 5f 96 d2 1e b9 51 6f 23 66 e1 2b 13 13 89 -
- -7d e7 1d bd 9d 08 93 7f 7d a9 c5 33 -[4044 more] -
-id=7 timestamp=64 body_size=4192 content_type=0x09 dest=1 -7.652 s
7.654 s
7.656 s -
- - -  [fragment] - -
-c7 75 46 a1 e1 4e c7 6a 2b f3 aa 72 cb f9 a7 87 -
- -cc ee 58 c4 90 e1 d2 4f 4e d3 f5 62 81 5f 18 23 -
- -dd 72 ce 30 ba 14 5e 3a 35 b4 dc 89 ff 0b a9 7c -
- -b9 a4 3d 41 d4 5c cc 6e 0a 2b 29 e5 -  [37 more] -
-id=7 timestamp=64 body_size=4192 content_type=0x09 dest=1 - -
- - - -  Video 4192 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cb 17 01 c6 ce 3e 48 -
- -c6 95 59 66 f0 4a 42 2a e5 91 e0 5f b4 23 d4 e7 -
- -9c 2f 24 90 94 c6 5a 8b ab 4b 29 98 c4 09 cc 23 -
- -be f1 44 96 e4 ed f6 5b 61 11 fd 84 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 ca 16 39 42 cd be 60 -
- -c6 91 41 6c 4f 4b 6b 0c 32 64 b1 dc d4 e8 a2 b9 -
- -ff 9d ec 84 53 84 9a 6f 4d ae 6c 64 f2 b0 63 33 -
- -ea f4 ae 7f 5d e7 dc 8a ed 95 9f cf -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cc 15 fa 12 c4 f6 60 -
- -c6 b4 77 26 d0 ba 4a 0e d2 ae 24 92 05 01 19 d2 -
- -6e 72 94 f2 20 b6 5f 2c 43 3c e5 60 16 48 f6 b2 -
- -33 4c d0 d4 f2 56 56 3a 48 0f 24 02 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f be 09 24 00 f2 40 5f 17 22 50 -
- -00 07 67 23 68 39 92 82 ac 1f 7c 48 dd 28 bd fd -
- -4a 27 2c 5b f5 39 cb 82 f1 23 66 d6 73 98 ee f7 -
- -55 16 6e 1b d7 d7 0a 1e a1 c1 74 39 -[3978 more] -
-id=7 timestamp=64 body_size=4030 content_type=0x09 dest=1 -7.662 s
7.662 s
7.662 s -
- - - -  Video 4030 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cf 16 b2 b6 d1 9e 78 c6 b8 dd -
- -94 95 06 cc c9 13 95 4d 92 56 07 ca f3 8c 77 5b -
- -fb f9 57 3d 2b 75 23 17 95 3a 5b fc b5 cd af a9 -
- -93 7d 9a 1a 84 3f 7d d8 42 07 34 38 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cf 16 d9 b2 ce 3e 48 c6 94 74 -
- -62 02 b0 87 13 6f 99 79 28 79 0c ce ac 99 43 b9 -
- -dc ab cc 8c ad b9 fc a5 25 26 73 20 42 9c 05 73 -
- -7d 37 0f 57 4b 1b 3b e0 23 ed 90 fa -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -7.793 s
7.798 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c 83 09 24 00 f0 40 43 0f 92 f2 -
- -03 1b e0 f4 65 99 fd 3e 94 fe 83 a7 10 09 a6 c3 -
- -a1 aa 94 fe 9f 4a db 7f 6d 40 ff 89 88 84 3c 1e -
- -08 bb 6f 7e 03 0f 7e c5 da 2a 09 d7 -[3151 more] -
-id=7 timestamp=64 body_size=3203 content_type=0x09 dest=1 -7.800 s
7.802 s -
- - - -  Video 3203 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 ce 17 82 22 cd 9e 48 c6 b4 83 -
- -1d d5 5e 14 36 5d 96 62 85 39 0f a1 78 bb 0b f6 -
- -fc e9 27 91 ca 25 90 d6 2a 41 49 25 23 d2 12 17 -
- -4a 66 5a 0e c0 2a 2f 4e f6 42 ba 51 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 cb 16 39 8a c9 9e 60 -
- -c6 91 56 3c 50 c8 06 a4 e7 1b 65 7a 8d 5d e5 dd -
- -98 a7 f7 cd ac 79 f9 dc b1 51 f2 bd f4 e0 51 48 -
- -1e 05 19 a5 7b 4c b5 9a 8a 42 20 c5 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 cd 17 01 a2 d1 be 60 -
- -c6 95 4e 6c 22 81 51 76 02 27 47 22 20 48 0a 8f -
- -09 b6 8c 9f df 35 23 0c 5b 19 73 4e 53 ea 34 28 -
- -4c 51 e9 c3 d1 ed 5e b1 9e ec d5 ce -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 10 25 09 24 00 f2 40 03 c2 1e bb -
- -bf bc 1e 2c 86 cd 0b 19 4d 33 66 ce 19 50 f1 41 -
- -9b 36 6e 76 d8 f3 d4 b4 48 91 75 a6 93 76 07 3d -
- -c7 91 ee f8 c3 2a 48 b9 a8 52 9b 92 -[4044 more] -
-id=7 timestamp=80 body_size=4133 content_type=0x09 dest=1 -7.804 s
7.806 s
7.807 s -
- - -  [fragment] - -
-c7 b4 63 f0 13 ed 0c 7f 91 ae ee ea 82 42 60 36 -
- -31 3c bf 72 4b d2 0d d8 52 cf 7f 7b db 1b b0 7c -
- -60 fc 31 16 00 00 -
-id=7 timestamp=80 body_size=4133 content_type=0x09 dest=1 - -
- - - -  Video 4133 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cc 16 f2 0a ce 3e 60 -
- -c6 b4 e0 cd e7 af ac db 6c 3f 3b fa b3 73 c1 a1 -
- -9e 5f d1 25 d3 ed 3f ac 8d 24 ad d2 b4 e2 11 be -
- -51 69 70 4b 1a 1d b0 9a fe 91 c6 65 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 16 d2 1e cd 9e 48 c6 b4 c0 -
- -43 a2 09 c8 d8 42 bc d9 8d 96 28 c4 40 95 d4 1d -
- -86 fb 48 83 be ed 31 b4 f2 9f 8d fc 10 e5 0c f9 -
- -d7 eb 85 c9 da 13 90 88 55 75 05 92 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ca 17 21 aa c4 f6 61 86 95 2b -
- -87 63 0e 17 1a c2 5f c8 89 72 16 a5 d7 99 5b 91 -
- -21 d3 d7 ff b3 db 7f 88 bf fd f6 91 34 19 c9 23 -
- -94 8e ac d2 35 2d 2f 26 a1 50 d9 1f -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -7.947 s
7.950 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 04 09 24 00 f2 40 42 19 12 21 -
- -01 72 a5 fa 3b 23 b2 3b 34 43 64 36 44 fa ad a8 -
- -8c b1 70 62 33 c3 64 3f e4 b1 ce 8e 3a 65 db 46 -
- -40 1b ba 7e 55 9a f4 41 7c b8 fd 25 -[4044 more] -
-id=7 timestamp=64 body_size=4100 content_type=0x09 dest=1 -7.952 s
7.954 s -
- - -  [fragment] - -
-c7 40 00 00 00 - -id=7 timestamp=64 body_size=4100 content_type=0x09 dest=1 - -
- - - -  Video 4100 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 c8 15 c8 b2 c9 9e 60 -
- -c6 6d 9a 91 cc d9 81 3d ec 70 35 06 ca d5 45 a2 -
- -21 45 22 1c 1e 70 65 3d a3 d9 a7 cf 34 2f f7 a4 -
- -53 6d ef 1e 28 f0 cd 22 9a 14 9c f4 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cb 18 81 ee c9 9e 48 -
- -cc b5 eb 6e d3 c7 22 60 61 f7 cd 47 52 aa e9 73 -
- -22 73 ad 72 13 49 32 a5 fd 33 39 5d 1b cb 3c e1 -
- -73 ca 95 23 1c 58 ea 83 23 2f 19 a3 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -7.956 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c ff 09 24 00 f0 40 43 38 92 ee -
- -40 d9 04 9f 3e 4f a7 49 f3 a4 f9 f2 7d 3a 4f 9d -
- -30 b6 e0 ba 4f 9d 86 4f a3 33 ce de e3 66 7c 97 -
- -38 aa 85 37 ab 4f a2 0f b6 d7 1b f6 -[3275 more] -
-id=7 timestamp=64 body_size=3327 content_type=0x09 dest=1 -7.958 s
7.959 s -
- - - -  Video 3327 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c4 16 01 ca cd be 60 c6 94 eb -
- -9f ea d5 e8 c1 20 b3 30 64 0e d6 f4 19 ca 9b 02 -
- -74 18 dd 15 ca a6 7e 4d c3 8f d1 cc f7 e2 7b 59 -
- -26 35 82 17 18 e1 c4 3b 1c 88 69 61 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -8.097 s
8.100 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c7 16 71 ae cd 9e 60 c6 94 91 -
- -68 94 71 43 d4 26 0a 00 c5 27 7c 45 53 a7 76 bb -
- -b5 45 4f ee ec 52 69 f2 97 f9 4e 33 4a d9 b2 17 -
- -d7 3a 46 43 11 53 3c ef 35 24 66 cb -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 c8 16 5a 12 c9 9e 60 -
- -c6 b4 bc 72 55 81 d1 59 b8 cc 16 60 a9 87 1d 19 -
- -cc 9d 4a 17 ff 13 d9 1d 73 23 c8 a4 2b 4e 96 95 -
- -45 dd c5 97 bb 52 a5 7e 3b 57 12 b7 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 94 09 24 00 f2 40 00 04 f6 40 -
- -8f e7 49 f3 a4 f9 f2 7d 43 01 f0 f2 4b 3f 85 2d -
- -f6 0b c4 49 3e 7a 4a de 77 a6 8c b5 0b 6d d0 b9 -
- -18 14 d6 64 1e 59 16 c0 c0 91 77 82 -[4044 more] -
-id=7 timestamp=64 body_size=4244 content_type=0x09 dest=1 -8.104 s
8.106 s
8.108 s -
- - -  [fragment] - -
-c7 9f d8 dc 30 06 96 75 59 a1 a1 6f 83 45 09 06 -
- -77 be 6d ee ce e2 8c ad 3d d7 09 62 c4 09 33 b2 -
- -6a 06 59 6d 22 8d 9c 66 e7 8a 06 ca 03 64 da cb -
- -71 43 a3 da 54 bd 21 3f be 8a fc c1 -  [89 more] -
-id=7 timestamp=64 body_size=4244 content_type=0x09 dest=1 - -
- - - -  Video 4244 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 c9 15 f1 fe c9 9e 60 -
- -c6 b4 96 ae ff 1b fc fb 20 48 6a 60 f2 20 4c 2a -
- -74 9f f3 c1 84 35 33 b5 ef 92 81 9d 96 09 41 79 -
- -1d 35 23 88 24 02 2c a1 12 c2 00 91 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cc 15 b9 b6 ce 3e 48 -
- -c6 95 93 0d 18 88 88 0d f2 66 68 d0 8a 3b 92 0e -
- -95 f4 34 ca 90 97 33 72 37 38 0c 97 6a ee 43 18 -
- -45 a5 36 24 66 fc 15 88 84 a4 ac 0b -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f f2 09 24 00 f2 40 42 44 7f a2 -
- -54 19 9f ab c8 22 b5 9c e6 10 8b 63 84 13 70 15 -
- -ac e7 32 8a c0 7e d3 d9 e0 e8 f9 25 99 4b 88 41 -
- -6b 4b d1 da d3 d6 75 c9 6e 84 9f 53 -[4030 more] -
-id=7 timestamp=64 body_size=4082 content_type=0x09 dest=1 -8.110 s
8.112 s
8.112 s -
- - - -  Video 4082 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d0 16 91 82 c9 9e 61 86 90 24 -
- -24 35 65 24 e8 ca c8 64 2b 2a 35 69 69 e6 bd 15 -
- -5a c8 08 f2 33 d1 7f 32 e8 f7 34 5c a7 4f 6c 97 -
- -99 91 e1 4f 3e e4 5c f2 73 23 83 1a -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d0 17 c1 be cd 9e 60 c6 94 88 -
- -e6 10 8e 97 77 6e e8 69 03 0e d2 d7 cb cc cc e3 -
- -66 a8 5e e6 c4 d3 f9 6d f0 85 99 9a fd 9d aa 76 -
- -bc 4f da 89 bc 37 49 f7 87 c4 0b be -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -8.249 s
8.254 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cc 16 c2 16 c9 96 49 46 b4 25 -
- -a3 dd 8b 73 04 93 8e 76 57 c8 d0 cd fc 8f 49 83 -
- -be 41 7d 8d b7 9d 45 16 97 06 20 03 52 3a 84 64 -
- -d7 b1 c2 4d b0 60 84 12 02 ac 05 b8 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f f1 09 24 00 f2 40 00 00 03 98 -
- -42 0b 59 cf f9 1e 73 88 c6 8d c8 5b ef 41 0d 92 -
- -50 86 2c e7 30 84 1a 42 88 46 90 99 80 4e 37 ab -
- -68 31 d3 e7 8b f1 2f b4 f9 40 ab 36 -[4029 more] -
-id=7 timestamp=64 body_size=4081 content_type=0x09 dest=1 -8.256 s
8.258 s -
- - - -  Video 4081 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 cc 16 2a 0e c9 9e 48 -
- -c6 b4 f5 8a bc bb 12 1c 41 26 55 a4 3e fd dc b2 -
- -73 29 42 21 48 da 96 69 42 d7 8a e6 8f 6e 65 b9 -
- -31 c6 36 52 77 26 33 25 a2 b3 5a fa -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 -8.260 s -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ce 16 41 96 ca 3e 48 -
- -c6 94 85 63 bb 34 3b ee aa cb 6d bb 39 a1 33 22 -
- -f5 76 e4 cc 9c 8f 48 be 4c 36 ed b1 3c 21 51 26 -
- -20 63 80 0a 2d 10 15 c6 3d 7c 94 a8 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 d0 16 e9 de c9 9e 60 -
- -c6 95 10 27 30 a2 42 91 21 47 aa 3a 3b 99 87 c4 -
- -00 04 54 53 3d e1 f9 3d 8f 67 b9 bf 01 70 9c 00 -
- -96 db cc c5 c5 37 3d 51 b8 56 d4 76 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0c c5 09 24 00 f0 40 43 11 81 60 -
- -00 3f d3 e9 4f e9 f4 a7 fc fd e7 75 80 33 a9 4f -
- -e7 d2 9f f3 e9 53 6f c3 dc 62 37 3d 1c 86 1b ea -
- -20 24 23 23 d6 59 c8 04 80 1c f0 33 -[3217 more] -
-id=7 timestamp=80 body_size=3269 content_type=0x09 dest=1 -8.262 s
8.264 s -
- - - -  Video 3269 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cf 16 e9 c6 c9 9e 61 -
- -86 94 a6 13 71 bb bf 03 0f 0d 09 54 99 99 9d 2e -
- -89 cf e1 f9 1c dc bb fd 42 88 e9 e4 48 8a 18 91 -
- -ac 56 a4 e7 08 9d 50 fe fa c1 99 e0 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 ce 16 d9 b6 c9 9e 60 -
- -c6 94 20 a0 1b 09 96 19 07 25 10 e8 8d c6 be 6c -
- -47 8b 25 38 7b fb 73 a7 32 cb 5b a9 ad 16 8a 21 -
- -82 0c 02 84 a6 33 31 44 42 2b a1 da -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 6a 09 24 00 f0 40 2d 80 00 36 -
- -1c 03 4f a5 3f e7 eb c2 3e 95 00 2f cc f4 b7 e9 -
- -67 4d 3e 94 fe 9f 4a 7f ce 95 f0 b0 13 f3 ef fc -
- -42 ab bc 27 15 c7 cd 3b 74 6a c7 41 -[3382 more] -
-id=7 timestamp=64 body_size=3434 content_type=0x09 dest=1 -8.266 s
8.270 s -
- - - -  Video 3434 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cd 16 61 d6 cd 9e 60 -
- -c6 94 18 57 dc c3 0b d5 f3 dc 8c ea b1 8c a8 38 -
- -b4 22 ef 97 73 9b ce a1 53 64 65 e9 e6 70 da 1b -
- -b9 1c 1e 12 6e f5 c4 d2 62 a6 b1 b6 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -8.270 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ce 17 71 ea d2 5e 48 c6 b4 2b -
- -25 04 39 41 06 79 39 11 fe 51 89 78 4c a5 b1 4c -
- -f8 7e 28 d9 a1 55 b8 3b 82 33 86 41 85 aa 41 e7 -
- -57 7e 33 8c 7c 41 04 f0 50 04 3c 2a -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 16 f9 8e c9 9e 60 c6 91 eb -
- -8e 4a 0e 56 0c 14 cc d2 91 24 7b a2 08 b5 c1 51 -
- -12 5f fd cc ef cc 1a 13 1d 3b 10 f2 85 04 05 20 -
- -24 23 ad b8 2b 3e c8 b1 3c ef 2d 28 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 f0 09 24 00 f2 40 42 1b 7f a0 -
- -00 39 ce 61 05 9d 60 9f 26 d8 bc 2c f6 10 59 cc -
- -39 24 4f 95 56 c7 af ea 63 4b cd c3 2a 7f 01 52 -
- -b7 30 82 ce 6d e2 34 01 20 ce 04 cb -[4044 more] -
-id=7 timestamp=64 body_size=4336 content_type=0x09 dest=1 -8.401 s
8.406 s
8.408 s
8.410 s -
- - -  [fragment] - -
-c7 ae 90 17 f4 4f ab 58 9f 05 e7 d4 13 08 85 48 -
- -41 f1 4a 78 ba 53 75 39 e2 21 3d 6b a8 9f 3c 47 -
- -af 43 13 47 7f 8b 21 92 45 f1 46 88 1f 68 02 e5 -
- -7a 79 10 f5 55 71 a1 c4 35 fb f1 23 - [181 more] -
-id=7 timestamp=64 body_size=4336 content_type=0x09 dest=1 - -
- - - -  Video 4336 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 ca 16 99 92 d1 be 78 c6 90 96 -
- -44 95 c9 6a 8c 62 e1 15 3c 63 30 42 3d de d6 64 -
- -ce 41 16 1c e5 2a 99 b5 42 d3 8e 61 1e 99 19 69 -
- -4c 8f 8c fa 94 a7 4f d4 8a 11 99 33 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -8.411 s -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 ca 18 52 12 d1 be 60 -
- -c6 b5 a3 55 1f 8a c0 89 12 8b 86 24 9d ba 6a 3d -
- -27 54 48 ad 25 53 33 fc f8 91 27 1b fc f9 c2 dd -
- -74 1a 9c 38 a2 6f 4b 75 2e 27 34 3a -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 -8.580 s
8.580 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 82 25 09 14 00 74 46 0f 14 0f 14 -
- -3f 6e 97 27 01 70 1f 7b ff d4 f5 bf b1 e9 b2 f5 -
- -29 af fb 7f 88 39 27 c0 f1 f7 d1 5e 74 5a 3b 6c -
- -b5 62 9e c3 ac 02 26 b4 d5 81 f2 7f -[4044 more] -
-id=7 timestamp=64 body_size=33317 content_type=0x09 dest=1 -8.580 s
8.584 s -
- - -  [fragment] - -
-c7 a9 3c 4c 5b db 99 da 02 76 1e 3c 3e ee e4 eb -
- -30 f1 0c a2 e2 be 25 60 6d 28 85 1b 00 2f 8f 2e -
- -50 b0 90 b2 6b 31 c9 a6 b5 aa 60 18 d4 de aa 6d -
- -7f bc be bf 99 73 00 39 de 98 af 0e -[4037 more] -
-id=7 timestamp=64 body_size=33317 content_type=0x09 dest=1 -8.584 s
8.586 s
8.586 s -
- - -  [fragment] - -
-c7 ea ab 3c 9e c3 04 07 8b 9f 4a 91 02 f9 9e e7 -
- -60 fb aa 0f 55 57 52 54 ce 7c 74 6c 20 ee ee ff -
- -1a e3 8e fd 20 7b 93 79 ee a6 f3 12 a8 2c 5b 4b -
- -d8 f1 90 80 a2 d3 29 9b cf c4 76 b9 -[4037 more] -
-id=7 timestamp=64 body_size=33317 content_type=0x09 dest=1 -8.586 s
8.586 s
8.590 s -
- - -  [fragment] - -
-c7 a4 a6 78 9e b7 9d 42 01 28 3f f4 82 60 78 6b -
- -04 b5 65 91 d6 94 00 85 ed 81 a1 80 05 6e a6 8d -
- -f7 07 15 43 97 64 28 bd de 0c dd ee ba 1c d1 68 -
- -79 62 51 12 4e 5b 21 e9 5d fc e9 6e -[4037 more] -
-id=7 timestamp=64 body_size=33317 content_type=0x09 dest=1 -8.590 s
8.590 s
8.590 s -
- - -  [fragment] - -
-c7 7c 8c 9b a7 34 c1 54 a8 87 1b 3a 40 7b d2 f1 -
- -be 69 91 3e 25 59 8c f5 6b 4e d6 f3 c1 e4 7e 5f -
- -f4 c1 d6 fc 91 e8 c2 d8 60 74 3d 6e c3 31 41 93 -
- -0e 46 df 21 03 2e 9f 19 d9 4c 22 da -[4037 more] -
-id=7 timestamp=64 body_size=33317 content_type=0x09 dest=1 -8.596 s
8.596 s
8.596 s -
- - -  [fragment] - -
-c7 a2 8b 5e 2e 54 4e 4a 76 32 34 5d 0f 6f 37 69 -
- -fa 8f de c4 fc e7 79 fe 49 ac 25 ab 57 1c a5 a1 -
- -5f 9d 16 45 63 7a 88 b4 01 76 6e a0 d2 9e 27 33 -
- -92 1a f9 e6 dd 64 5c 87 17 16 7c 85 -[4037 more] -
-id=7 timestamp=64 body_size=33317 content_type=0x09 dest=1 -8.596 s
8.596 s
8.596 s -
- - -  [fragment] - -
-c7 8c c5 26 70 d0 2e 72 66 cc 15 e6 e2 42 9f 93 -
- -75 ec a5 77 6a 81 87 11 d3 84 a0 79 db de 05 fb -
- -5b 92 91 0c 7d 77 50 af 93 b3 3f cd 8e 3e fc 16 -
- -c9 4c ee 3a ea e7 fe 27 36 de 92 5f -[4037 more] -
-id=7 timestamp=64 body_size=33317 content_type=0x09 dest=1 -8.598 s
8.602 s -
- - -  [fragment] - -
-c7 08 d4 72 16 9e 70 aa 5e 81 b7 3a ac 76 a5 58 -
- -d4 2e 44 57 e0 0e 9b 7f ea a5 0b fb b3 e5 0f 9b -
- -12 54 5e 77 8e ce 3a fa bf 90 bb b6 03 62 37 a6 -
- -e7 80 b9 ad 35 25 76 de 99 61 74 1f -[4037 more] -
-id=7 timestamp=64 body_size=33317 content_type=0x09 dest=1 -8.602 s
8.604 s
8.608 s -
- - -  [fragment] - -
-c7 17 cb d4 2e 62 4d fd 3a f1 f2 4d 09 6b 4c 08 -
- -37 1e 72 a5 49 53 09 6b a3 02 8f b8 2b 6d 33 fb -
- -bf d0 a3 a6 56 64 e1 a0 21 de b8 02 96 a0 38 f7 -
- -f1 4c e0 23 71 16 c0 cc 37 a1 46 77 - [490 more] -
-id=7 timestamp=64 body_size=33317 content_type=0x09 dest=1 -8.610 s -
- - - -  Video 33317 bytes - -
   - - -    VP6( - -
   -0 1 1 1 0 1 0 0 - -      frame_mode=Intra qp=58 marker=vp61/62 - -
   -0 1 0 0 0 1 1 0 0 0 0 0 1 1 1 1 -
-   -0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 1 -
-   -0 0 0 1 0 1 0 0 -
-      version=8.3 interlace=0 dim=320x240 render=320x240 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 c3 16 2a 1e d1 be 49 -
- -46 b4 87 08 38 90 64 7b 3b 46 62 21 51 e2 b1 99 -
- -36 59 71 32 2a 47 d0 cc 7b 2c b5 58 96 ad 50 ad -
- -21 d9 78 e2 31 d0 60 85 a1 91 9c bc -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 c5 15 92 2a d1 9e 48 -
- -c6 b5 0c 21 58 6c 60 87 8e fb a1 ce 11 ac 4c 13 -
- -25 68 53 85 aa 97 db 0c ad fc e7 cf a5 65 c8 c3 -
- -11 05 d8 7b 49 c9 c0 01 13 46 53 18 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c9 16 c1 be d1 9e 48 c6 94 3e -
- -bc 52 18 89 c8 e9 0d d3 3d cc ac 91 58 dc c1 1c -
- -96 72 db 9e 52 ef aa ef 6c c3 2a 31 19 07 87 e0 -
- -8a 92 d4 a4 6a 71 34 23 18 32 30 b4 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c e0 09 24 00 f0 5a 9b 93 7f df -
- -c2 d9 f3 4b 85 4f ef fe e0 6e 9a 16 cf 53 f3 8c -
- -3e 21 79 b1 1d 7a 7c 09 ff c3 5f 27 73 21 4f 49 -
- -b4 7f 9f e9 f5 5f dd 3e da bd b7 fe -[3244 more] -
-id=7 timestamp=64 body_size=3296 content_type=0x09 dest=1 -8.612 s
8.614 s -
- - - -  Video 3296 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c9 16 81 ae d1 9e 48 c6 94 b9 -
- -1c ed 1c 5e 73 13 63 bb e6 65 f3 5f 5f 31 72 92 -
- -61 ca 8f ad d9 da 3c a5 b0 23 2b 3c f9 58 eb ff -
- -55 5b cc e1 d2 a7 0c c8 fb 01 e6 6d -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 ca 16 99 be cc fe 60 -
- -c6 94 f6 b9 7a 3d 58 0e 98 11 50 5b a9 66 a8 29 -
- -8b 2c e1 29 24 c6 29 d2 5d a9 be 6e ac 84 72 89 -
- -08 b1 2b 05 37 35 24 59 a2 5f bf ad -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d c4 09 24 00 f0 40 74 76 bc b7 -
- -84 59 a0 7a a6 32 d5 4d e3 d5 5b eb d6 02 78 77 -
- -e5 e7 54 1e a7 ff 82 a5 20 80 5f f5 54 b7 81 0e -
- -85 d4 f4 cc ad 0a 78 00 f3 86 06 99 -[3472 more] -
-id=7 timestamp=64 body_size=3524 content_type=0x09 dest=1 -8.616 s
8.618 s
8.621 s -
- - - -  Video 3524 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 ca 17 0a 22 ce 5e 61 -
- -86 b4 5e 90 48 6e 8c 79 22 2b ae 88 2b a6 24 c1 -
- -30 f2 94 bf 9c 6a 78 55 9f fb e5 b2 75 ea 7b c1 -
- -fc 52 92 b6 c9 8b d8 a7 b6 bc 86 bf -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c8 15 a9 f6 d2 3e 60 c6 b4 2b -
- -72 4b 25 39 1a 01 38 92 29 46 64 97 0b 24 8a dd -
- -32 c8 dc 98 fe 29 67 93 8c 5e f7 9d 2e 64 e8 09 -
- -c3 b8 a4 06 7e 55 08 b2 aa b0 a9 d3 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cc 18 82 22 cd 9e 78 cc b4 b1 -
- -3d 30 a5 dc b0 9a 98 f0 b4 51 ef 57 79 c2 4e 9c -
- -3a 7e 55 6c 3b 25 2d b7 de dd b3 88 47 c7 99 d3 -
- -62 67 c9 dc ff ef ee 47 a3 48 c4 ad -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -8.705 s
8.708 s -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0d 88 09 24 00 f0 40 09 45 c0 12 -
- -ff 43 85 60 55 52 aa 9f ff db e0 ba af ba b5 99 -
- -35 22 7e bf 26 f0 50 a4 07 69 1c ce 20 11 ec a4 -
- -18 aa 3a 02 51 91 7e b0 26 52 41 1a -[3412 more] -
-id=7 timestamp=80 body_size=3464 content_type=0x09 dest=1 -8.712 s
8.714 s -
- - - -  Video 3464 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 c5 16 8a 0a c9 9e 48 -
- -c6 b4 90 7a 4a 82 92 57 19 cb 5c e4 d5 b3 73 97 -
- -bd 47 3f ee 73 fa 6f 15 4e 6b 5b 08 b6 03 b0 30 -
- -3e 5f 17 bc 45 4d 65 ec 8a 09 5c 11 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 c5 15 72 16 c8 fe 48 -
- -c6 b4 f0 8a d0 0c 21 08 a3 9e cf b9 ba 1e 53 45 -
- -a5 b8 24 db d5 ce f5 b5 2b bd f2 78 8a c8 88 a7 -
- -b4 62 fe 86 2b 59 0f 9e ad 49 68 9b -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ca 17 19 b6 ce 3e 60 -
- -c6 95 9a 30 37 7e 0b 12 52 a2 a2 9a 4c 19 31 92 -
- -e4 a9 d3 eb 68 bb 30 b0 5b 3e fd e3 99 d0 18 75 -
- -66 69 42 af 2d e8 56 62 a8 5b f3 11 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 ce 09 24 00 f2 40 78 5a ba ea -
- -c1 d6 ff d8 d3 f3 e9 73 f4 f0 91 ba 44 93 ff 5e -
- -57 fd 30 7f 6a 10 c9 e2 b4 16 f4 85 53 a5 b7 10 -
- -67 5c 20 b5 4c 3e 2e 9b 94 f2 4e aa -[4044 more] -
-id=7 timestamp=64 body_size=4302 content_type=0x09 dest=1 -8.716 s
8.718 s
8.726 s -
- - -  [fragment] - -
-c7 5d 1f 2a ea ea 12 3e 26 1a 5e 14 95 01 5c 64 -
- -b1 7a 9b 5d 99 33 32 d8 39 a8 72 e2 ee 31 26 4f -
- -dd 3f 00 32 ba e5 4f bf d1 a4 5a 71 d3 ed 86 db -
- -76 56 c8 0d 88 1e fb 4f 8f 8d 29 bd - [147 more] -
-id=7 timestamp=64 body_size=4302 content_type=0x09 dest=1 - -
- - - -  Video 4302 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c8 16 02 12 c8 f6 48 c6 b4 1d -
- -ab 36 68 eb a4 fb 03 39 06 a8 51 32 3c d1 3e 7c -
- -88 f4 a6 b9 e1 f0 4e 10 5a 63 0a 12 b9 85 22 c3 -
- -0c 40 78 fa 41 31 70 b1 12 ac 06 9a -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 15 e2 12 c9 9e 60 c4 b4 06 -
- -b8 9d da 99 36 94 06 ab 3e a0 e6 df be 9a 7b be -
- -3b c5 e4 eb a9 ab f7 da 8e de fe b3 b5 ce b4 1c -
- -9c 35 56 b8 d9 51 75 85 39 44 db 02 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c e9 09 24 00 f0 40 02 dc 8e de -
- -e0 00 b8 e7 1b e1 4f e9 37 1e e3 9c 72 7b fe 4c -
- -0f d7 81 1e e3 9e 17 30 0f 3a f7 b0 1d c7 28 bc -
- -73 cf fa 7e ae d4 c0 70 58 33 9c 67 -[3253 more] -
-id=7 timestamp=64 body_size=3305 content_type=0x09 dest=1 -8.726 s
8.730 s
8.731 s -
- - - -  Video 3305 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 ce 15 b1 72 cd 9e 48 c6 90 d7 -
- -35 e9 97 bf 2a 7c 98 ff 4f b7 c3 a7 ee 3e eb 66 -
- -56 ce 59 49 ec ca 3c cb c4 ba ec 62 c4 51 38 54 -
- -34 73 f6 5d a6 ba 4c 9e aa 74 b9 c8 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 d2 16 f9 72 c9 9e 78 -
- -cc 91 3e be f8 45 99 0c 1b 3c 0c 43 24 39 74 9d -
- -32 f3 27 3f 33 ef bd da 86 82 06 b2 b9 85 67 f2 -
- -37 d1 5e 14 f0 57 17 4a 08 18 38 4a -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 -8.857 s
8.860 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 76 09 24 00 f0 40 2d 40 67 c2 -
- -9b 44 0b 06 74 7c 35 c8 2a 4f 9f 29 f3 e5 41 94 -
- -24 fd 2c ea 94 f0 fc f9 4f 87 d7 2d b4 fa 15 cf -
- -94 f9 d1 85 21 91 da 06 ba 17 3e b4 -[3394 more] -
-id=7 timestamp=64 body_size=3446 content_type=0x09 dest=1 -8.862 s
8.866 s -
- - - -  Video 3446 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 d1 17 2a 12 c9 9e 61 -
- -86 b4 c2 15 c8 59 8f ed 80 d3 8a 38 92 2d d1 9c -
- -84 92 7c f2 cb 9b 1f 32 a4 84 a5 79 16 7f 12 da -
- -b6 93 9c 9f 4c f8 57 e5 22 e9 5b c7 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 cf 16 c9 b2 ce 3e 60 -
- -c6 94 21 6a 6c 79 b0 4d 42 f5 2a 0e 3a b6 50 a4 -
- -2e 36 6e 5f 14 db 6d 18 d0 f5 96 9b 04 9a 0a b4 -
- -94 5c 74 d7 d8 da 1c a9 48 5e a3 d3 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ce 16 21 ea c9 b6 60 -
- -c6 b4 5c a1 d8 37 68 a7 1d d2 2e 45 eb 7e ce 1e -
- -6e 79 85 d4 d3 c4 d5 b7 33 c1 85 c6 3f 78 3d 38 -
- -a8 58 c4 8d a6 12 bf 16 fa ec b6 d9 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 29 09 24 00 f0 40 00 09 ff 21 -
- -c7 78 1a 74 9f 3e 5c e9 46 93 e7 cb 0f 05 48 eb -
- -7a 15 4c 3f 9d 27 cf d3 18 ae f5 34 23 f4 e9 40 -
- -9b 7e 72 17 e3 85 43 ee 5b f1 47 8a -[3317 more] -
-id=7 timestamp=64 body_size=3369 content_type=0x09 dest=1 -8.868 s
8.870 s
8.870 s -
- - - -  Video 3369 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 d0 18 49 f2 cd 9e 60 -
- -c6 b5 78 1e f4 f4 36 9e 4a 56 48 26 3a d4 d8 f5 -
- -04 49 f5 c5 b8 80 63 9d 91 41 a0 88 c9 dd e5 74 -
- -65 74 62 1a 14 4c f3 6c c5 de f5 1a -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 c9 17 99 ae ce 3e 48 -
- -cc 94 07 ab b0 fb 10 7b 07 26 3a ef 6a 98 ee 68 -
- -84 5a d7 85 a4 a2 a1 4b fb 94 97 f5 66 fa 66 e3 -
- -1c 28 09 0a f0 e8 72 60 bb 95 de 37 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -9.103 s
9.106 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 11 35 09 24 00 f2 40 02 db 0e dd -
- -1d 9e 4e ea 60 40 3e 01 c1 4e e0 ae 05 a9 08 6a -
- -90 06 5e c9 fe f1 8b 29 f5 20 82 9f 2a a5 79 44 -
- -c8 ed 90 38 1e a7 02 94 d4 5c 42 8a -[4044 more] -
-id=7 timestamp=64 body_size=4405 content_type=0x09 dest=1 -9.108 s
9.110 s -
- - -  [fragment] - -
-c7 89 74 4d 11 16 ed cb 21 51 70 2d c8 1d 72 8a -
- -cf e4 6b ad 4d 91 e2 14 85 5b 38 a3 74 02 e8 36 -
- -c6 e7 67 07 1a ff b4 75 72 a7 11 9a 54 d1 d0 5f -
- -92 af f2 1d 0a 11 94 c7 5b 33 1c 42 - [250 more] -
-id=7 timestamp=64 body_size=4405 content_type=0x09 dest=1 -9.112 s -
- - - -  Video 4405 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c5 15 98 8e ce 3e 61 86 4d 64 -
- -b6 29 6e 0d 78 d5 1c 89 e5 25 22 69 d5 0c 1d 2a -
- -71 ca 31 ce 13 d9 1a 22 bd 78 db 1c ed 98 31 21 -
- -52 f4 99 dc 70 f6 a4 b7 2c 8d 33 bd -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c9 16 31 7e d2 3e 48 c6 91 45 -
- -20 ec 21 04 de f9 9c 8b 28 40 a6 65 22 dd 0d f2 -
- -2f 8d d3 40 4f 59 a1 34 22 4b 64 a7 aa 26 ea a2 -
- -15 32 6a 9b d8 55 8d bd 9d a5 e1 f7 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 16 52 1e c9 9e 60 c6 b4 08 -
- -d0 81 b2 0f 3b 03 3e 0c dc 84 19 94 4f 82 08 a5 -
- -30 1f 5b 35 7e 76 91 73 14 60 01 01 3b b3 c7 cd -
- -6e 71 0d 1a d3 34 8e 91 8c e3 03 98 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0d 22 09 24 00 f0 40 02 dc 8e df -
- -20 c1 22 01 e9 fd 4a 7f d0 f4 18 7f f4 3d 06 6e -
- -0a 3d 4a 7f cf be 85 29 0f 97 0d 25 7f 34 18 0c -
- -78 36 d1 b2 78 87 dd 75 6a 76 41 6d -[3310 more] -
-id=7 timestamp=80 body_size=3362 content_type=0x09 dest=1 -9.116 s
9.120 s -
- - - -  Video 3362 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 cc 16 9a 0e cd 9e 60 -
- -c6 b5 06 43 1c 18 77 1a 10 b7 b9 53 27 74 13 c3 -
- -66 a9 fe be fb 29 a9 1e e6 eb d2 63 c9 11 20 97 -
- -71 c0 0b dc 6a 74 e9 50 e7 5a 23 90 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 cc 16 f1 ce c9 9e 48 -
- -c6 94 5f 77 18 29 83 10 ce 05 02 d3 27 85 99 89 -
- -57 8f 37 86 59 f3 f9 3e bd a4 a7 fc 4e 9b a2 06 -
- -30 44 f8 4a a8 b5 eb 88 72 77 25 a6 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cb 17 71 46 c9 be 60 -
- -c6 91 23 77 f5 b9 dc 92 91 86 af 58 40 2f 59 d2 -
- -e4 f5 50 31 9f 0d c8 5d 93 7f 2a a7 b9 89 2d 4d -
- -8b 56 56 38 68 0a 90 29 46 81 2b 1c -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d b3 09 24 00 f0 40 74 ad 00 01 -
- -a7 f5 2c 1a 59 fd 4a ec 29 fe bf 41 a8 7a 0c 3f -
- -f9 fc cf eb a6 d8 45 99 14 44 fa 8b d1 6d f7 a4 -
- -b0 0f 52 71 72 7b 78 f1 4a 23 f3 33 -[3455 more] -
-id=7 timestamp=64 body_size=3507 content_type=0x09 dest=1 -9.122 s
9.126 s
9.126 s -
- - - -  Video 3507 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c8 17 49 be c9 9e 78 c6 94 89 -
- -0a fe 72 be 82 01 07 bf 22 20 24 db 4e 29 59 77 -
- -bf 32 29 ad ab f9 2e 7b 55 d4 95 aa 39 4e 08 76 -
- -ac 00 8b 7a 59 b9 d2 2e 2d 1c 60 2f -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c5 16 89 96 d1 be 78 c4 95 41 -
- -0c eb 5a fe 61 22 11 fa 84 40 61 91 73 3c be 94 -
- -83 18 b3 27 24 22 3d 06 3e 35 e6 c0 d9 db 78 55 -
- -50 b5 6f cc f3 43 23 3f eb 64 48 46 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 11 4b 09 24 00 f2 40 07 45 34 f1 -
- -5e 7d 1b 02 62 8f f9 ea b4 4a 55 06 e3 73 d0 b1 -
- -62 59 05 51 e0 a2 12 62 93 0a 6e e0 29 e0 a7 96 -
- -23 ce 8a ad c3 ee d9 78 bb 77 8f 50 -[4044 more] -
-id=7 timestamp=64 body_size=4427 content_type=0x09 dest=1 -9.128 s
9.132 s
9.132 s -
- - -  [fragment] - -
-c7 58 fa 07 40 be 71 26 de 1e e0 03 e2 81 51 6d -
- -87 c7 6b 73 7e df 3d 7c 2f f7 d6 ae 2e cb 2e 12 -
- -95 eb d2 76 8a 4b 83 af 87 36 8c fa cd 54 ed b9 -
- -9b 55 74 04 ea 9c 64 fb e1 cd 9c 29 - [272 more] -
-id=7 timestamp=64 body_size=4427 content_type=0x09 dest=1 - -
- - - -  Video 4427 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 c5 14 b9 46 d6 3e 60 -
- -c4 91 b9 07 29 46 6a 28 cb a6 5c a9 86 31 5b 85 -
- -d5 bb ff ed 7b 68 e8 de a5 ea 54 94 ca e6 44 ee -
- -c4 70 d8 bc a6 57 9b 53 47 66 0d 8b -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cd 17 3a 02 cd 9e 48 -
- -c6 b4 38 a8 90 a6 7b ce 12 15 38 dd 28 53 eb f6 -
- -f9 22 67 d7 89 c5 2d 29 1d 3b 48 bf ce 76 5d cd -
- -cd 47 81 31 66 5b 4c ff 8a 44 1c 74 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 15 59 ca cd 1e 60 c6 94 0f -
- -22 b0 a4 20 8c d2 a2 c6 06 97 37 3f a8 7f 0f ee -
- -7c a1 63 65 05 2a 3a 1c 69 ea 68 74 cf 8b 94 8a -
- -e7 6e 6e 11 61 14 a9 2c b1 72 84 66 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 11 09 24 00 f0 40 02 dc 4e de -
- -e1 3a f9 0a 3d 94 a1 49 ce 4e 73 29 9c 9c e4 f2 -
- -6d e2 e0 2e 54 a1 47 ce 48 84 e5 c8 5f 4e f0 da -
- -8a 2f 1c f3 2c 7a 60 93 44 20 d9 a6 -[3293 more] -
-id=7 timestamp=64 body_size=3345 content_type=0x09 dest=1 -9.255 s
9.258 s
9.262 s
9.262 s -
- - - -  Video 3345 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d0 16 7a 16 c9 9e 48 c6 b4 ab -
- -07 52 28 50 84 b1 3b 07 d2 f6 b2 8d ea 87 57 fc -
- -cf 2e 32 82 63 96 1e 65 94 88 61 59 1d 21 85 61 -
- -8d ad af c4 59 d6 14 41 e1 f6 f6 03 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d1 17 fa b2 cd 9e 78 c6 b8 00 -
- -b7 50 c3 5a 9a c2 56 04 69 05 b9 40 c8 66 d8 80 -
- -f4 fd f3 27 a5 e7 72 f5 42 bd d4 90 d1 bb 59 45 -
- -a1 62 d0 9d 93 65 35 e2 53 7e 15 22 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d de 09 24 00 f0 40 00 00 03 ce -
- -3e 71 f4 2d 06 2e ed d0 43 a3 e7 38 6e 1c 3b 83 -
- -70 0a 93 e9 73 8f 9f 50 15 ce 7b 91 3c c8 de c8 -
- -9d 18 7f 4d 99 21 f1 9d 3e 81 7e 5a -[3498 more] -
-id=7 timestamp=64 body_size=3550 content_type=0x09 dest=1 -9.264 s
9.270 s -
- - - -  Video 3550 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 20 2a ff f3 40 c0 cc 16 c1 6a d1 9e 78 -
- -c6 91 5b 5f a2 a0 6d 85 9a 88 a9 d0 93 dc 54 a7 -
- -54 ec 2a ed 73 2a 5f f9 bd 13 d3 b9 fe bb 16 11 -
- -a9 fb ad 28 fb 63 91 58 14 8a 06 02 -  [49 more] -
-id=6 timestamp=32 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cc 17 da 1a ce 3e 60 -
- -c6 b4 1b 0a 19 50 5e bd b4 c9 8b c3 9f ee cb ba -
- -3f 0a f1 63 4f ef cf 44 27 de b9 97 2a 0f 9a d6 -
- -b0 f9 a5 3b 25 f2 53 a0 8b 0b 8b 7d -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -9.405 s
9.410 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d c7 09 24 00 f0 40 00 63 16 0d -
- -ba bf 9c 7c e3 e7 1a 3e 71 f8 0d 29 27 88 f9 c7 -
- -ce 3e 9b c8 22 48 e7 c7 cf 0e 42 ba b3 7d 7d ed -
- -4d 11 2b 7a 88 fb 2e 7a f5 8e 49 62 -[3475 more] -
-id=7 timestamp=64 body_size=3527 content_type=0x09 dest=1 -9.412 s
9.414 s -
- - - -  Video 3527 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c7 15 c1 72 ce 3e 60 c6 90 1e -
- -f0 17 14 f4 68 e4 1d df 1e 92 bd c5 70 fa b5 bc -
- -e5 96 40 44 b6 65 51 fd 0d 55 0c 6a c1 57 aa f9 -
- -57 38 f9 91 21 03 2d dc 1d 0a ec 56 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 16 49 c6 cd 9e 60 c6 95 cd -
- -a4 61 18 22 62 ce b4 35 bf 2a 6c 23 ca 6e 76 91 -
- -5c c1 d6 33 16 64 c6 c6 64 27 d1 59 6b b9 28 0d -
- -b3 b1 79 14 41 29 99 7a 48 47 fc 94 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 cc 16 e2 12 ce 3e 48 -
- -c6 b4 30 e5 42 e6 a2 51 f3 b5 10 b2 73 6f b9 9e -
- -f9 93 29 a5 3c 8e 25 7c 77 8b d9 d8 45 b7 92 04 -
- -b5 04 00 01 14 5a 80 9d 59 1c 1a 92 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cb 16 aa 1e c5 96 60 -
- -c6 b4 54 23 05 66 a1 83 09 90 8d cc 8e cf 7b 53 -
- -a1 ed b5 cf fc e7 1a d7 3c 22 64 d1 ba 9a 95 1d -
- -63 91 a9 d2 5f d4 8c b8 48 08 19 0a -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0e 0b 09 24 00 f0 40 00 44 30 00 -
- -f3 8f 9c 95 21 00 2a ff 8f 9c 7d bb 3d 86 a7 8b -
- -13 ed 02 79 d8 f9 c7 ce 91 90 a3 e7 23 57 77 9d -
- -8f c9 d2 33 cf 09 7b 2d 55 70 b1 7f -[3543 more] -
-id=7 timestamp=80 body_size=3595 content_type=0x09 dest=1 -9.416 s
9.420 s
9.420 s -
- - - -  Video 3595 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cb 16 8a 16 cc fe 60 c6 b4 99 -
- -d8 12 40 ac 22 91 48 db e6 85 58 98 72 12 ce 90 -
- -f9 f3 f6 f8 8c f4 d4 2d e3 c0 ab 09 7e a1 82 00 -
- -08 97 00 02 ea 9e 7b 0e 19 0b bd 8b -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 cb 16 d9 d2 d1 be 60 -
- -c6 95 d5 88 db 3d 20 7b 23 57 eb 26 85 e5 fe fa -
- -7f 6e c5 4e ca 4e e7 e5 92 51 5f 9d fd b7 f6 df -
- -72 ae 46 4a 44 d6 24 39 bd a7 19 41 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e 05 09 24 00 f0 40 00 00 08 5a -
- -01 27 39 39 c9 ce 4e 7c 1b 03 d6 d2 03 10 55 83 -
- -3e 3e 71 f3 8f 9c 7d 13 76 a9 38 be 8a bb 3e a6 -
- -12 ef 1b a7 01 e7 57 b4 4d 2d 07 f7 -[3537 more] -
-id=7 timestamp=64 body_size=3589 content_type=0x09 dest=1 -9.665 s
9.668 s
9.670 s
9.672 s -
- - - -  Video 3589 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 ca 15 29 5a c8 f6 60 -
- -c6 90 27 4a 3d 34 16 47 16 ad 6c fd 08 bf c8 f5 -
- -9e 65 ff 1e 6a 67 08 29 19 34 95 dd b4 42 6d 24 -
- -91 99 a5 2a 54 92 94 cf 25 ee 45 b3 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 d0 15 4a 02 ce 3e 60 -
- -c6 b4 35 9e 4b 76 77 68 6d 5a 6c f0 cc 9a af e4 -
- -67 f0 9a b7 bb 26 88 0f 94 8d a6 5b c2 67 88 1c -
- -31 35 38 08 29 65 67 c8 7d 67 82 37 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d cb 09 24 00 f0 40 02 5f c3 d1 -
- -83 c4 ad 72 f5 15 33 8f 9c 8b 50 9b e0 e3 e7 92 -
- -ad 20 53 51 7f e0 1e 6c 3e 71 f3 90 d8 04 7c e4 -
- -6b aa 92 a6 60 3d 50 93 44 d3 96 5c -[3479 more] -
-id=7 timestamp=64 body_size=3531 content_type=0x09 dest=1 -9.676 s
9.692 s
9.692 s -
- - - -  Video 3531 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 d5 18 02 9a ce 3e 60 -
- -c6 b5 41 95 ad ac fe ca 1c 11 50 c5 24 2b c3 99 -
- -32 e4 e9 11 45 9b c5 3a e9 51 2a b0 3c 9c 8e 07 -
- -07 00 e5 8d 15 2a 1a 14 3d 0e 06 84 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d0 16 59 7a ca 3e 61 86 91 8c -
- -ca 26 28 64 76 ba 14 a3 00 81 38 61 94 c2 44 87 -
- -91 1f f2 48 1a ef b3 53 d8 0f 32 80 e3 85 2a 71 -
- -db 67 b7 39 d1 fe 35 3a 8f c4 72 79 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d1 17 41 5e cd 9e 49 86 90 90 -
- -4b ef c8 6c cd a4 e9 56 f1 91 44 99 25 cb f7 fb -
- -d1 96 a3 55 94 c6 96 c2 63 eb 3e 65 78 5b fa d3 -
- -07 a1 e6 e6 b5 59 e1 f0 b7 5f 3a ac -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e 33 09 24 00 f0 40 78 e7 55 b4 -
- -00 36 60 61 08 e7 5b 1b 09 c3 ce b6 31 92 a0 90 -
- -1b 63 0e 43 1b 84 73 ad 8f a7 8a b3 f0 40 8e 75 -
- -b1 7c 48 1f cf b0 88 7a ab 8b cc f8 -[3583 more] -
-id=7 timestamp=64 body_size=3635 content_type=0x09 dest=1 -9.694 s
9.698 s -
- - - -  Video 3635 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cf 16 91 02 d1 be 48 c6 71 11 -
- -9d 18 49 99 35 66 38 6e b8 9a 74 c9 a6 b4 9b f2 -
- -e6 d9 9d 61 79 c4 34 8f 7c cc e0 a3 0d 0a 1a 14 -
- -f3 f7 3f 42 6e 47 ce 52 ea 42 f4 2e -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-03 00 00 00 00 00 8b 14 00 00 00 00 02 00 08 6f -
- -6e 53 74 61 74 75 73 00 00 00 00 00 00 00 00 00 -
- -05 03 00 05 6c 65 76 65 6c 02 00 05 65 72 72 6f -
- -72 00 04 63 6f 64 65 02 00 36 4e 65 -  [91 more] -
-id=3 timestamp=0 body_size=139 content_type=0x14 dest=0 -9.817 s -
- - - -  INVOKE( - -
   -02 00 08 6f 6e 53 74 61 74 75 73 - -    'onStatus' - -
   -00 00 00 00 00 00 00 00 00 - -    0.0 - -
   -05 - -    NULL - -
   -03 - -    object { - -
   -00 05 6c 65 76 65 6c 02 00 05 65 72 72 6f 72 - -        level: 'error' - -
   -00 04 63 6f 64 65 02 00 36 4e 65 74 53 74 72 65 -
-   -61 6d 2e 56 69 65 77 65 72 43 6f 75 6e 74 2e 6c -
-   -69 76 65 5f 75 73 65 72 5f 67 65 74 74 79 73 62 -
-   -75 72 67 77 61 74 65 72 67 61 72 64 65 6e 73 -
-        code: 'NetStream.ViewerCount.live_user_gettysburgwatergardens' - -
   -00 0b 64 65 73 63 72 69 70 74 69 6f 6e 02 00 01 -
-   -30 -
-        description: '0' - -
   -00 08 63 6c 69 65 6e 74 69 64 00 41 c7 b5 60 26 -
-   -80 00 00 -
-        clientid: 795525197.0 - -
   -00 00 09 - -    } - -
- - -  ) - -
-03 00 00 00 00 00 74 14 00 00 00 00 02 00 08 6f -
- -6e 53 74 61 74 75 73 00 00 00 00 00 00 00 00 00 -
- -05 03 00 05 6c 65 76 65 6c 02 00 05 65 72 72 6f -
- -72 00 04 63 6f 64 65 02 00 1b 4e 65 -  [68 more] -
-id=3 timestamp=0 body_size=116 content_type=0x14 dest=0 - -
- - - -  INVOKE( - -
   -02 00 08 6f 6e 53 74 61 74 75 73 - -    'onStatus' - -
   -00 00 00 00 00 00 00 00 00 - -    0.0 - -
   -05 - -    NULL - -
   -03 - -    object { - -
   -00 05 6c 65 76 65 6c 02 00 05 65 72 72 6f 72 - -        level: 'error' - -
   -00 04 63 6f 64 65 02 00 1b 4e 65 74 53 74 72 65 -
-   -61 6d 2e 56 69 65 77 65 72 43 6f 75 6e 74 2e 54 -
-   -6f 74 61 6c -
-        code: 'NetStream.ViewerCount.Total' - -
   -00 0b 64 65 73 63 72 69 70 74 69 6f 6e 02 00 05 -
-   -34 36 36 37 34 -
-        description: '46674' - -
   -00 08 63 6c 69 65 6e 74 69 64 00 41 c7 b5 60 26 -
-   -80 00 00 -
-        clientid: 795525197.0 - -
   -00 00 09 - -    } - -
- - -  ) - -
-86 00 00 15 2a ff f3 40 c0 cf 16 f2 16 ce 5e 61 -
- -86 b4 6c 10 10 0d cb e3 25 46 1a 99 2b 9d 06 0c -
- -c9 bd a2 39 ff d8 65 d2 3e 7f fd b4 dd df b5 23 -
- -a1 23 84 b5 f5 56 5c 92 61 15 1f 13 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 -9.820 s -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 ce 16 c1 fe ce 3e 60 -
- -c6 b4 0e 0d a5 43 12 b1 a1 99 43 3d 90 2b b6 51 -
- -4d 35 0c ff 29 f2 62 37 e5 ff 52 ee d7 eb 89 24 -
- -46 0d e8 9a 84 0f fc eb d1 a9 71 77 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e 17 09 24 00 f0 40 75 98 00 01 -
- -8e 73 ad 8c 64 70 b9 b9 d6 c6 32 59 95 15 b0 6b -
- -86 c7 39 d6 c7 ba 08 11 cf 26 1e 11 04 67 e6 82 -
- -6c 47 12 c7 20 4c 93 03 67 98 dd 5e -[3555 more] -
-id=7 timestamp=64 body_size=3607 content_type=0x09 dest=1 -9.822 s
9.824 s -
- - - -  Video 3607 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 ce 17 81 ba cd 9e 60 -
- -c6 95 9f 9d b7 89 e8 b6 89 6e b8 8d 29 c5 3a ca -
- -e5 ca 3a 89 57 92 9c 84 ed 06 d7 99 c2 bb f0 03 -
- -cb af b1 96 ee 57 3f ca cf 7d 89 21 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 17 79 4a cc fe 60 cc 91 c2 -
- -74 d8 93 0d 6f 52 d7 86 d5 ca 58 8e 7e fa 0e 79 -
- -fe 44 da a9 2a 50 46 b8 ad 1e ab 09 b9 10 90 60 -
- -c4 f1 85 21 6c 7c d1 18 87 6a 5d c2 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d eb 09 24 00 f0 40 02 dc 40 b3 -
- -b0 05 c7 ce 3e 71 ff d4 08 3a 3e 72 07 8d cb c4 -
- -b8 61 ce 4e 72 88 fe 2f 69 61 f5 e5 bf c1 3d 77 -
- -1c bb 54 8f 6d fc 7c 79 bd 98 00 74 -[3511 more] -
-id=7 timestamp=64 body_size=3563 content_type=0x09 dest=1 -9.826 s
9.828 s
9.833 s -
- - - -  Video 3563 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c8 15 ba 12 cd 9e 48 c6 b4 29 -
- -da 27 5a 95 cf 4a de fa b9 12 44 a9 24 dd d5 d7 -
- -cf 52 85 a6 64 5c 27 6c b3 09 69 67 94 0d 37 38 -
- -8e b4 d2 7b b3 e9 5c ee 74 9c e1 6f -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 cc 16 e1 da c9 9e 61 -
- -86 94 98 38 d8 bd dc dc 6e d7 d3 49 e6 d5 89 2f -
- -d1 4f 99 f3 fe fb b9 fd 49 c2 e7 f9 d2 9d 2a 72 -
- -ba 3c 1f 47 cd 79 b6 16 36 ac 25 ed -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cb 15 e1 fe c8 f6 61 -
- -46 b4 af 48 b0 66 68 18 58 7d 6c 14 a5 4d 58 bc -
- -8b f3 99 79 53 d8 ab a7 71 a3 86 4f b5 dd a5 59 -
- -25 28 ac f4 c8 90 cf 33 d4 ec 08 44 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 12 79 09 24 00 f2 40 0f f0 c5 41 -
- -d8 c4 e9 fa ff b3 ff da d2 2e 62 74 0f c3 49 e1 -
- -f7 18 49 c3 ed 74 4c da f3 13 3e 62 8a 4d 51 35 -
- -68 8f b5 23 af 7e 1f 1a ef 4f 02 33 -[4044 more] -
-id=7 timestamp=80 body_size=4729 content_type=0x09 dest=1 -9.967 s
9.970 s
9.974 s
9.976 s -
- - -  [fragment] - -
-c7 7d dc 6b 90 f5 a0 68 30 1b 37 e4 8b 5a e0 e4 -
- -07 4d fb 8b e3 19 ee df b4 46 73 c8 b6 ad 7b 23 -
- -74 1c 4b a6 9e 77 92 17 01 90 e2 ab 7c 70 24 0b -
- -7b 45 9c 85 15 09 91 82 93 df 22 71 - [574 more] -
-id=7 timestamp=80 body_size=4729 content_type=0x09 dest=1 -9.978 s -
- - - -  Video 4729 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 ce 16 aa 0e d6 5e 61 86 b4 0c -
- -81 99 c8 b0 89 81 97 1c 64 70 4c ec ea 4b df ff -
- -2e 72 6b f3 88 a1 50 d3 23 12 ca fd d4 ee a4 67 -
- -3d 8a 65 49 61 54 dc 9a dc ff 22 cd -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ce 16 a9 ca cd 9e 78 c6 94 9a -
- -ae a0 68 86 68 94 d0 22 91 21 f3 89 48 dd fd ae -
- -57 53 e1 ba c0 f1 50 8a a5 51 08 e0 88 b4 a6 87 -
- -c5 66 ee bf fd 3d f3 32 ef ef 4e 6c -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 7d 09 24 00 f0 40 02 db 95 a2 -
- -e3 b7 f8 00 cb 6e 0c cd c4 cf 97 f8 47 5b 43 39 -
- -02 de 46 e0 47 1d 43 c8 c7 84 6c e4 56 06 b2 36 -
- -b3 71 25 19 47 9d bc 07 49 7a 48 43 -[3401 more] -
-id=7 timestamp=64 body_size=3453 content_type=0x09 dest=1 -9.980 s
9.982 s -
- - - -  Video 3453 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 ce 16 f2 26 cd 9e 60 c6 b4 a1 -
- -03 f2 f4 2d dc ea 11 f5 5e 98 01 8a 10 ba 7f 32 -
- -bc 31 06 7d 35 e6 aa c2 bd 19 48 c8 99 95 c8 41 -
- -c9 99 e7 6c ac 55 88 db be 73 87 cf -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 16 2a ff f3 40 c0 cd 16 29 f2 c6 36 48 -
- -c6 b4 08 a6 a6 ba 1e 99 27 d2 39 58 96 f7 6d a6 -
- -78 53 5e f9 e5 9d 0f 29 2c 08 8d 56 32 b1 1a b1 -
- -fe d9 85 04 28 2a 1c 9e 6e 2d 43 ae -  [49 more] -
-id=6 timestamp=22 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cf 16 a2 1a cd 9e 60 -
- -c6 b4 35 9f 4a bb be 48 e2 c7 dd 54 b2 bc fb 6c -
- -62 ee 54 aa 9a 44 48 84 7f 43 2e 66 2d 74 2a 65 -
- -15 cc e9 4d b7 26 20 5c e1 95 54 ad -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -9.984 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e 12 09 24 00 f0 40 04 4e 41 51 -
- -58 01 71 33 6f 23 6f 22 66 e2 67 0e b8 c1 f6 0b -
- -79 1b 79 13 37 13 37 2c c8 e3 2a 47 98 fd 68 c3 -
- -58 49 ad 20 7e 07 aa 03 0e 3b 4c f0 -[3550 more] -
-id=7 timestamp=64 body_size=3602 content_type=0x09 dest=1 -9.988 s
9.990 s -
- - - -  Video 3602 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cf 15 f1 ca c9 9e 48 c6 94 0c -
- -e8 31 9d d4 d5 88 95 95 10 c5 29 2d 2c cd 13 32 -
- -dd 75 14 e5 db bc 82 42 d0 54 20 a8 8d 7e 1d 2b -
- -ec 69 11 01 31 3f 02 d1 c4 4a ee 4c -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d2 17 5a 16 ce 5e 48 c6 b4 32 -
- -6b d9 08 8b 29 55 ad 7b 5c 34 19 bf 3b 91 c8 fe -
- -95 fa 99 96 9b 4f 19 51 51 89 99 0c 29 22 ce 71 -
- -9d 1b d6 4c 14 8b bd 61 23 fb c3 43 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 9e 09 24 00 f0 40 2f 40 00 35 -
- -37 83 b3 71 33 6f 23 b6 08 44 cd c5 d3 d1 6b 8f -
- -5c 46 81 55 86 a5 99 13 37 13 0e f8 b7 95 89 cd -
- -22 ec 1e cf 05 65 d4 90 39 bb b0 ab -[3434 more] -
-id=7 timestamp=64 body_size=3486 content_type=0x09 dest=1 -9.992 s
9.996 s
9.996 s -
- - - -  Video 3486 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 cf 16 a9 2e cd be 60 -
- -c6 91 82 41 92 25 6d 8c ff 4b 48 98 95 0d c5 41 -
- -d8 cb 73 34 96 d5 99 79 11 43 32 26 84 4e a6 9b -
- -9d db f9 12 48 54 ca 1b 02 57 7d 1f -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cf 16 e1 ba cd 9e 78 -
- -c6 95 0d 1c 46 f1 ea ab 75 bb 6b df b3 ef 1d cd -
- -63 19 dc 9e 99 b9 b5 ca 52 f4 c8 e2 b9 9f 7c 82 -
- -d5 29 6b 5e fe 64 56 64 64 75 08 9f -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ce 17 31 ea cd be 78 c6 b5 3e -
- -d5 f6 33 5d 9a b2 af b3 74 ab 25 82 23 1e da be -
- -56 eb be 44 cd 73 be 5f f7 d0 eb de 2f 0c d9 79 -
- -b2 dd 10 bd ce 19 51 e2 13 12 ac 2d -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 99 09 24 00 f0 40 04 57 fa ed -
- -00 1e 44 cd c4 cd bc 8d bc 89 9f de bc 12 1f 8e -
- -14 2f 71 33 6e f6 b3 53 36 b0 cf fe 4e 7f 67 b0 -
- -ff f2 fd a8 70 e7 d9 f5 26 2b 30 b7 -[3429 more] -
-id=7 timestamp=64 body_size=3481 content_type=0x09 dest=1 -10.119 s
10.122 s
10.124 s
10.128 s -
- - - -  Video 3481 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cc 16 a1 ce c9 96 79 86 94 94 -
- -a0 b2 20 c6 9d e2 f9 10 ac ce c7 77 8b 5f f3 6c -
- -35 58 8c 66 46 54 68 b9 87 0b 30 59 88 86 52 95 -
- -1c 7a ac 38 50 bb b0 02 fe fb 1b bf -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 cc 16 92 0a cd 9e 49 -
- -86 b4 4f da 23 0a a2 70 12 aa 2f 33 6e 42 a7 77 -
- -0a d4 59 c4 90 b3 a7 c2 32 85 f9 7b c1 97 42 95 -
- -c5 85 a0 01 af 36 73 cf e1 f9 f2 1b -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 12 05 09 24 00 f2 40 03 55 f2 f2 -
- -b6 d5 79 e8 29 9d 48 fd 1a 02 c5 9e d2 94 81 ad -
- -a4 48 00 d8 82 da 55 c1 6d 22 3f fb 5c 38 f2 ae -
- -cd 48 d9 d0 8f fe 92 3f db 60 90 20 -[4044 more] -
-id=7 timestamp=64 body_size=4613 content_type=0x09 dest=1 -10.130 s
10.134 s
10.135 s -
- - -  [fragment] - -
-c7 d0 c6 28 0f 6e fb f8 e8 2c eb 5d 80 c3 d1 5d -
- -0f 13 51 9e 12 ad 46 40 07 12 26 42 22 26 c4 75 -
- -40 13 61 0f 75 99 03 86 4e c2 49 3d c4 f7 35 6c -
- -d4 6b c5 09 9f f6 d8 ca 03 cd 50 0c - [458 more] -
-id=7 timestamp=64 body_size=4613 content_type=0x09 dest=1 - -
- - - -  Video 4613 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 cc 17 71 66 d2 3e 60 -
- -ca 91 d4 c3 b8 7a c6 a2 11 80 21 1b f1 9a a9 14 -
- -0e 71 1b 34 45 92 fc 75 38 d2 8d a9 71 f8 fd c8 -
- -bc 3d 04 e0 98 6d a6 c3 e1 87 8b 9f -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 c9 16 ba 22 d1 be 60 -
- -c6 b4 80 09 91 d2 06 8c 28 ec 62 dd 0c 83 43 d6 -
- -e5 31 bf ff e1 58 64 47 9c 62 44 bd 10 69 a0 b8 -
- -aa 63 91 01 35 2a 61 5c 9c c2 a8 63 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c9 16 21 4e cd be 48 c6 90 42 -
- -22 18 20 a9 c8 66 f6 99 e2 ca 56 20 42 07 80 8c -
- -ba b9 6c ca 89 58 4f 43 2b 11 29 3a 0b bb 9e 76 -
- -20 68 45 ba 5d 36 d9 de e3 9b c1 ee -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0d 77 09 24 00 f0 40 2d f6 92 65 -
- -91 db e6 7b c9 b2 5f 86 06 9f 52 9f f3 fa 94 ff -
- -a0 80 09 00 9c 02 a9 4f f9 7f cf eb 1f 02 c7 4e -
- -e6 0a 84 2a 84 04 bd 18 56 b1 e9 79 -[3395 more] -
-id=7 timestamp=80 body_size=3447 content_type=0x09 dest=1 -10.269 s
10.274 s
10.276 s
10.282 s -
- - - -  Video 3447 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cb 16 a9 fa cd 9e 78 c6 b4 33 -
- -90 c6 83 30 60 40 dd d4 4d 28 85 ff 59 cc cb 32 -
- -5e 89 45 73 e2 21 49 76 e5 6f fc dd 4d da 26 92 -
- -cb f7 0c 55 e3 67 f9 9c 6e e5 14 f9 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 17 69 ae cd 9e 60 c6 95 07 -
- -14 b0 12 8a d2 a1 d5 72 52 39 66 7c a3 c9 5b 03 -
- -1d 4d 49 79 c7 97 ce f3 ac dd fe 67 bd aa 93 6f -
- -dd 7c 3d 4d b9 a5 3f a9 aa 38 3a 12 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 c8 15 d9 f6 cd be 48 -
- -c6 b4 ad 50 c6 af 45 53 6a 50 ef de a1 52 52 4e -
- -ca 46 67 dc be 94 27 de 3b da 5f fe d4 f4 3c 10 -
- -c1 d8 33 b7 1e b9 25 84 66 b8 a7 86 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 8f 09 24 00 f0 40 00 00 03 d3 -
- -fa 94 ff a6 d4 b3 fe 7f 52 a3 13 13 fe 7f 52 9f -
- -dc b7 6d 02 6d c1 11 40 5e 84 89 82 93 35 57 31 -
- -52 c0 de 75 bc 28 38 b9 89 61 1a d8 -[3419 more] -
-id=7 timestamp=64 body_size=3471 content_type=0x09 dest=1 -10.421 s
10.426 s
10.428 s
10.430 s -
- - - -  Video 3471 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cb 16 e1 8e d1 be 78 -
- -cc 90 62 b0 e9 ef be db 5d a3 5c ec 76 51 e7 79 -
- -d8 f7 f5 e3 79 7e 76 a5 06 50 dc 48 18 cc 1e a3 -
- -12 56 1c 92 95 75 1d d7 9e 38 b0 c2 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 ca 15 c1 fe ca 3e 60 -
- -c6 b4 86 99 2a c5 25 38 68 5a 13 1b 08 0d 87 83 -
- -66 7f e6 55 75 22 a9 93 bc dc ea 32 47 34 35 d4 -
- -9d 81 05 0c 8f 3c 10 4b 8a 38 5c 46 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e 19 09 24 00 f0 40 00 07 9f fa -
- -05 80 69 f5 29 ff 43 04 95 29 ff 58 1c a0 c3 d4 -
- -a7 fd 11 8a c9 22 a0 bf 11 53 a2 3e bd e9 27 66 -
- -6b 27 5a 9c 61 82 1f ee 9e d1 53 83 -[3557 more] -
-id=7 timestamp=64 body_size=3609 content_type=0x09 dest=1 -10.432 s
10.436 s
10.443 s -
- - - -  Video 3609 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 ce 17 39 9a c9 9e 49 -
- -86 95 50 82 60 e6 66 de 55 ad 27 8b b7 a5 62 ee -
- -2f 84 e2 f5 9b d0 65 24 89 c9 4c 34 24 41 84 93 -
- -c9 5f f6 dd f3 cb 55 33 85 4d 83 53 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cc 16 51 72 c9 96 60 c6 90 3e -
- -84 41 e5 36 f6 f2 93 1c 08 a2 29 e9 4f bb a7 7b -
- -24 dd cd f8 ce 75 5b 26 18 36 7a d6 a9 82 89 49 -
- -f0 e8 9c 4a 40 02 26 2c 30 c9 c1 b0 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 cd 16 21 f6 d1 be 5a -
- -06 b4 05 18 ec 7b bc 28 ec f9 3d 60 4b 99 39 66 -
- -9a bb 1c 33 9b 43 c8 a9 ef 3a 4c 87 8e 10 c5 29 -
- -3c d3 68 54 8f 72 ce db 1e e6 5d f3 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cf 17 01 6e d2 5e 4a -
- -06 90 20 82 a8 10 ba 37 29 9c 34 23 53 2d 23 4c -
- -08 bd 8e ad 56 a2 a6 c2 81 61 d8 29 0b 9a c6 24 -
- -59 64 ef 06 d9 0f be 29 92 3f 66 a0 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ce 17 12 0e c9 96 48 c6 b4 04 -
- -23 43 85 52 20 96 ce b0 e0 41 41 0e 82 43 2b 4f -
- -2c cc d4 49 14 c9 32 28 c7 9d 06 6a b1 0c e6 3b -
- -88 c5 c4 c8 52 05 e0 c3 b4 02 08 88 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 80 00 10 91 09 24 00 f0 40 42 1a c7 72 -
- -7a 35 e3 48 50 65 90 01 e7 c9 f3 e5 00 f9 1f 4e -
- -4f d5 1e 13 a4 72 7c f9 3e 9e 04 aa f7 ee c6 74 -
- -f3 7e d5 e4 9a ae ea 00 45 96 62 cd -[4044 more] -
-id=7 timestamp=128 body_size=4241 content_type=0x09 dest=1 -10.573 s
10.576 s
10.580 s
10.582 s -
- - -  [fragment] - -
-c7 f2 8a 78 34 ff 8f 92 4e ed 63 28 fa 83 01 76 -
- -5f c3 c1 31 a4 86 a7 40 d9 ca 18 17 bd 0c f5 15 -
- -c5 c0 12 7a f5 c9 cc 42 d7 5c 68 4f 40 30 ff ac -
- -fd 33 e1 72 be 1f e9 ae 7c 8d 98 99 -  [86 more] -
-id=7 timestamp=128 body_size=4241 content_type=0x09 dest=1 - -
- - - -  Video 4241 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cc 16 30 fa ca 3e 48 c6 71 d2 -
- -09 59 2b 91 03 1e cd 2a 3c 17 9f 0f 35 5f cd d0 -
- -1e e6 a8 a6 eb 90 7e a3 1b 16 95 2b 39 d9 18 3a -
- -ce 7c 3f b9 11 5d d2 30 72 86 06 16 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -10.586 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ce 17 69 9a ce 3e 60 c6 94 cf -
- -46 eb 67 2f 73 27 3c cd f9 8e cf af e7 e6 6f db -
- -f9 0e ac ab 88 d6 77 9b be c6 b8 f8 93 c9 be 2f -
- -4c e9 97 c3 9b e1 60 b1 05 9d 1f 63 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 12 91 09 24 00 f2 40 0f e5 01 71 -
- -cb fe fe cc 01 8f 65 f3 03 84 d8 d3 f4 fb 1b 37 -
- -0c f0 ee a3 fa 7c 68 9f 63 4f d3 ec ba 46 b0 38 -
- -a9 4c 70 3a f9 1e e5 f4 09 f6 27 d8 -[4044 more] -
-id=7 timestamp=64 body_size=4753 content_type=0x09 dest=1 -10.586 s
10.588 s -
- - -  [fragment] - -
-c7 cf e2 38 c2 fd 5a c8 d6 6b 1e 58 0a 5d 4f 6c -
- -d5 2a 63 84 1e 1d 84 40 59 09 77 74 b7 97 aa 2e -
- -ca 9d 01 df ac 65 38 27 7b 1f 07 94 51 a2 03 08 -
- -ed d7 d4 59 40 65 4a 92 87 53 76 6d - [598 more] -
-id=7 timestamp=64 body_size=4753 content_type=0x09 dest=1 -10.592 s -
- - - -  Video 4753 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 20 2a ff f3 40 c0 cb 15 d9 ba cd 9e 60 -
- -c6 94 55 e4 86 20 2d 56 02 59 bc 25 84 66 d2 69 -
- -e0 cb cd 8d 0b a6 f9 28 64 28 75 16 92 2b b1 db -
- -99 8a a8 66 6a 25 4b 78 45 b6 b0 f4 -  [49 more] -
-id=6 timestamp=32 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ce 17 b1 66 ca 3e 49 -
- -8c 91 7b 76 37 63 35 12 29 48 9c 98 96 94 5f 17 -
- -e7 c5 50 c1 ab f5 26 aa e5 7b ba ab 3a 01 15 4e -
- -38 63 3c 40 7a b5 ee 95 56 6b d2 6a -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ca 17 8a 06 c9 9e 78 c6 b4 ee -
- -ed 99 ec d6 48 a1 11 b3 9b 4d 4f 2f 63 ab 53 d6 -
- -17 95 b2 9c ee 47 0d d4 92 a2 b5 9e 2d e3 92 99 -
- -90 54 58 ea 19 e9 87 1e 02 22 60 44 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 11 88 09 24 00 f2 40 00 0d 49 dc -
- -8c 09 8e 5f 78 3b 03 d8 d3 f4 fb 1a c6 db 8d 60 -
- -27 5a 3e 9f a3 d8 d5 a8 bb bf 8d 84 70 3f 92 08 -
- -d3 f4 fb 1a c7 18 17 34 8a 43 c4 e3 -[4044 more] -
-id=7 timestamp=80 body_size=4488 content_type=0x09 dest=1 -10.592 s
10.594 s
10.598 s -
- - -  [fragment] - -
-c7 5e bd 95 fd 21 82 9d 9b 44 62 f4 f8 ce 05 0e -
- -ba 71 4d cd c5 df 5a 04 f4 ed a9 db 41 0a 32 3d -
- -0c d1 b1 15 84 da 42 81 a8 60 9c 86 98 08 b0 0b -
- -02 05 d7 03 be 6b 88 11 20 a9 db 9c - [333 more] -
-id=7 timestamp=80 body_size=4488 content_type=0x09 dest=1 - -
- - - -  Video 4488 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c6 16 6a 0a cc fe 48 ca b4 c3 -
- -55 30 e2 7e 50 af 78 fd b6 18 b0 57 33 23 36 5a -
- -0d 53 a8 f9 d0 c3 10 e0 91 97 89 e2 2b 0d 88 a9 -
- -12 4c ca c6 bc c7 56 33 df 68 4f c3 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -10.725 s
10.728 s -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 c7 16 59 86 d5 be 31 -
- -86 90 dc a1 02 e0 91 46 c1 65 94 cd 58 38 54 c9 -
- -b8 09 20 bc 28 67 08 8e 6f e6 60 c6 79 69 91 1e -
- -46 60 c4 e2 ce 89 74 8e 18 88 cf 31 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 c8 16 72 22 d1 be 48 -
- -c6 b4 c1 96 89 57 95 b1 67 45 9b 81 a0 2f 58 1e -
- -9a be 5c 40 63 9d 33 bb 1c d4 50 8f e1 9d ac 40 -
- -c8 c7 63 18 39 bb 79 d3 e0 24 a4 35 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 6f 09 24 00 f0 40 43 12 49 af -
- -36 31 dc 00 17 27 39 39 c9 da 11 33 a3 e7 93 90 -
- -a6 f0 7b 3f 8e 4e 72 73 93 e3 ce a5 6b 2d 90 5e -
- -31 f5 3c 2c 17 3e 31 9e f4 40 a4 26 -[3387 more] -
-id=7 timestamp=64 body_size=3439 content_type=0x09 dest=1 -10.730 s
10.734 s -
- - - -  Video 3439 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c9 18 09 7e d6 3e 48 c6 90 9a -
- -65 c5 9e b2 0f a3 0e 33 58 a6 70 e8 45 66 6f bf -
- -ae e6 2b f6 dc 6d ff a4 7e e5 9d ea 28 b9 e4 43 -
- -f7 78 c9 d2 5b 2e 76 9f 54 98 9e ec -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c3 16 61 8a d2 5e 48 c6 90 96 -
- -27 a1 38 51 a0 53 c5 36 25 49 2f f1 73 82 43 92 -
- -2b 7e 27 ea ef c6 57 fe 77 3c 61 04 c6 bb b7 be -
- -dd 99 94 f5 b2 dd 1d dd 43 85 66 12 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 c4 16 a1 ca ce 3e 61 -
- -86 94 d4 d6 93 c6 7a 48 ce db 0f 6c 5e 4f 9a e0 -
- -5b 2f c9 08 c9 bc cf 63 4e a0 60 38 11 68 95 84 -
- -41 92 3b 91 c3 97 60 eb a4 26 10 d3 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e 1c 09 24 00 f0 40 00 00 03 ce -
- -3e 71 f3 8f 9c 7c e3 f0 08 5c 8e 72 73 93 9c 9c -
- -e5 12 13 b5 2d cb c4 23 d9 05 5c fe 11 03 1a f1 -
- -71 e6 7f c5 34 2f 7f 10 a4 67 da f0 -[3560 more] -
-id=7 timestamp=64 body_size=3612 content_type=0x09 dest=1 -10.736 s
10.738 s
10.739 s -
- - - -  Video 3612 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 c4 16 39 66 d2 3e 48 -
- -cc 90 3e 9b 6a d2 61 e0 33 bc 04 08 a3 bf 57 3f -
- -c9 1c d4 ac e8 34 6e 93 36 49 a1 e5 bb 5a a8 24 -
- -0a 8f e0 c4 6c 8c 55 20 25 84 4d aa -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 c6 16 e9 56 ce 36 61 -
- -86 91 e8 28 70 ad 01 16 c6 0d 9a 0d 9a 44 0a 2a -
- -a5 82 05 23 29 7a 31 9d 35 68 2d 02 4d 15 db c5 -
- -24 77 0a 8b ab 91 d8 0c 55 76 08 60 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d d2 09 24 00 f0 40 03 be 26 51 -
- -20 0f 38 f9 c7 ce 3e 71 f3 8f c3 e1 95 94 79 c7 -
- -ce 4e 73 10 38 f9 36 c0 11 c8 dd fd e8 b8 bb 14 -
- -b4 16 7d 84 ea 56 aa dd 28 27 6a ae -[3486 more] -
-id=7 timestamp=64 body_size=3538 content_type=0x09 dest=1 -10.877 s
10.880 s
10.884 s
10.891 s -
- - - -  Video 3538 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c5 15 e1 66 c9 96 60 c6 90 28 -
- -94 60 82 02 89 62 30 ae ae 79 d2 a4 04 a8 41 d5 -
- -d7 47 42 99 a5 36 ea bb 8d 29 1b 8c 49 05 13 08 -
- -0c 81 ca 0a 3e 76 d0 c8 50 38 5d 21 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c8 16 f1 7a d1 9e 48 86 90 50 -
- -b8 d6 bd fd 53 5b c9 d7 46 16 72 b6 8b c1 ff cc -
- -df 2e 18 e7 62 07 a4 35 33 35 7c 7c c0 60 4b 23 -
- -e4 08 1b 10 a4 4c 2c 10 28 c7 0c 1e -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c7 15 01 42 cd b6 30 c6 90 19 -
- -92 18 62 24 00 0b 10 9c 85 d6 0d 9d 25 c6 3c 8c -
- -22 50 a6 8b a9 70 64 66 57 61 04 a3 bd 73 58 69 -
- -50 8f a7 b4 35 e9 cb 92 20 e1 95 3d -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 ce 15 f9 8a d1 9e 49 -
- -86 90 33 3e fb 59 30 40 04 70 84 20 45 70 e4 46 -
- -15 4b 52 2e 73 06 49 14 55 73 d9 a1 18 8d 21 60 -
- -8b b7 71 f0 4e 11 3d 00 1f bd a8 5e -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d1 16 b1 c2 d1 9e 48 -
- -c6 94 9c 4b 81 2e a2 5f 27 bb 49 14 72 59 9e 9f -
- -d3 09 09 92 e8 56 3a 8a 62 bb 93 4e 11 6b 95 23 -
- -7c 80 8a 40 c2 52 4a 0c 18 e1 8d dd -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -11.029 s
11.032 s -
- - - -  Audio 105 bytes - -
-47 00 00 80 00 11 00 09 24 00 f0 40 95 f1 97 e7 -
- -07 80 1e 71 f3 a0 bc 60 5f 1f 38 f9 c7 df 8e 08 -
- -fa 4a 71 7b 38 fa 25 ed 0c f9 90 f9 fe 12 dc 59 -
- -25 a6 bd e6 06 f8 ec 75 b8 c8 7c 9f -[4044 more] -
-id=7 timestamp=128 body_size=4352 content_type=0x09 dest=1 -11.036 s
11.038 s -
- - -  [fragment] - -
-c7 6c 9d e3 f5 c7 9d 77 93 05 c4 8c 62 a1 5f b0 -
- -2e d5 5b 5a 08 00 45 6b 63 53 8c 36 e4 3c 1a a8 -
- -93 9c 84 ba 5c e0 ab d6 06 7e e4 6f 96 31 30 4a -
- -d3 9b ae b3 b6 71 b7 a4 1d 0b cf 91 - [197 more] -
-id=7 timestamp=128 body_size=4352 content_type=0x09 dest=1 -11.040 s -
- - - -  Video 4352 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 d1 17 d9 56 d1 9e 61 -
- -86 91 91 ea 06 c3 79 fa b8 9d 79 b2 ef 26 5b 75 -
- -8b 8c dc 99 f4 da db 17 1a d1 10 81 d5 92 78 d6 -
- -7b eb 39 22 e0 73 aa 25 07 43 68 08 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cc 17 39 ae ce 3e 49 -
- -86 95 51 c9 c2 47 9a 75 86 51 7b 95 e7 9d bb 27 -
- -6c c6 e1 b5 ea 4f f6 83 3b 11 06 8e 21 b4 d2 4e -
- -3c ed 53 c8 49 93 11 9f 58 a9 7f d6 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ca 16 d9 3e d1 9e 49 8c 90 0b -
- -41 0d 27 3a 1d 48 42 11 10 c8 58 4d 1a 48 3b d7 -
- -a8 aa e3 2b 53 13 86 8e 3c a7 92 55 bf 94 7d c2 -
- -11 1d 94 14 32 a3 ae 14 78 4c 22 58 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0e 7b 09 24 00 f0 40 9c 15 b3 00 -
- -02 8e 48 1b 01 1b 8e 71 c8 f7 1e 01 5e 9a 0c 28 -
- -3c 8f 71 ce 2a 38 e9 75 75 94 34 0f 42 66 ea 8c -
- -74 1d 4a 36 b9 09 91 ce 27 b3 a5 94 -[3655 more] -
-id=7 timestamp=80 body_size=3707 content_type=0x09 dest=1 -11.044 s
11.044 s -
- - - -  Video 3707 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 c9 14 f9 a2 d1 9e 61 -
- -86 94 2a 2a 86 47 af 3b b5 72 18 24 14 40 d6 c1 -
- -92 6b 86 42 8f 9c 0c 54 2b b0 27 0d 8f c4 43 14 -
- -af 08 1f 40 80 c3 cb 83 48 55 f5 8b -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d0 17 21 ae cc fe 78 -
- -c6 94 66 d9 91 29 14 7e 18 85 4e e1 98 58 c1 48 -
- -b3 12 25 39 a4 21 ac f9 84 3c 88 a5 4f 28 5c 6d -
- -c1 9a 74 3c 78 54 92 18 50 69 70 24 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -11.044 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ce 16 f9 2a d1 9e 60 c6 91 8c -
- -4e 73 45 6f b9 7d 2d 2f 93 78 54 d5 cd 36 5e d3 -
- -76 cb 54 81 f0 64 f5 4a 85 10 08 0b 23 7e c7 c3 -
- -a8 10 b8 18 50 f8 8f 01 3b fc 67 a4 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 12 b6 09 24 00 f2 40 0f ea 23 57 -
- -69 eb 81 d1 b8 23 de fe f0 0e 18 ec 88 0d 43 ed -
- -43 ed 44 3b a0 1a 87 da 87 da 87 da c5 03 51 4e -
- -b2 43 30 fd 75 3d fb d3 04 14 3e d5 -[4044 more] -
-id=7 timestamp=64 body_size=4790 content_type=0x09 dest=1 -11.181 s
11.184 s
11.188 s
11.190 s -
- - -  [fragment] - -
-c7 7e c3 4c 01 97 b3 08 f6 8d 26 97 45 5e fd 07 -
- -7c 4a b5 b3 f9 93 89 be 30 d8 9d 5e 45 b1 11 a9 -
- -5b 38 71 42 e1 7d 9c 15 13 90 39 20 3d bd b1 39 -
- -7a 5e ec 75 6e 79 32 96 02 13 5c 62 - [635 more] -
-id=7 timestamp=64 body_size=4790 content_type=0x09 dest=1 -11.192 s -
- - - -  Video 4790 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cd 16 01 52 d1 9e 61 86 90 a2 -
- -94 45 9f 5b 68 73 3d b3 e6 ed ed 6c c5 6c e3 b6 -
- -4e 5e 66 66 4e 2e a6 79 b5 23 14 50 55 ac eb 92 -
- -76 b9 b1 33 b4 bc 3e 3f ce f5 25 bf -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 d0 17 a1 46 cd 9e 61 -
- -86 91 f1 c3 46 3d b1 84 cc a7 91 14 fc 8c 82 ab -
- -e5 21 94 fc f7 6e e0 87 6b 4f 5c 88 e8 5c 98 39 -
- -48 48 0e 30 ac d1 c3 ae 00 97 10 08 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e 08 09 24 00 f0 40 43 11 80 56 -
- -bb dd 1e 40 18 a7 f2 71 0c f0 cf 0c f0 ba 24 53 -
- -a1 64 74 43 3c 89 46 76 67 66 76 67 ab df db 04 -
- -41 98 86 00 27 28 53 7d 23 55 f5 68 -[3540 more] -
-id=7 timestamp=64 body_size=3592 content_type=0x09 dest=1 -11.194 s
11.196 s -
- - - -  Video 3592 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 cc 16 aa 12 c8 f6 49 -
- -86 b4 01 ea 77 bb 8d b3 0d cf 8c 7b 5e 77 7b 4e -
- -f6 77 cf ce d9 ff 8b 44 52 e3 44 32 aa 28 e1 38 -
- -81 06 19 45 90 34 45 04 e2 c8 d1 ed -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 -11.198 s -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cc 16 09 32 cc fe 4a -
- -06 90 bb a0 8a 38 3a ad 90 6f 95 cd af 46 6c 1b -
- -39 e7 08 e4 55 cf bf 4b 20 d2 a9 92 1a 21 ee e2 -
- -b2 40 93 99 8e a1 b1 01 42 c1 10 9a -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 13 0e 09 24 00 f2 40 02 d9 95 8c -
- -e2 07 ec 06 5d 60 4b 96 69 fa 35 8d 3f 4f b7 a9 -
- -ea cf 63 57 d3 f4 6f a8 73 4b 75 d2 3b c3 8b 67 -
- -88 f6 34 fd 3e c7 8c 5b 73 34 8e 0e -[4044 more] -
-id=7 timestamp=64 body_size=4878 content_type=0x09 dest=1 -11.200 s
11.202 s -
- - -  [fragment] - -
-c7 f5 28 57 07 8e 1d ad 8e b4 64 17 04 7c 0f b2 -
- -93 bd 65 4b 81 7b 45 2d 8d 4d 17 20 5f 9c bc 53 -
- -b5 a2 f4 23 d1 8e bd 51 a6 e4 bf 5b 32 fc 4c 20 -
- -9e 60 0f a6 04 71 c9 38 38 c0 76 a4 - [723 more] -
-id=7 timestamp=64 body_size=4878 content_type=0x09 dest=1 -11.204 s -
- - - -  Video 4878 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 ce 17 da 12 cd be 61 86 b4 b9 -
- -50 8c 95 39 96 d7 1f f6 66 9b 19 d8 0c 23 29 a7 -
- -ce 19 d9 cc 18 26 64 3b 72 ea 03 80 be d4 26 34 -
- -cb 86 e8 1e 3e 36 e2 52 4c 69 ec b7 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c9 16 11 5e d1 be 49 86 90 62 -
- -dd 21 42 1c 0f 20 68 26 2a 1c 64 a5 74 44 c9 d1 -
- -6c 5b 6d 2d 4c eb 99 e7 4e 26 97 ca 3b da cc d8 -
- -ac 5a 19 91 a9 7a d2 23 3d 0d d3 b1 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 16 2a ff f3 40 c0 cb 17 09 36 d1 be 49 -
- -86 91 cb 12 06 25 60 45 25 ae 13 ad 75 77 0c 7d -
- -cd ee 9f e6 45 61 e9 95 08 38 70 6b bd 56 23 b8 -
- -7b 05 1a 30 51 0c 5f 87 20 5e c4 1e -  [49 more] -
-id=6 timestamp=22 body_size=105 content_type=0x08 dest=1 -11.335 s
11.338 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e 36 09 24 00 f0 40 03 3a be f8 -
- -4f bf 27 fe e0 00 b3 64 78 ec d9 b2 3c 76 6c d9 -
- -1e 3b 36 6c 8f 1d 9b 37 2e 83 10 67 7b 06 18 96 -
- -fb 07 7e 83 33 cd 74 7a 50 8b 62 20 -[3586 more] -
-id=7 timestamp=64 body_size=3638 content_type=0x09 dest=1 -11.340 s
11.342 s -
- - - -  Video 3638 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 c9 17 3a 0e d1 9e 48 -
- -c6 b4 e5 fb a7 15 9a 61 1f 71 1b 7c a7 7d c7 a6 -
- -7a 88 27 73 a5 92 7e 7c f4 3f 27 52 09 0d 03 aa -
- -3c 77 76 28 ab 29 48 39 11 c2 24 7d -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c7 15 91 6e c8 56 48 c6 91 66 -
- -3d 13 2d 73 e6 10 ae fa e5 4e 7f 4e e7 58 ec 5c -
- -a9 9c 36 91 27 a3 68 0e cf 9a b5 cf 99 d1 04 63 -
- -ab 54 a4 f9 77 f2 fc 8f 32 56 c0 12 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e d9 09 24 00 f0 40 01 65 30 01 -
- -06 71 cb 36 6c 8f 1d c1 ef b7 29 84 48 ec d9 b2 -
- -39 ce 03 b3 66 c9 9d 44 71 9b 1d 0f a5 0f 28 12 -
- -6d 14 07 68 75 58 c2 96 e6 60 38 9e -[3749 more] -
-id=7 timestamp=64 body_size=3801 content_type=0x09 dest=1 -11.344 s
11.346 s
11.349 s -
- - - -  Video 3801 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cb 16 61 b2 cd 9e 61 86 94 9a -
- -a8 e6 8c 6f 91 8f b6 d1 75 9f e1 a4 8a 9e f9 f2 -
- -a6 f4 e7 4c fe a0 40 a8 f5 4c f6 21 6e ad 18 d8 -
- -87 30 4a 6a 84 bc 36 3c 29 9d 0c af -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 cc 16 32 06 c8 f6 48 -
- -c6 b5 03 d2 70 6d 02 c6 b0 d5 8b b2 b9 94 1c f9 -
- -42 e3 ee 44 66 81 73 c9 3b 9f 1d 72 cb 6b 45 53 -
- -5a 08 59 92 b2 41 65 b6 98 a2 7d 2e -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1e 2a ff f3 40 c0 ce 18 61 ce cd be 61 -
- -86 95 cb 3c 56 83 22 26 56 14 11 89 56 e9 98 70 -
- -95 96 a9 20 54 47 27 ec b2 71 73 ac b6 13 b2 5b -
- -35 37 91 81 16 c9 71 6b f7 ca 6f 42 -  [49 more] -
-id=6 timestamp=30 body_size=105 content_type=0x08 dest=1 -11.487 s
11.490 s -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0e b9 09 24 00 f0 40 01 89 4b 2c -
- -00 64 ac 22 3b 36 6e 10 c9 81 b2 3c 76 6c e5 10 -
- -c9 13 af 41 66 ca 7a e3 bf 69 16 4d bc 32 b9 11 -
- -d9 c1 ab 51 8e da 83 31 df 01 64 10 -[3717 more] -
-id=7 timestamp=80 body_size=3769 content_type=0x09 dest=1 -11.492 s
11.494 s -
- - - -  Video 3769 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 c7 16 51 6e c9 96 48 -
- -c6 91 d5 43 02 14 73 40 75 24 8b 02 a2 70 d8 a3 -
- -f6 29 67 50 0a 5b eb 92 cd 7e 5c b4 0f 08 61 ab -
- -d6 57 93 8b 78 30 8b 63 03 e3 58 f1 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c8 16 c9 4a cd be 60 c6 91 a7 -
- -3f 09 36 c2 c3 b0 8b 48 d8 17 5a 21 56 14 3c 31 -
- -ca c6 5d 94 6d 4e 9f bb 19 4a 24 87 c3 2a 1d dd -
- -8d 12 e2 d8 49 c1 a1 c8 ba d8 a8 c1 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c7 16 a0 8a d1 9e 60 cc 4d d7 -
- -c5 b1 3f 62 0f 43 83 37 12 0f 24 fc c2 e7 0a ac -
- -a2 b6 8d d6 ce 7f f3 df cc 8c bb 73 ca 68 51 d2 -
- -ac 0f 80 4e 0a 4b 79 02 9d d7 40 4d -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e 80 09 24 00 f0 40 00 48 94 92 -
- -40 c7 8e cd 9b 23 c7 66 cd 91 e3 b3 66 e5 d5 bd -
- -dc 3b 34 4a 78 07 72 c9 45 4b f3 fe 72 65 91 f9 -
- -6d 8b e2 51 5d c5 68 88 fd f5 d6 b0 -[3660 more] -
-id=7 timestamp=64 body_size=3712 content_type=0x09 dest=1 -11.496 s
11.498 s
11.500 s -
- - - -  Video 3712 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c7 17 6a 82 d6 5e 48 c4 b4 e0 -
- -f1 26 a6 a8 24 13 4a ea 84 e5 17 d6 96 1a 9a 82 -
- -04 25 60 fa db 0f d7 d8 34 b3 bf aa ba 92 6b 79 -
- -2e 71 bd 1c a5 86 7f 0d 08 3d 5f 23 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 16 2a ff f3 40 c0 c4 15 89 56 d5 9e 60 -
- -c6 91 c5 42 03 ae 20 28 ba 71 35 c9 c8 9c ae e8 -
- -24 58 24 00 40 74 eb 94 cc 1b 94 9f 95 99 09 b9 -
- -d9 f9 ba 4c b2 27 23 59 e9 f9 1c 27 -  [49 more] -
-id=6 timestamp=22 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e 98 09 24 00 f0 40 00 00 03 a2 -
- -3c 76 6c d9 1e 3b 36 6c 8f 1d 9b 36 47 8f 0e 00 -
- -ec dc bb 22 e3 fd f7 55 58 7d 64 3d 96 2d ea f2 -
- -60 78 b1 02 5a 6d f7 d9 b7 ed 58 26 -[3684 more] -
-id=7 timestamp=64 body_size=3736 content_type=0x09 dest=1 -11.504 s
11.508 s
11.508 s -
- - - -  Video 3736 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 c8 16 98 c2 ce 3e 60 -
- -c6 6d 33 eb 1a cc a0 d8 77 58 6c 02 4a 56 68 b0 -
- -9c 21 6c 6f 1a c3 41 a5 33 e1 e5 fc 36 2e 12 d4 -
- -f2 08 3b 98 98 29 c0 8c 23 87 40 c2 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -11.637 s
11.640 s -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 c8 16 f9 d2 c9 9e 60 -
- -c6 94 8d 69 2d 6b 75 76 42 f7 60 0c f5 ca ee 5a -
- -6b bf cc 7d e2 b0 cb 99 e0 f0 32 52 de fc e6 0f -
- -b9 46 01 d0 8a 75 7e 45 35 b3 79 ee -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 c7 16 f9 62 d1 9e 78 -
- -c6 90 91 59 18 91 46 0b 75 3d 5c d5 99 c3 81 28 -
- -e6 ef 11 18 92 e4 f0 cb 99 9b 33 50 82 3d 89 a1 -
- -d9 54 78 df 7d c4 59 ee 67 fc 07 0a -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e 92 09 24 00 f0 40 00 64 18 18 -
- -da 28 8f 1d 9b 36 47 8e cd 9b 29 ec 9b 0a 23 d3 -
- -d7 72 25 66 89 03 1e 98 e0 2e 19 2d 63 0a 3d a6 -
- -2b d7 5a b6 ac dd 10 6d b8 59 14 44 -[3678 more] -
-id=7 timestamp=64 body_size=3730 content_type=0x09 dest=1 -11.644 s
11.646 s -
- - - -  Video 3730 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c6 15 68 ce cd 96 79 86 6d 11 -
- -2b 3b 51 6a 02 38 78 45 77 40 e7 8e 77 14 26 8c -
- -29 33 a6 9d 35 8f 19 62 dd 98 c5 23 31 12 93 ec -
- -a3 a1 23 e7 eb 98 d7 76 9d 47 8f 6d -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1e 2a ff f3 40 c0 cb 16 99 1e cd 96 79 -
- -46 91 60 c3 a9 50 6a 18 0b 45 90 75 cd 37 90 b4 -
- -d6 2a 49 a7 9d cc c2 5f 1c 12 29 c2 17 3a bc 2c -
- -13 9d 7f 34 9e fe 87 99 1a 13 c2 d3 -  [49 more] -
-id=6 timestamp=30 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e ad 09 24 00 f0 40 00 4b 7f 09 -
- -47 ec 2c d9 b2 3c 76 6e 1c 33 11 e3 b3 66 c8 f1 -
- -d9 b3 64 ae 6b b9 75 f2 49 ec d4 f9 a6 8f 29 ab -
- -2d c2 4b 99 c9 5a 1e fa 25 a0 13 39 -[3705 more] -
-id=7 timestamp=64 body_size=3757 content_type=0x09 dest=1 -11.648 s
11.650 s
11.652 s -
- - - -  Video 3757 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cb 16 89 2a cd 16 60 -
- -c6 91 d4 6c 2c 12 eb 47 1e b6 e0 aa 10 37 04 bb -
- -90 b1 4a 32 ba 37 d5 06 26 44 22 8e 23 94 35 4e -
- -47 14 29 16 57 9d c7 83 40 27 04 08 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 16 fa 1a d1 b6 62 06 b4 ce -
- -f1 03 d0 65 7a a1 4c da 38 61 f1 42 12 ea e2 35 -
- -a9 b3 36 b1 f3 7d 55 7f 74 f9 b6 e0 16 0b 5e 14 -
- -c4 da 5c f0 a3 10 4d 0a 8a 6e b0 fb -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -11.789 s
11.792 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ca 16 c1 3a de 5e 48 ca 91 28 -
- -46 27 60 c8 9b be 99 be 42 dc 28 c1 c5 85 0e 0a -
- -e7 14 96 72 b3 20 eb 22 d4 71 4c ac c1 d0 41 43 -
- -91 8c 27 2b cc 76 d9 c6 93 9d 5d 16 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e b1 09 24 00 f0 40 00 15 40 37 -
- -ec 83 a2 3c 76 6c dc 31 9f 11 d9 b3 68 7c 1b 27 -
- -68 54 ce cc c2 86 2e cd 95 3c 27 70 57 bd 3f 3f -
- -89 79 52 c8 0e 4a da 54 f3 36 ba 4a -[3709 more] -
-id=7 timestamp=64 body_size=3761 content_type=0x09 dest=1 -11.796 s
11.796 s -
- - - -  Video 3761 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 ca 16 e1 3e da 5e 48 -
- -cc 91 69 f6 3b 73 71 96 df 3d 54 d9 48 1e 90 46 -
- -e9 b7 5f 27 f8 6f 3f 33 c3 96 48 1e b8 c2 c1 24 -
- -18 e1 0d dd 4f 4c 84 1e 9f 15 78 59 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 c9 16 89 be d5 be 48 -
- -ca 94 86 44 1f 06 50 8d dc 46 57 3a 90 19 58 d4 -
- -cf 2c 5c 6e 4f 86 fd e3 73 36 42 80 cb 90 b1 40 -
- -e5 59 1f 92 0e 39 ee 2c 6d 74 b5 6b -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 c9 16 42 16 d1 b6 49 -
- -86 b4 b6 5b e1 bf dd 6b ca 8e a5 24 78 f4 8c f9 -
- -71 b2 e1 48 75 52 ed 8e 52 5b 61 d7 0e 86 c6 ac -
- -a6 f4 a8 92 cd d0 a1 1d 86 6f 94 6d -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0e e9 09 24 00 f0 40 00 00 06 dc -
- -04 ec d9 b8 63 3e 06 c8 f1 d9 b3 a1 41 ad fb 82 -
- -16 6c 8f 1d 9b 3c 78 01 21 44 a5 f2 a3 a2 d5 bf -
- -fd 71 3d a9 24 bd 35 a6 69 19 68 9a -[3765 more] -
-id=7 timestamp=80 body_size=3817 content_type=0x09 dest=1 -11.800 s
11.802 s
11.803 s -
- - - -  Video 3817 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cb 16 71 16 d5 9e 60 cc 71 93 -
- -73 aa 91 cc 66 66 6f 30 0d 49 72 2a 96 d5 a2 f5 -
- -2f 9d bd 7c dc cf f5 07 9a da 44 77 a7 6c 99 cb -
- -b6 42 d2 08 02 a0 a8 b0 88 3c 06 10 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cc 16 61 be d1 9e 49 86 94 4e -
- -0d 9b 9e fe 6a 96 44 89 20 3d 29 49 7c 7d 79 f7 -
- -19 df f4 79 43 fa 9d 38 48 2b 8b 4e ae c4 cb 08 -
- -9d 48 76 db e3 b1 f2 d6 ce 19 bb 47 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 15 09 24 00 f0 40 00 be e8 00 -
- -08 d9 b2 3c 76 6c d9 1e 3b 36 6c 8f 1e b0 27 90 -
- -31 db 1a 69 51 be 63 f9 8f 23 7d e9 43 60 4c d4 -
- -47 ad 88 fe c4 fd 65 c1 66 47 15 b7 -[3809 more] -
-id=7 timestamp=64 body_size=3861 content_type=0x09 dest=1 -11.939 s
11.942 s
11.946 s
11.954 s -
- - - -  Video 3861 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 cd 16 e1 5a cd b6 49 -
- -8c 90 8c 82 0b 41 01 0d 80 5c 95 f2 32 de 57 72 -
- -3d a0 90 b6 99 94 5c 86 61 74 e3 96 65 33 85 92 -
- -0e 46 de 67 cf 58 67 3c cc 1f 29 36 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cc 15 ba 06 d1 9e 61 -
- -86 b4 df 19 0e 56 e9 48 24 04 69 bd 01 62 19 1c -
- -33 c3 1a f5 b3 65 25 a7 ba 25 c5 21 b9 b9 37 49 -
- -92 c1 3b 13 1e e5 8d cd 05 e9 40 b9 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d0 17 79 6e d0 fe 48 c6 91 cd -
- -16 b2 c0 42 02 2c 15 81 6a 1d d1 98 d6 75 cf 76 -
- -38 86 e4 47 5c fe 92 22 52 d5 28 ea 6e 64 92 fe -
- -93 9a e8 d0 91 03 1a 10 96 38 52 35 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 17 09 24 00 f0 40 00 06 87 a0 -
- -bb 06 f8 6c 86 5c ad c6 ec d9 b8 45 55 47 b1 7c -
- -8d 91 e4 66 cd 28 10 f1 8f 58 15 1e 3b 36 6c 91 -
- -94 47 15 80 86 57 77 2e ea c0 91 18 -[3811 more] -
-id=7 timestamp=64 body_size=3863 content_type=0x09 dest=1 -12.091 s
12.096 s
12.098 s
12.100 s -
- - - -  Video 3863 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cd 15 a9 56 cd 96 61 86 90 4d -
- -1d 50 95 68 a5 a4 20 b3 4b a4 ce fd 94 cd aa 92 -
- -cb 17 d2 1c 0d 1d 96 8a 31 2c 21 0c 60 a5 65 e5 -
- -c9 33 34 9d 1c 24 e1 a2 d2 47 2c 26 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 d1 16 d1 ba c9 9e 60 -
- -c6 94 72 10 70 de 90 2c ef 5d 4a 10 41 94 5d 00 -
- -b5 1e 3b 56 65 63 2d 74 23 ca 7d d3 2d 15 39 59 -
- -61 cf 76 49 93 9d 3e ff 01 14 ca 7a -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 4c 09 24 00 f0 40 00 66 cb c7 -
- -98 0a c0 43 60 b9 55 b2 c1 e3 b3 66 c9 20 e5 cc -
- -c3 e6 1d 9a 23 c7 66 c2 cd 91 e3 c3 67 60 18 f2 -
- -42 5c e6 af c0 47 8f 9f 9a 38 af 65 -[3864 more] -
-id=7 timestamp=64 body_size=3916 content_type=0x09 dest=1 -12.102 s
12.104 s
12.106 s -
- - - -  Video 3916 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 d0 17 71 6a d1 9e 60 -
- -c6 91 d8 43 0c f5 a3 9c d6 c7 88 b2 ba 4a 72 3d -
- -97 fd fe ec 74 93 ce 57 75 33 91 b0 69 72 86 d9 -
- -7c 9f 55 a9 dd 3e 66 9a 2f 3b f8 53 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cd 17 4a 22 d5 be 60 -
- -c6 b4 20 8d b3 6d 55 41 0e b2 a2 1a 65 b9 9d fb -
- -91 79 39 d0 67 71 2a e9 50 b2 f2 d5 ea 62 b1 f7 -
- -69 29 11 3c 43 f2 6d d7 07 ed 9b 79 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ca 16 22 12 d5 9e 48 c6 b4 63 -
- -9b 2c 87 21 16 86 67 c7 e8 a6 3a 6e 85 f0 90 e3 -
- -7e db 24 4e c9 38 fc df d9 8b 2c 8d 9c f2 fd 0d -
- -91 55 fb ec 64 56 1e 0c 41 d9 98 0b -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 93 09 24 00 f0 40 00 04 ec 83 -
- -e5 d4 70 fc 6f d9 1e 3b 36 74 4d 12 e1 f9 80 13 -
- -b3 66 ce a6 eb 58 3b 31 1d 9b 36 47 8e d2 fa f0 -
- -9c 15 70 c7 cc ae 13 4a 5e b2 f7 8b -[3935 more] -
-id=7 timestamp=64 body_size=3987 content_type=0x09 dest=1 -12.110 s
12.112 s
12.112 s -
- - - -  Video 3987 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cc 15 fa 16 c8 f6 58 c6 b4 5e -
- -59 eb 5b 48 e2 06 a8 e2 a9 3b a7 e6 ae bd 11 03 -
- -2e fa cf d4 9c 81 c1 76 98 6e f0 dd 4a 65 e5 34 -
- -47 04 aa dc 48 72 19 ae af d1 4a 0c -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cf 15 82 0e cd 9e 60 c6 b4 c0 -
- -26 47 a3 39 b0 ff 6a f1 06 ce 93 63 de 3c 67 6f -
- -59 72 d4 c3 c8 dd c8 e3 ca 76 42 cb 2c 51 33 e7 -
- -f9 67 6a 19 d8 e6 7b 5d 8e 7f 2d 84 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -12.243 s
12.248 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 71 09 24 00 f0 40 10 16 07 2e -
- -c0 f4 85 95 58 3b 36 47 8e cd b5 ca 0c 01 bb 36 -
- -47 e5 39 84 05 9a 29 9b 03 b3 44 ae 76 d7 d2 36 -
- -6b ff ee 2e 9a 6a 07 94 78 5a 79 2e -[3901 more] -
-id=7 timestamp=64 body_size=3953 content_type=0x09 dest=1 -12.248 s
12.250 s -
- - - -  Video 3953 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 d4 18 59 f2 c9 9e 62 -
- -06 b4 5d de 71 93 cd 39 2a 37 ff b1 f3 de c7 7d -
- -c7 77 f1 97 86 43 40 d7 35 ef 64 f4 3c ed 76 b3 -
- -1b 2b f7 6b 8e df 36 be 36 e3 fc b8 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cd 15 9a 12 cc fe 61 -
- -86 b4 88 8d 43 7c 4f 79 ea f6 42 56 0f 47 31 31 -
- -8d 1d b2 04 9a 62 65 12 40 58 68 93 9e 96 1f c4 -
- -a8 1a 7b 63 26 2a 34 18 1c 18 56 54 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 d1 16 d9 f6 d0 fe 49 -
- -8c b4 59 88 de de ab 97 48 22 49 d3 39 91 c6 20 -
- -a1 86 26 5b 13 91 2a 2b 9a 1d 2e 5b d6 c5 71 41 -
- -1c 95 3b 57 99 31 54 04 3f 63 de 80 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 -12.254 s -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0f 45 09 24 00 f0 40 00 1a 03 82 -
- -0c e4 bb 0b 09 39 bb 4c d9 b2 3c 76 ee d6 6c 8f -
- -26 6e db 58 10 11 51 66 c8 f1 da 5b 76 3e 92 12 -
- -7a df 0f 58 45 5c 16 28 ae ae ba 03 -[3857 more] -
-id=7 timestamp=80 body_size=3909 content_type=0x09 dest=1 -12.256 s
12.258 s -
- - - -  Video 3909 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 d0 15 d9 26 cd 9e 49 -
- -86 91 05 0c 88 e4 ae a0 88 74 e0 96 44 23 43 3a -
- -c2 b7 f1 aa 64 aa ea 93 43 bd cd d2 7d 63 c5 c0 -
- -16 c0 61 91 58 dd 7f 8a 6d ab 9e 67 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d3 17 31 b6 d1 9e 61 86 94 88 -
- -69 96 66 2f 2a 4b 66 97 33 35 3c 38 e8 21 05 c3 -
- -72 35 5a 87 34 a4 30 ae 9e d9 c5 55 53 ee 33 e0 -
- -1f ab 70 57 95 3e 8c 6b 9a e0 b0 03 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 d1 16 3a 02 d1 9e 48 -
- -c6 b4 4b 10 68 a7 77 0c d7 38 d7 2d 4d 54 18 7c -
- -d8 d4 3a 15 cb f0 c2 19 c5 91 10 2a 8c d2 15 18 -
- -3d 1e 18 69 c6 1b 36 38 62 6f 02 39 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 22 09 24 00 f0 40 00 22 70 04 -
- -89 af 54 75 3b a9 1f 7c 90 2e 63 8d 8d 11 e3 b3 -
- -6c 52 c0 54 78 ec d9 b2 3d 4e cd d5 a2 3c 76 89 -
- -40 8e aa 3f ce 4a cf 05 e8 0e 32 2c -[3822 more] -
-id=7 timestamp=64 body_size=3874 content_type=0x09 dest=1 -12.260 s
12.262 s
12.264 s -
- - - -  Video 3874 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 d3 17 31 4a d5 9e 4a -
- -06 91 20 4e 2a ed a9 2b 99 1e 87 9a 0a 69 07 cc -
- -8d 50 62 84 ce 3e 77 23 d4 97 79 44 91 ed 29 9a -
- -a8 ea 77 97 6d 52 8c 52 e8 79 c8 76 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d1 16 b1 6a d1 9e 60 c6 90 d0 -
- -85 08 0c 74 a8 57 dd 03 e6 3d 23 67 2c 78 72 38 -
- -63 04 ca 83 0b 14 a7 c2 52 32 f4 32 cf 37 f2 62 -
- -34 0e e4 98 b8 42 dc d1 54 87 43 0d -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 12 09 24 00 f0 40 00 00 22 15 -
- -c5 09 7b 1a 0f e2 3c 76 6c d9 b7 47 36 c5 94 0e -
- -c7 27 66 88 f3 f4 46 4d 3b 33 ec e0 63 b3 64 78 -
- -e4 79 61 b0 2b cd 26 25 d5 f2 ca bd -[3806 more] -
-id=7 timestamp=64 body_size=3858 content_type=0x09 dest=1 -12.268 s
12.268 s
12.269 s -
- - - -  Video 3858 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-

Client ---> Server - - - - - - - - - - - - - - - - - - - - - - -
-48 00 2f 63 00 00 13 14 02 00 04 70 6c 61 79 00 -
- -00 00 00 00 00 00 00 00 05 01 00 -
-id=8 timestamp=12131 body_size=19 content_type=0x14 dest=1 -12.366 s -
- - - -  INVOKE( - -
   -02 00 04 70 6c 61 79 - -    'play' - -
   -00 00 00 00 00 00 00 00 00 - -    0.0 - -
   -05 - -    NULL - -
   -01 00 - -    False - -
- - -  ) - -
-

Client <--- Server - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-c6 2a ff f3 40 c0 d1 17 72 06 d1 be 48 ca b4 8c -
- -44 4e 60 e6 a6 b0 62 ec 98 ee f6 5e d3 dd 25 04 -
- -c7 5e 66 66 e6 7f 93 df d3 f7 cb 88 68 74 33 d2 -
- -5f 37 35 f6 1a a2 fa 6c 4d 22 b7 2c -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -12.375 s
12.380 s -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 ce 16 01 8e d1 9e 60 -
- -c6 90 35 65 eb e8 31 a9 20 5d d4 55 03 24 9d 2e -
- -f0 f7 09 a3 8e a7 ec ad 97 ce f8 db ae f5 13 35 -
- -47 4b bb f7 f9 1b 6c d4 ed df da 5e -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e b2 09 24 00 f0 40 00 07 a5 e0 -
- -0f 93 8e 66 d0 44 89 d9 b3 64 78 f0 bc 30 b3 44 -
- -79 33 bf 22 3c 8b df ec d9 2b e7 f3 fe 35 24 3c -
- -1b 44 f5 d2 5b 39 6b 8a ba 8e fa 3c -[3710 more] -
-id=7 timestamp=64 body_size=3762 content_type=0x09 dest=1 -12.382 s
12.388 s -
- - - -  Video 3762 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 d1 17 09 ba d1 9e 60 -
- -cc 94 52 4c 1d 19 dd 6e a9 86 36 ae 84 24 5c 5a -
- -9c 97 34 a2 19 1e be d5 51 90 15 d4 83 e5 95 c8 -
- -63 c9 f8 b1 fd 62 35 bd 8e 87 96 6f -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cf 18 49 e2 d1 9e 48 -
- -cc b4 99 02 15 3e ba 96 f5 9c da 51 09 98 22 16 -
- -e0 61 04 0c e2 c5 ee 4b c3 9b e9 93 92 3e 46 a5 -
- -47 77 75 aa 6e ac ba 39 23 cd 76 cb -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -12.527 s
12.532 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c8 16 09 02 cd 9e 60 c6 71 be -
- -ab 98 7a 16 6c 3e 80 86 a1 42 0a 3a 54 18 34 54 -
- -95 70 a4 e6 ec 66 fe 5f c2 1c 10 04 17 34 d3 2d -
- -11 09 de 18 3c 2a 40 99 b0 a1 41 c1 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 19 09 24 00 f0 40 00 00 9e a4 -
- -2a 1c a0 15 ff e8 31 e3 b6 b5 e8 1e 74 bc 5a 99 -
- -b2 3c 76 6c be cd b0 14 47 8e cd 9b 39 93 2a 81 -
- -c6 88 ff 61 a3 b3 16 98 f5 95 f9 05 -[3813 more] -
-id=7 timestamp=64 body_size=3865 content_type=0x09 dest=1 -12.534 s
12.536 s -
- - - -  Video 3865 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 ca 15 19 e6 d1 9e 48 c6 b4 68 -
- -28 91 62 56 91 ea b8 7f b5 e0 56 f2 eb d6 39 b3 -
- -e5 14 df 4d 75 cb 7d 6d 9f de be fc 9b af f5 ae -
- -f2 df 75 95 60 5a 52 2e 45 4a 52 a8 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 d0 16 f9 4a cc fe 61 -
- -86 90 13 5d 6b 30 94 33 17 09 42 0a 0e 18 7b 0b -
- -29 91 ab 38 b2 06 4a 6c 81 a2 49 79 e8 4b 24 1f -
- -55 30 cc 28 d8 96 15 43 d9 a1 9d c4 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cf 16 71 86 d2 3e 60 -
- -cc 90 cb 8d 5f cd ac 0a ee 56 74 d9 c1 54 34 d5 -
- -07 43 a6 4c 12 e6 6f 99 22 94 92 6e 46 82 c4 c7 -
- -0a 85 8c 06 09 9c 26 a1 05 80 e8 14 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -12.538 s -
- - - -  Audio 105 bytes - -
-47 00 00 4f 00 0e c2 09 24 00 f0 40 00 b7 e8 d5 -
- -0a c0 17 5b 1e be 8c 3a a6 40 51 b3 91 33 91 68 -
- -f7 0d 7b 11 c8 d9 c8 99 cb 88 00 56 ce 48 0c 9f -
- -52 36 a9 c9 3d ee ba 1e c6 85 b8 48 -[3726 more] -
-id=7 timestamp=79 body_size=3778 content_type=0x09 dest=1 -12.540 s
12.546 s -
- - - -  Video 3778 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d0 16 79 be d1 9e 60 c6 94 c3 -
- -27 d2 8c cd 11 d5 73 30 8b f0 8d 69 4f 96 44 59 -
- -33 cb fe f3 2f ba c2 8e 0a 83 94 a0 50 20 10 20 -
- -25 1c a2 9d cc 99 72 8a cd 65 dd 9c -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d1 17 31 46 cd 9e 79 86 90 20 -
- -62 14 a4 73 b4 11 ba 0b fa 2a a9 4b 0e d5 06 45 -
- -a9 22 76 c6 c2 4b 10 96 70 d2 65 0b 0c 07 58 d4 -
- -8c d0 42 31 9d 33 da 1f af e5 0d c7 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 41 00 0f 1d 09 24 00 f0 40 00 20 2e a4 -
- -af 57 87 88 6e 12 9b 35 97 08 07 1b 79 26 21 b9 -
- -92 33 38 76 0f 23 67 21 e3 91 6d f9 2b 60 d5 91 -
- -b7 99 c8 ab 8a 0c 1f da b1 2b 33 3a -[3817 more] -
-id=7 timestamp=65 body_size=3869 content_type=0x09 dest=1 -12.679 s
12.682 s
12.686 s
12.688 s -
- - - -  Video 3869 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 cf 15 1a 0e d6 3e 60 -
- -c6 b4 a4 61 bb b2 6f d6 d3 6f 31 68 b8 0e 84 40 -
- -86 a5 76 c9 35 6b e2 75 72 53 b5 cc c6 8b 59 a5 -
- -d6 f1 62 78 69 86 89 4b 42 65 49 13 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 d5 17 22 1e d1 9e 48 -
- -c6 b4 73 cc b4 99 83 a0 31 6e 60 08 59 1c 05 14 -
- -15 76 04 50 55 7b a9 e8 dd c9 eb d1 10 4c c6 bd -
- -0a 87 a8 af 23 cd 9b 89 00 f1 2d ae -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d3 16 a1 9e ce 3e 61 -
- -86 94 c9 93 ba f5 b0 c5 76 c0 a5 b6 9f 74 f2 5a -
- -f0 b6 73 6c ce b1 2c 31 51 98 53 40 20 a1 44 92 -
- -a8 92 68 04 f2 08 2a 2e 2e 54 f8 32 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e bd 09 24 00 f0 40 00 00 0b e3 -
- -0a e7 94 b6 d1 13 39 13 39 17 eb 43 2e 76 72 26 -
- -73 fe 67 92 4e e0 c0 47 86 5b c9 03 cc aa e4 a8 -
- -c0 78 24 76 f2 ec 97 15 dd fd e5 16 -[3721 more] -
-id=7 timestamp=64 body_size=3773 content_type=0x09 dest=1 -12.690 s
12.692 s
12.696 s -
- - - -  Video 3773 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d3 17 a1 52 cd 9e 61 86 91 6f -
- -5f db a0 ad 4f 48 fd 5f cd b9 7d 9f f3 3e 31 48 -
- -8c c7 62 56 20 22 ce 46 33 90 35 dd 48 8b 2b 88 -
- -3d 6a a6 7a a1 1e 8e 86 32 b2 39 db -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cf 16 19 66 d1 9e 49 86 90 29 -
- -16 0e 4b 6a be a6 50 eb 58 a2 14 8a 12 42 04 c7 -
- -39 25 28 23 b4 a1 9c 3d a7 14 14 bc 6d bd a8 a1 -
- -41 a9 30 54 62 4d 88 9a 90 2a 23 5b -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e 3d 09 24 00 f0 40 00 44 51 9f -
- -80 c6 5b a6 6c 24 54 0a 36 72 5e 92 82 39 13 39 -
- -41 6a b9 5e a4 11 33 ab 71 1c f1 94 6c 46 de 67 -
- -47 54 08 e6 cd 19 52 3a ef 79 cd cd -[3593 more] -
-id=7 timestamp=64 body_size=3645 content_type=0x09 dest=1 -12.696 s
12.698 s
12.701 s -
- - - -  Video 3645 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d1 18 42 8a d2 3e 49 8a b4 e4 -
- -e1 3a 53 cd 6a 31 53 4d a7 7b cd ae fb ac d6 cc -
- -86 48 56 cc f3 83 73 4f 7c d0 f3 ff 9b 9f fd 53 -
- -f7 f4 b0 ec 0d e3 fe f2 ba 64 d5 f8 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -12.831 s
12.836 s -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 cb 16 59 b2 d6 5e 60 -
- -c6 94 0c d0 f4 06 0c dc 5d 12 4f e3 43 cd 5c e8 -
- -ea fb 70 42 a9 33 1d 3f 28 f9 57 14 e2 d4 f4 19 -
- -01 14 01 d3 c5 5f cd 56 bf f2 bc 13 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cc 15 81 c2 c8 f6 49 -
- -86 95 1f 2d ae 85 5e 44 d5 fb 85 c5 b3 2b 6b 68 -
- -bb 2e 40 94 e8 34 19 af 4e 66 5d 51 25 37 de 93 -
- -aa 27 d9 c2 ff 52 22 5c f2 2f 86 c7 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e bb 09 24 00 f0 40 00 b7 b8 1e -
- -bd 48 ea 20 64 48 91 22 44 98 5e 45 12 24 54 80 -
- -07 66 cd 25 20 c0 31 e5 12 11 b3 6d 24 3d 64 63 -
- -cd 55 6a 38 1a b0 48 1e 98 8a 39 3c -[3719 more] -
-id=7 timestamp=64 body_size=3771 content_type=0x09 dest=1 -12.838 s
12.846 s -
- - - -  Video 3771 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 d1 17 c1 62 d1 9e 60 -
- -c6 91 57 94 f1 ff 6b 3a 53 7b 52 34 3f 63 72 5a -
- -6a b9 d3 ac ed ca 42 db 5d bb 47 f7 e0 e7 ab 7f -
- -6c b1 4d e6 db 5f 3e 79 8f 63 30 06 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cd 16 51 ca cd 9e 49 -
- -86 94 87 6c f5 5c ee a4 c8 bd 99 8a 42 92 bf 7f -
- -df af e7 fd 96 07 b1 a2 29 43 eb 27 1a c9 51 88 -
- -26 16 4f bc c3 f5 2a 11 03 b5 cd 69 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -12.983 s
12.986 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e ce 09 24 00 f0 40 58 4c 00 c1 -
- -95 38 c5 a8 78 66 05 9b 36 75 95 b2 b3 66 cd 9b -
- -36 60 ec df 52 af a8 b1 ff 6d 20 d5 e3 2c 5c 89 -
- -12 24 4a 24 8d c9 90 94 14 3d 75 1c -[3738 more] -
-id=7 timestamp=64 body_size=3790 content_type=0x09 dest=1 -12.988 s
12.992 s -
- - - -  Video 3790 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 ce 17 39 52 d1 9e 49 -
- -8c 91 95 7d 90 c6 76 10 24 08 43 80 89 f6 63 9f -
- -74 55 19 30 75 40 27 67 17 5c ea d5 62 bc b9 8a -
- -72 32 1c c7 21 0c 4d ac 85 6f 74 13 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cc 15 c8 fe cd 96 49 -
- -8c 71 c7 56 e3 df fb 59 3e 50 82 b6 6f 4f fb 1b -
- -39 52 6e cd 49 46 f1 3e d9 a1 7a 4f 0f c2 22 94 -
- -5e 8d 96 8b 51 d2 62 4d 4f a6 46 96 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cf 16 f1 b6 d1 9e 48 ca 94 ab -
- -cb c0 a1 a8 13 01 84 04 03 b6 02 5a b2 ac 17 24 -
- -28 5b 2b 5e ad db 27 7a f0 29 3b d2 18 b3 40 5c -
- -d7 37 cd 1d 82 52 59 78 bc 24 5b 77 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 4f 00 0e cd 09 24 00 f0 40 00 00 0a e5 -
- -3b d4 25 3e 74 34 1e 3c 83 6b 84 28 91 20 6c 91 -
- -24 72 2f 0a 24 48 91 22 44 94 1c 40 3e c6 f7 15 -
- -af b1 3e 33 d2 9f 29 ce 5d 97 10 ca -[3737 more] -
-id=7 timestamp=79 body_size=3789 content_type=0x09 dest=1 -12.994 s
12.996 s
12.998 s -
- - - -  Video 3789 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 ce 16 a1 fe d1 9e 49 86 b4 6d -
- -6d b6 6f 80 49 27 2d 1d 03 25 af 1e 11 f7 24 a6 -
- -c5 92 79 53 22 38 fb 99 31 45 31 fc e8 bb 58 d8 -
- -c5 34 67 2d 96 21 9f be 98 be ef 29 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ce 16 11 4e d1 9e 48 c6 91 54 -
- -9f 6d 5d 8f 70 9c 81 06 b4 5c 76 91 a9 92 9d 2a -
- -8b 91 cb c6 c5 7e 6b a5 c5 17 b9 0d 9f 2b 3c 36 -
- -8c 47 e9 48 f6 34 06 e8 67 22 41 2e -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 d0 17 31 ca d2 3e 49 -
- -86 95 75 31 0e a8 19 59 51 04 29 04 ae 56 30 c1 -
- -dd a4 2b ef 08 cd 75 3d 4c 88 92 95 e4 b1 0d c9 -
- -4f 7b eb 9b 31 66 7f 97 75 9b bc 04 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 41 00 0e 9d 09 24 00 f0 40 09 6c 64 dd -
- -00 30 4b ea 26 ba eb 58 3b 36 6c d9 b3 66 cd 9b -
- -36 9d f4 28 d9 be e8 bb 78 9d 4f a0 f5 0a 7a 3c -
- -7a f2 f1 43 b5 29 3f 68 16 6e b9 8f -[3689 more] -
-id=7 timestamp=65 body_size=3741 content_type=0x09 dest=1 -13.000 s
13.002 s
13.004 s -
- - - -  Video 3741 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 ce 17 32 2a d1 9e 48 -
- -c6 b4 38 9d 4a 02 84 98 a0 10 aa 30 1d 41 d4 32 -
- -a9 33 55 9f a7 67 de cf ad 2f f2 f7 df c7 77 7c -
- -f6 4b 17 5a db 91 69 67 f3 5f 5e 9c -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cc 16 09 fe d5 9e 48 -
- -c6 b4 b6 f9 ba 6f 52 8a 9b 40 b1 34 4b 19 09 ed -
- -4c d5 97 32 6e d7 b6 6d cd 94 9d df 29 d0 f3 3f -
- -e7 ff 49 72 db f9 61 b2 25 94 29 43 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e 65 09 24 00 f0 40 00 42 88 2a -
- -80 d4 96 4c 9f ce a1 d9 b2 44 89 1c 06 a7 9b 36 -
- -6c f7 75 cc 58 fd b2 58 af 99 e7 9e 00 b4 15 aa -
- -f6 6c 24 38 42 24 4c 16 d7 91 8c 29 -[3633 more] -
-id=7 timestamp=64 body_size=3685 content_type=0x09 dest=1 -13.133 s
13.136 s
13.138 s
13.140 s -
- - - -  Video 3685 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 ce 18 c9 fe d1 be 48 cc b4 7e -
- -56 b5 01 c8 40 e1 b8 6e 1c a9 06 ca 3b 8b a0 99 -
- -69 3d bc f3 32 f7 8b 98 d0 88 eb 99 38 f1 6f c3 -
- -d0 7d e5 47 2d 0c b6 bb 08 a7 0d a5 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c5 16 29 f6 d1 9e 49 86 b4 19 -
- -21 2f 06 0a 06 0c 89 d8 8f 82 32 18 46 cf 32 9a -
- -43 8b ff 2c 2a a6 4e 7c a6 b4 a3 d7 58 96 65 c6 -
- -6f 89 b1 3f cf 1b 44 00 dc e1 02 8e -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e 76 09 24 00 f0 40 00 00 08 f2 -
- -a5 11 b3 66 cd 9b 36 6c d9 b3 76 d0 65 12 2a 9a -
- -ee ed 17 b9 ce cb 36 70 a4 67 ae 0e c9 88 25 0e -
- -01 89 20 32 b4 0e c1 bb 5e 8b f5 18 -[3650 more] -
-id=7 timestamp=64 body_size=3702 content_type=0x09 dest=1 -13.142 s
13.144 s
13.175 s -
- - - -  Video 3702 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 c7 15 e9 ee d1 9e 48 -
- -c6 b4 92 d6 98 87 fa f4 fd 13 47 9e 89 b9 e3 b7 -
- -ee e7 73 db ec 6e 29 92 ea 8a e6 46 1e a1 15 63 -
- -d6 93 4a 70 84 9d 23 78 6c 54 d6 b4 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 -13.285 s
13.288 s -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ca 16 0a 22 d1 9e 60 -
- -c6 b4 bd a3 3a 1e f9 8b da b7 9e f4 40 b9 dd fa -
- -ed f0 c3 fe e5 67 ff a1 06 0c b3 55 ce 0a 22 c5 -
- -14 0a e8 48 48 44 d7 e2 3b 35 87 72 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cc 17 39 fe d1 9e 49 86 b4 98 -
- -19 19 ab d3 c9 56 c6 c9 eb 17 19 88 2a b5 a0 67 -
- -9d e2 5d a5 07 14 bb e4 46 b0 8a 29 5f d9 17 e5 -
- -38 91 11 cd 09 ed 0c 9b 98 42 5b 58 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ca 16 72 0e cd 9e 49 86 b4 06 -
- -41 ae 2b 83 82 10 f8 36 ab 5e 35 72 12 91 45 07 -
- -4c ce 5b ee 1c 56 ee 4f 91 8b 82 bc d7 db 91 c8 -
- -de ec 4c 87 cc 85 53 b2 2f 59 d7 22 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 cb 16 b9 f6 cc fe 60 -
- -c6 b4 4b 19 88 3a 8c 3b d0 66 6e ba b7 d1 ec 45 -
- -98 24 91 93 68 ab 25 59 a9 16 67 de 46 10 87 e3 -
- -d5 94 90 db 0c 4c 8e 9a 49 c3 59 99 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 80 00 11 a4 09 24 00 f0 40 96 92 66 45 -
- -69 09 c9 d1 5a 3a 16 f4 26 45 0e 36 6a 6c ae 74 -
- -31 d6 c8 e7 5d 03 e6 23 9d 90 92 81 2c 92 6d f0 -
- -6c 31 42 c6 56 e6 43 b2 11 ec 2c 02 -[4044 more] -
-id=7 timestamp=128 body_size=4516 content_type=0x09 dest=1 -13.290 s
13.292 s
13.298 s -
- - -  [fragment] - -
-c7 b0 77 ed f2 20 54 e3 df 0a 4d 06 cb 76 f9 93 -
- -af 2b 88 42 ec fe 44 8c 03 c7 d8 db 02 14 c6 28 -
- -9d 61 dd 6b c5 70 7b af d4 30 17 76 2d 22 f2 30 -
- -58 8e 9b 87 6e 5b ba ad aa dc b0 cc - [361 more] -
-id=7 timestamp=128 body_size=4516 content_type=0x09 dest=1 - -
- - - -  Video 4516 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 16 2a ff f3 40 c0 cb 17 49 e6 d2 3e 48 -
- -c6 b4 7e 95 00 34 ac 6d 6d 89 b9 8a b4 62 45 7a -
- -76 16 72 1b 97 b9 21 28 23 39 0f eb 57 2a a5 8e -
- -88 71 15 09 0d 39 48 d5 85 12 06 ab -  [49 more] -
-id=6 timestamp=22 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 c8 16 a9 fa d2 3e 48 -
- -c6 b4 e2 10 52 a3 07 2e 9b 12 1e 62 56 d2 97 c6 -
- -57 ba b3 5e bc 63 47 8c df b7 f5 eb 7f c7 ec 42 -
- -57 43 c9 cb 83 2c 22 93 a0 d0 58 0e -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c8 15 d1 92 cc f6 49 86 91 90 -
- -d6 26 2d 44 93 15 53 8c e4 24 50 c0 8a ac b0 e8 -
- -2d 39 b3 49 c3 c9 0d 76 ad e5 bd 26 99 64 6b d3 -
- -22 85 f9 f9 54 f3 da bd dc 38 54 61 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -13.437 s
13.440 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cb 16 b9 3a d1 9e 60 cc 90 e8 -
- -ae bf 88 8e 1c 29 e9 c2 40 70 88 95 bc a6 a8 38 -
- -ea 9a 32 06 8e 4a 55 e2 b6 50 5c 70 92 92 7b e7 -
- -4a 2e 66 d5 8a 66 84 f6 d1 62 70 40 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 4f 00 12 f3 09 24 00 f2 40 9d ae 04 9f -
- -3b 9c 3d 05 d4 00 15 85 3c af d4 63 b5 86 8d 3e -
- -c6 a8 6d 7b 01 ea 22 40 88 33 8b 67 88 d3 ec 69 -
- -f3 ef 74 ef cb b0 91 09 ae 1d 3e d1 -[4044 more] -
-id=7 timestamp=79 body_size=4851 content_type=0x09 dest=1 -13.442 s
13.444 s -
- - -  [fragment] - -
-c7 cb 3b bf f0 13 bf dd 85 58 b2 5e f9 5c af c6 -
- -6b 75 23 ef 2f b3 f8 d6 8a f4 34 94 1a 2e 8a 18 -
- -3b 84 74 c8 76 cf 0a ac ad d4 0c e1 1c 35 83 ff -
- -c0 77 17 84 1b 66 f4 35 0f 3c e8 61 - [696 more] -
-id=7 timestamp=79 body_size=4851 content_type=0x09 dest=1 -13.446 s -
- - - -  Video 4851 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 1 0 - -      frame_mode=Predicted qp=57 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 cb 16 41 c2 d1 9e 48 c6 94 0c -
- -e4 7f 48 08 58 24 73 3d 0a 96 4f b7 a7 c7 20 fd -
- -89 16 2c 3f 23 8c 1a 22 e6 46 5d 75 5a ff 0c 8e -
- -4e 70 f3 8a ab 69 72 92 9f 09 4b 0c -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1e 2a ff f3 40 c0 cd 16 91 ce d1 9e 30 -
- -c6 94 eb 0e ff fb d4 13 30 92 66 0b dc 59 20 34 -
- -06 c2 09 d3 eb 1e 40 68 66 4e 1a b0 35 3b d1 a2 -
- -72 42 89 08 d5 03 72 e5 6a 59 d3 a1 -  [49 more] -
-id=6 timestamp=30 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 41 00 82 16 09 14 00 74 46 0f 14 0f 14 -
- -3f 6e 97 27 01 6e ef 6e bd cd fe 5f 95 42 d5 fa -
- -8f 34 3e 34 67 fb 50 e6 cc fc 1e 0d d0 be 6f 65 -
- -20 a7 65 44 04 4d 69 84 e5 ff 17 f7 -[4044 more] -
-id=7 timestamp=65 body_size=33302 content_type=0x09 dest=1 -13.448 s
13.450 s
13.454 s -
- - -  [fragment] - -
-c7 ee a7 2a 28 6e e1 96 83 76 8f 62 57 4d 85 a1 -
- -6f e4 ae 6a 88 5a d7 36 29 d6 d9 37 b2 95 c8 b8 -
- -b5 f2 90 00 a6 04 26 9f 37 f9 5d 8f 56 63 05 05 -
- -8a ec fb 95 f8 d1 01 24 5a b9 e8 a5 -[4037 more] -
-id=7 timestamp=65 body_size=33302 content_type=0x09 dest=1 -13.456 s
13.458 s
13.462 s -
- - -  [fragment] - -
-c7 b5 5f 0b fc b2 08 6e 3b 8a 46 84 03 21 59 7a -
- -75 36 94 b3 4f e8 4c 61 92 66 5e 25 1d 90 eb 7a -
- -90 1c 65 82 19 2c e1 bb 49 27 c5 e7 78 84 39 41 -
- -f4 b3 f4 30 9a 76 c2 17 b1 54 f1 88 -[4037 more] -
-id=7 timestamp=65 body_size=33302 content_type=0x09 dest=1 -13.462 s
13.464 s
13.468 s -
- - -  [fragment] - -
-c7 79 19 4b fc 59 6f dc b6 c0 11 6c 68 db 02 e7 -
- -2a cb b8 74 15 31 f6 10 98 72 8c 90 cd e4 9a 2c -
- -f9 39 c0 a5 20 07 73 c4 b3 cf 1d 05 7a 94 5f a9 -
- -43 41 57 ac 53 10 4e 23 b2 72 a0 40 -[4037 more] -
-id=7 timestamp=65 body_size=33302 content_type=0x09 dest=1 -13.470 s
13.472 s -
- - -  [fragment] - -
-c7 47 df 55 18 d6 c7 b5 c1 4e c0 49 89 2e cf 8f -
- -d8 73 75 31 62 65 17 7f 56 cd de 4c 92 be 89 19 -
- -2e 4a c1 ea 2c 0b c9 44 01 ba dc 8d 6a 2d e8 cd -
- -40 33 8a 8b 99 e1 74 2e c8 ce 99 ee -[4037 more] -
-id=7 timestamp=65 body_size=33302 content_type=0x09 dest=1 -13.474 s
13.476 s
13.478 s -
- - -  [fragment] - -
-c7 0f 17 08 4e e6 28 0f e8 c7 2e b5 34 95 19 24 -
- -5a 73 15 46 89 86 43 4f 68 4a 19 7a a2 b5 86 d5 -
- -3a 47 8a c5 96 b0 b0 c3 9d c5 64 6c 3f fd 14 a5 -
- -63 50 05 bd f6 2f ad 94 ef 25 cb 5f -[4037 more] -
-id=7 timestamp=65 body_size=33302 content_type=0x09 dest=1 -13.480 s
13.482 s
13.486 s -
- - -  [fragment] - -
-c7 e5 be 3d db d5 39 b6 72 75 61 24 a4 a2 d5 d2 -
- -3e d5 69 02 42 db 24 d9 54 47 7b 54 26 29 63 8e -
- -0c a8 5d c2 d3 fc 25 5f 1a 99 cb a9 43 ff 70 96 -
- -63 20 d2 7b af ab 19 e1 a3 b3 03 cf -[4037 more] -
-id=7 timestamp=65 body_size=33302 content_type=0x09 dest=1 -13.488 s
13.490 s
13.494 s -
- - -  [fragment] - -
-c7 2d 06 22 db 01 e0 f6 94 97 63 43 bc 6d c3 05 -
- -84 2f 6b 51 97 77 49 1c ed ee d1 30 c1 18 ed 1c -
- -65 a6 f0 0e 04 22 56 a2 de b1 49 46 c0 5d 0a 6e -
- -8b bb 93 34 eb e2 1a 4d 4c 9d 13 23 -[4037 more] -
-id=7 timestamp=65 body_size=33302 content_type=0x09 dest=1 -13.494 s
13.496 s
13.500 s -
- - -  [fragment] - -
-c7 2d 29 5b 59 d3 5b 48 44 2f ea 9a 60 63 ec fa -
- -aa c2 8d c8 82 3e 47 a2 19 cd 36 0b 4f 40 94 6b -
- -98 d6 f9 d7 89 26 ec 82 2d b8 60 1b bd e5 f4 29 -
- -74 e8 80 43 f9 ba 41 4c 6c dc 6b b1 - [475 more] -
-id=7 timestamp=65 body_size=33302 content_type=0x09 dest=1 - -
- - - -  Video 33302 bytes - -
   - - -    VP6( - -
   -0 1 1 1 0 1 0 0 - -      frame_mode=Intra qp=58 marker=vp61/62 - -
   -0 1 0 0 0 1 1 0 0 0 0 0 1 1 1 1 -
-   -0 0 0 1 0 1 0 0 0 0 0 0 1 1 1 1 -
-   -0 0 0 1 0 1 0 0 -
-      version=8.3 interlace=0 dim=320x240 render=320x240 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cd 16 32 02 c8 f6 60 -
- -c6 b4 70 42 10 85 0b 46 a1 26 34 26 18 76 66 32 -
- -8a b1 88 26 fd 25 57 31 9c d6 6b af a5 dd 96 26 -
- -14 74 13 20 ba 06 12 0a 85 89 38 2e -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 cf 16 99 6e d1 9e 79 -
- -86 90 ea 38 31 c6 aa 87 43 50 00 b4 5c 22 40 41 -
- -84 48 18 ea 32 f1 19 d2 19 bb b4 c4 52 87 9f 7e -
- -91 44 78 a5 f3 bd e6 65 6c f6 90 d3 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e 4c 09 24 00 f0 5a 9b 91 3e 6e -
- -8a ee 5d f2 ea 19 36 de ff cf 8a 36 4a bd f1 7f -
- -14 15 5a 03 cc f4 a5 1f b6 5f e1 57 d5 e0 5f 87 -
- -fe 7f 33 70 fe db ed 9f da ff f3 d8 -[3608 more] -
-id=7 timestamp=64 body_size=3660 content_type=0x09 dest=1 -13.500 s
13.504 s
13.505 s -
- - - -  Video 3660 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cf 17 89 66 d1 9e 48 -
- -ca 90 46 00 8b 5d c3 b6 79 76 41 72 f2 d0 85 e4 -
- -45 ba 62 87 24 8f 64 55 77 67 3e e8 5b 1d 19 e4 -
- -57 ab ba 0d 95 1e 88 ed 75 74 71 a4 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 cb 16 99 ce cd 9e 60 -
- -c6 95 65 43 00 a8 50 e2 0e 0b 5d cd c8 4d dc c2 -
- -03 e7 4d 19 35 33 a5 73 d3 53 a4 46 b3 5b 72 5c -
- -b2 4e f4 8d ce 61 86 c6 8c 00 0d 04 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cb 17 49 b6 cd 9e 61 -
- -8a 94 59 80 3d f1 92 ff 9d 05 43 b4 54 91 7c c6 -
- -38 cc 46 9e dc 8c 70 78 7d cd b3 2b b9 a5 ed d2 -
- -09 a6 7c 4e 7e d9 b6 66 82 12 b0 2a -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -13.589 s
13.592 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f e9 09 24 00 f0 40 76 af ed 7d -
- -f6 5e d5 ff 65 f3 d3 b8 84 ce fb c9 98 60 0d c1 -
- -7b be 17 b0 e6 56 1c 50 b1 2c 8f 1e 98 3a 8e cb -
- -c3 66 8b a0 d9 06 f4 39 9f 29 06 3b -[4021 more] -
-id=7 timestamp=64 body_size=4073 content_type=0x09 dest=1 -13.594 s
13.598 s -
- - - -  Video 4073 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c8 15 61 6a cd 9e 48 c6 90 f8 -
- -3d 7c 89 f5 1b 7a db 05 1d 86 65 33 8d c2 f2 c9 -
- -74 d4 d4 f6 cb fe 9b 23 99 1d 73 40 4f c0 d0 f9 -
- -a0 ca c1 34 48 67 6c 63 c9 97 1a 20 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cd 15 d9 c2 cc fe 61 86 95 db -
- -eb ff b8 af 6b 77 ac 9b 95 44 9a df 37 71 0f 87 -
- -1e 09 16 6d a2 1b b0 01 b9 e1 90 b2 3f a6 c9 1d -
- -10 a2 2b 52 2e 1e 53 6d b9 be 7c 06 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -13.598 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f a5 09 24 00 f0 40 53 f0 00 b5 -
- -01 23 27 2f 87 7d b3 a3 2f b8 27 8e cd c1 de 66 -
- -25 b0 0c 03 b3 44 7c b8 a4 c0 a7 08 8e 9a 5b ef -
- -b6 8e d0 5c 15 5d 34 44 67 70 47 9e -[3953 more] -
-id=7 timestamp=64 body_size=4005 content_type=0x09 dest=1 -13.600 s
13.604 s -
- - - -  Video 4005 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d0 15 19 72 cc fe 62 06 90 b5 -
- -1b 84 b4 2a b2 9a 0a f8 0e b5 59 c1 0e 6e c7 e6 -
- -44 72 e7 f3 26 38 c4 22 8b 32 61 88 a0 a8 b1 b2 -
- -e4 85 02 41 91 51 4f 4a 18 0e b4 d9 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1e 2a ff f3 40 c0 d6 17 ba 1a cd 9e 49 -
- -86 b4 70 09 84 32 8a 8d 7f 63 76 15 d4 f2 d4 dd -
- -0a 9c e5 3c 95 bb 9b 11 b6 a0 9b 97 8c 5e bb 9b -
- -91 3b c8 78 c0 89 b5 1c 17 10 38 fa -  [49 more] -
-id=6 timestamp=30 body_size=105 content_type=0x08 dest=1 -13.741 s
13.744 s -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 d2 16 09 62 cc fe 49 -
- -86 90 6f 24 4a c1 07 d7 32 05 73 10 78 58 56 8d -
- -25 c9 9c 8d d3 52 fc a5 52 fd 24 5d b8 ea 1c 3a -
- -54 b0 18 f9 e4 0b c1 00 12 24 4e 8b -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e eb 09 24 00 f0 40 60 33 28 b7 -
- -83 13 fd bf 04 c1 70 86 69 34 01 d8 ec b4 b4 16 -
- -8c 76 6c d1 1e 40 80 a7 9d b5 fc 88 f1 f5 18 10 -
- -47 4a 75 09 12 33 01 83 2a 04 10 03 -[3767 more] -
-id=7 timestamp=64 body_size=3819 content_type=0x09 dest=1 -13.746 s
13.748 s -
- - - -  Video 3819 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 d4 17 09 be cd 9e 49 -
- -86 94 85 64 06 89 54 e8 23 50 8c 72 0a 5c cb b9 -
- -92 31 1c dc 31 29 d2 a6 68 33 09 8b 39 20 40 80 -
- -5c 78 80 83 c4 d5 9e 17 20 1e 00 83 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d2 17 19 6e cc fe 79 86 90 53 -
- -1b db 28 b8 1c 73 5b 59 6b 87 5b 5a bc f1 0e 6b -
- -35 95 3f 48 97 dc e9 dd 7f 8b e2 89 5a cb ca e7 -
- -3b 91 bf 41 d7 21 d1 2b 45 93 20 fd -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d0 16 c9 26 cd 9e 60 c6 90 71 -
- -76 30 95 f9 42 2d 55 89 ae 88 32 a2 37 8d f0 a2 -
- -87 88 52 9f 2f da 6c eb 5f e5 f1 58 a0 10 09 48 -
- -f3 55 55 c1 f8 07 e0 82 92 c4 2d fd -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -13.750 s -
- - - -  Audio 105 bytes - -
-47 00 00 50 00 0e ad 09 24 00 f0 40 2d b0 03 53 -
- -4d 5d 00 8b a9 c5 96 6b 70 43 b3 66 88 f1 e4 ef -
- -14 27 5e 81 82 24 47 66 cd 11 dc 5c ca db bc c0 -
- -04 48 8f 1e ea 29 b0 29 e1 2c e7 23 -[3705 more] -
-id=7 timestamp=80 body_size=3757 content_type=0x09 dest=1 -13.752 s
13.754 s -
- - - -  Video 3757 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 16 2a ff f3 40 c0 cf 16 41 6a c4 f6 49 -
- -86 91 17 6d 77 5f f8 ff 5e bc c7 d8 dc a1 60 3e -
- -aa b1 15 4d 74 b6 29 43 ee 0d f4 32 60 43 1b 0c -
- -1d 97 19 f3 1e 3f 4d 37 a5 69 e9 99 -  [49 more] -
-id=6 timestamp=22 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d1 15 f8 b2 cc fe 60 -
- -cc 6d da 1f 37 14 ab fb ba c0 c1 1b 50 57 b4 99 -
- -14 a6 f4 9c e1 ed 29 0c 0a 3b a5 34 28 ed 63 9c -
- -dc cd cf a4 ec 42 82 a2 10 a1 b3 48 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 3f 00 0e bd 09 24 00 f0 40 00 06 5b 7a -
- -ba ec 6f 6f 03 22 54 aa 2c 08 47 14 ce 13 b3 44 -
- -78 ec e0 83 6e 0f 0e 74 0c 51 11 85 ca 45 ec 91 -
- -1c 48 8e cc e9 46 7d 8f d9 c8 14 93 -[3721 more] -
-id=7 timestamp=63 body_size=3773 content_type=0x09 dest=1 -13.891 s
13.896 s
13.900 s
13.900 s -
- - - -  Video 3773 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d4 16 da 1a c8 fe 31 86 b4 a9 -
- -a6 ad 61 c7 7a ac dc cf 55 c0 eb 8b 9a 2a ef 58 -
- -f2 25 ac 5f d6 93 74 0e 61 04 51 6e 92 5b 6f c6 -
- -cf 23 a3 7e 33 9b e8 95 0a 5b eb c8 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d3 17 11 b2 c8 fe 49 86 94 73 -
- -fb d2 77 31 98 4f 4d d9 cc ee b7 5d d7 35 5d fd -
- -af 32 58 24 84 1a bd 41 24 08 13 90 2f b2 39 33 -
- -a3 b3 95 54 14 e2 70 d3 8c ac 51 f0 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 d1 15 9a 0a d5 9e 4a -
- -06 b4 9c 54 2b 35 f0 f6 d9 f1 05 b7 89 ca ad ee -
- -b3 7f 72 d0 ce 53 09 5d 89 ce 5d 99 a4 23 16 fd -
- -ce f1 f2 22 c1 2d 69 0c e6 6f 3d 9d -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 41 00 0f 20 09 24 00 f0 42 6f a0 01 37 -
- -38 43 37 12 c4 25 64 6e 17 ca 9e 0b a3 5c 04 5d -
- -03 46 b1 81 87 89 20 63 42 17 b3 44 7e 11 eb 78 -
- -e2 78 ec d9 22 3d 50 c3 90 1f 23 34 -[3820 more] -
-id=7 timestamp=65 body_size=3872 content_type=0x09 dest=1 -13.902 s
13.906 s
13.906 s -
- - - -  Video 3872 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 d5 17 01 da d1 9e 49 -
- -86 94 1f e2 55 4d 94 ff 89 1e d9 75 74 7f 49 3a -
- -dc a4 2a 97 9e d4 74 7a 81 74 85 ff 82 24 8e d1 -
- -f1 91 2a 5b 6e f7 59 9c d1 84 9b 15 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d4 18 32 7e ce 3e 61 -
- -86 b5 70 4d 01 64 70 28 18 83 70 6f 90 21 3c 25 -
- -bf c4 f6 1a 2a d9 fd 67 a6 a4 d9 cd d4 8d 06 ca -
- -6b 38 64 e1 08 c7 37 92 07 0f 83 81 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c a8 09 24 00 ee 40 43 61 3f a3 -
- -87 a0 8f d0 1a 43 97 01 b5 08 b3 c7 91 23 66 d0 -
- -d8 df 55 77 9e 44 cd af 7b 57 44 48 d9 b3 8f bb -
- -02 89 01 42 ea 86 c2 01 7b 85 1a 2b -[3188 more] -
-id=7 timestamp=64 body_size=3240 content_type=0x09 dest=1 -13.908 s
13.912 s -
- - - -  Video 3240 bytes - -
   - - -    VP6( - -
   -1 1 1 0 1 1 1 0 - -      frame_mode=Predicted qp=55 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 ce 15 e9 66 d1 9e 49 86 91 0d -
- -12 63 e7 5b c5 b3 d3 6b 67 aa af 9e 3b fd a6 c7 -
- -7c cb 37 5d 21 4a 5d cd 8d 29 e8 e0 ed 74 44 2f -
- -41 85 9e ff a1 14 54 18 a1 7e ff bf -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -14.043 s
14.048 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d1 17 69 aa cd 9e 60 c6 94 08 -
- -32 6c ef 39 f2 1f d7 7d d0 ce d2 95 63 a4 f5 bb -
- -3f bd b9 45 e1 44 72 da 71 6f 90 c3 35 9a 87 51 -
- -81 ad 95 9d 1e 64 0c 89 c9 7c ae dd -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 ce 16 ea 0a cd 9e 49 86 b4 3f -
- -0a f5 41 a6 13 4c 51 25 91 6b ee ef 92 e8 f2 29 -
- -66 11 82 35 9b 53 2e 1a aa 69 c6 25 41 b7 24 76 -
- -88 76 2b a1 ae 26 25 31 cd e1 76 88 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f db 09 24 00 f0 40 00 77 7f 8e -
- -92 02 00 15 a5 17 74 73 8b e5 26 63 39 7e 06 79 -
- -12 36 6c e5 7e 62 1c 5e 70 46 cd 9d 73 e0 a9 14 -
- -ec d7 5c 14 28 27 8f 22 46 ce 1e 61 -[4007 more] -
-id=7 timestamp=64 body_size=4059 content_type=0x09 dest=1 -14.050 s
14.052 s
14.054 s -
- - - -  Video 4059 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 cd 18 52 22 d1 9e 49 -
- -86 b4 93 c8 e5 aa ba fc cf b8 35 c1 c8 5a 48 78 -
- -cb 41 cd d1 1e 19 9f 7b 52 16 d2 de a2 f6 22 98 -
- -c3 98 44 22 af a5 f2 27 d3 74 f7 34 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 c6 17 59 6a c9 96 79 -
- -86 90 6f 60 d3 46 01 96 74 f3 f1 3f 8e c4 b7 72 -
- -e0 d8 a6 c4 22 e7 37 f6 c9 8a b0 95 ef e5 3a 59 -
- -21 ad ee f4 d1 c4 56 72 9f 9d ce ff -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0e da 09 24 00 f0 40 00 00 ac 26 -
- -ab 47 1b ec 04 db 1b 61 46 2c d9 c7 91 23 c1 5c -
- -c0 97 69 e3 9d e3 20 f2 24 7c b9 80 5a a6 98 04 -
- -0e bd 07 88 5f a0 ee 33 2e 00 c8 d9 -[3750 more] -
-id=7 timestamp=64 body_size=3802 content_type=0x09 dest=1 -14.056 s
14.060 s -
- - - -  Video 3802 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 c3 14 da 1a cd 96 61 -
- -86 b4 23 4e 50 42 52 07 44 86 b5 5c 64 63 2c 88 -
- -94 3a 62 d1 d4 13 1d 36 1d 38 1e 34 62 71 e0 a8 -
- -46 3a 07 15 1c b0 2a 44 0c 15 63 04 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 ca 18 22 22 d1 9e 49 -
- -86 b4 a7 11 3d c0 62 ec e2 2a a5 63 82 4f e5 48 -
- -b4 51 ef 2d 3b 3d 3c 3c 3a 59 85 23 06 22 de 32 -
- -92 c8 8d c6 b5 c8 43 c6 6b 29 3f 7b -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 c4 15 60 ae d1 9e 48 -
- -c6 6c 65 66 95 97 17 18 38 e3 e8 03 0a 0d 53 c4 -
- -ab 46 60 88 a0 85 3b a4 37 87 2c 32 73 cd 4e f3 -
- -b9 53 2c f2 93 91 3f 2f 79 6c f2 11 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 -14.195 s
14.200 s -
- - - -  Audio 105 bytes - -
-47 00 00 4f 00 0c 50 09 24 00 ee 40 00 03 92 00 -
- -1c 45 c0 4f 22 46 cd 9c 79 12 36 70 10 37 62 11 -
- -33 67 1e 44 58 ce e1 3f 3b 65 7a 49 ff 4f 55 81 -
- -dd 5a 17 d6 f5 eb d1 54 95 4c 95 e1 -[3100 more] -
-id=7 timestamp=79 body_size=3152 content_type=0x09 dest=1 -14.202 s
14.204 s -
- - - -  Video 3152 bytes - -
   - - -    VP6( - -
   -1 1 1 0 1 1 1 0 - -      frame_mode=Predicted qp=55 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 c9 17 5a 2e d1 9e 4a -
- -06 b4 c1 a4 a2 f1 38 ae 0b 1d 8e c6 c3 5c da 6d -
- -c3 68 4b 52 91 c3 99 d7 bb 0c e5 05 e6 7d 3f f7 -
- -2e 95 9b 49 23 06 d6 2e 20 17 10 a8 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c6 16 41 8e d2 3e 60 c6 90 d9 -
- -4d 2d 88 14 07 47 a2 64 cc 0e 6a 1f 1d 53 3a 1e -
- -7c 0a 18 34 ca ae 6d ae e0 ba 68 db e7 e5 4f 6d -
- -79 3c f4 ea 32 4a 7b bc 24 7b fd 85 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 0d 09 24 00 f0 40 42 96 ea 22 -
- -6e da 58 7c 52 14 eb d2 08 f4 00 59 a2 3c e1 21 -
- -d7 b4 3f 3b 16 6c 91 1c f8 c5 76 72 67 cc fa d3 -
- -bc bb 9e 2d 80 7d 46 47 66 8a 38 2c -[4044 more] -
-id=7 timestamp=64 body_size=4109 content_type=0x09 dest=1 -14.206 s
14.210 s
14.210 s -
- - -  [fragment] - -
-c7 c3 4e 28 10 68 79 72 25 c5 b8 80 00 00 - -id=7 timestamp=64 body_size=4109 content_type=0x09 dest=1 - -
- - - -  Video 4109 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 c8 16 51 5a d2 3e 49 86 90 c3 -
- -18 66 38 03 bd 82 55 0c 34 00 0e c3 84 3c 0e 3c -
- -16 e2 09 6e c3 78 53 60 6a 71 8f ae 92 e7 48 c0 -
- -dd 51 78 10 81 5c 3b 33 c3 d6 f3 ff -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 c9 16 09 fa cd 9e 4a 06 b4 79 -
- -4e 29 33 43 b7 cd b4 aa 50 f9 da 86 30 f6 89 af -
- -1e 09 8c 13 da e8 4e a8 7d 23 cb f3 ee 94 9c fb -
- -42 87 05 0f a8 b9 b0 b1 d0 01 b0 b1 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 cb 16 f1 46 d1 1e 60 -
- -c6 91 4b 62 48 42 b3 cc d5 e6 14 1a ba 2b 09 64 -
- -59 0d 26 48 09 17 f4 49 9b b7 c3 b4 c5 be 82 4b -
- -b4 ed fd b3 26 70 78 b8 94 58 f1 83 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f 0c 09 24 00 f0 40 00 d9 f2 00 -
- -07 66 cd 11 e3 b3 64 88 ec d9 c6 75 90 67 d2 06 -
- -3c 76 6c d9 07 1e fe 31 56 7f be 28 8e 86 01 78 -
- -b9 a6 49 66 c8 6b 6a f9 8a 7b c9 4d -[3800 more] -
-id=7 timestamp=64 body_size=3852 content_type=0x09 dest=1 -14.212 s
14.216 s
14.216 s -
- - - -  Video 3852 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1b 2a ff f3 40 c0 ca 15 31 62 d1 9e 61 -
- -86 90 8f 70 c8 f3 2b 5b 2f 37 fb dd 9e 9d 76 be -
- -f7 0f a6 a6 56 9c 3c b7 a5 72 b6 46 c1 4d 51 75 -
- -e2 7c 9b 4d 4a 5d 3c ab 91 9f 0d fb -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 -14.347 s
14.350 s -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d0 16 89 a6 cd 9e 60 -
- -c6 94 2b be 17 9a 9c e1 c9 a0 d6 83 f7 b7 be d1 -
- -f4 ac bb 1b 3e f9 95 73 52 1c b7 cc 09 c4 0e 34 -
- -cf 95 8f 25 d1 fb cb 78 cf e4 a8 8c -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d0 16 12 02 cc fe 61 86 b4 06 -
- -16 0e 87 1f a2 70 40 9b b5 c7 41 0b 81 0c 85 c3 -
- -aa 9a a3 4f 7b 91 f7 84 c4 45 6b 4a 8f 5c a1 83 -
- -9c 18 e7 ea 46 c4 b2 34 5f 5a c0 c5 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0c ff 09 24 00 ee 40 43 38 00 03 -
- -1e 3c 89 12 24 48 91 22 44 89 12 25 82 54 e1 81 -
- -3c 79 12 24 4a 38 b4 fd 1b 3b 66 15 0b 48 cc 37 -
- -29 18 7c 24 d5 2b a1 1b 8a 8f 76 69 -[3275 more] -
-id=7 timestamp=64 body_size=3327 content_type=0x09 dest=1 -14.352 s
14.359 s -
- - - -  Video 3327 bytes - -
   - - -    VP6( - -
   -1 1 1 0 1 1 1 0 - -      frame_mode=Predicted qp=55 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d2 17 49 fe cc fe 49 86 b4 30 -
- -78 a0 2a 92 dc ed c6 ff 1b 9e ba 7a 4e 37 fc 9f -
- -51 f2 f7 44 7e 73 44 92 92 ae 53 2d 1c a9 9b 9f -
- -dc b3 2c bc a4 9d 63 25 2d 4a 99 a1 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1f 2a ff f3 40 c0 cf 17 41 72 cc fe 60 -
- -c6 91 10 d2 43 66 6a 21 8d 90 77 1e ab 16 e6 d4 -
- -84 13 b2 c3 c9 3a aa 7a a9 cb 3d 5d be 93 da a9 -
- -dd b3 6c 96 eb 30 4c 1a f0 3b c2 80 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 -14.499 s
14.502 s -
- - - -  Audio 105 bytes - -
-47 00 00 41 00 0c d1 09 24 00 ee 40 00 03 38 b1 -
- -10 2a eb 12 f8 c7 91 2f ef c8 27 6e dd bb 76 ed -
- -db b7 85 8e 4c a5 9b 36 6c d9 ba ae 9c 6e 91 bd -
- -91 65 87 c0 7b be bb ff 86 d0 c1 e7 -[3229 more] -
-id=7 timestamp=65 body_size=3281 content_type=0x09 dest=1 -14.506 s
14.508 s -
- - - -  Video 3281 bytes - -
   - - -    VP6( - -
   -1 1 1 0 1 1 1 0 - -      frame_mode=Predicted qp=55 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1a 2a ff f3 40 c0 cd 16 01 fa cc fe 79 -
- -86 b4 6e 76 83 11 1e af da 0c 5b a5 49 4b c5 24 -
- -48 71 83 f4 88 bc 69 02 a0 80 11 68 03 fd c6 4f -
- -d2 5e c5 be d3 fb c0 a8 4c 62 0b 34 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d0 15 51 ba cd 9e 48 c6 94 c7 -
- -15 e8 54 50 b0 a2 b3 eb 4a bd 28 47 b5 f9 c4 05 -
- -15 4a 57 a5 4c 10 ed 98 32 96 f6 d1 78 fc c9 1d -
- -ce 0b 2c 20 0b 94 58 48 99 04 20 32 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 11 09 24 00 f0 40 00 77 6c 01 -
- -62 f9 4f 3d 6b 14 03 cb ca 91 a5 57 b3 89 8c 68 -
- -76 6d 84 6c db ab c7 8f 51 64 43 1c 11 23 66 cd -
- -9b 3f dd 48 13 b6 c6 b2 33 33 ae 15 -[4044 more] -
-id=7 timestamp=64 body_size=4113 content_type=0x09 dest=1 -14.510 s
14.515 s
14.515 s -
- - -  [fragment] - -
-c7 f7 b1 d9 b5 d0 1a 3d 0e 87 13 68 b9 f2 b0 0e -
- -00 00 -
-id=7 timestamp=64 body_size=4113 content_type=0x09 dest=1 - -
- - - -  Video 4113 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d5 16 99 3a d1 9e 61 86 91 d4 -
- -7e 41 92 d4 8c 53 5e a2 4c 91 92 d6 0d 48 23 29 -
- -d5 22 b0 cf 9f 2a 01 99 ab 9b 64 7e 93 09 4d f9 -
- -1a f9 e7 70 44 be 5e c6 03 de e5 5a -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 d5 16 f1 b6 c8 f6 60 -
- -c6 94 35 70 da 5a e4 33 ee 2b 7d cd 82 b8 47 ab -
- -bf 8a 97 f5 63 8a c7 e9 56 91 9e 24 26 7d 11 a0 -
- -11 a3 81 b5 cc 02 c1 75 1f 10 0f 13 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 15 2a ff f3 40 c0 d4 17 f9 c6 c8 f6 49 -
- -86 95 ae 54 97 0b 84 b5 cc 9c dc 76 8e db e7 f2 -
- -1f c6 2a 9f e1 1c 4a 9a 1e ad 84 27 65 16 53 67 -
- -55 67 db 69 c2 08 1b 6b 87 87 b0 33 -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 -14.651 s
14.654 s -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cf 15 99 46 cc fe 60 -
- -c6 90 ac 7d 2c d9 9b 9f f0 de fc b3 a0 d5 ac 3a -
- -b2 ac b0 2d 37 2a 5b 29 16 ac 7f b0 a0 6c e5 c2 -
- -74 34 4d 48 e3 ea 55 f3 cf 3e 03 7b -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 4f 00 0f f8 09 24 00 f0 40 00 ab e6 19 -
- -80 ff f8 04 f0 ac a1 b1 c9 75 bb 42 05 90 84 7a -
- -c9 83 a0 0c 73 df 0f f9 3f 61 02 04 21 1d 24 82 -
- -ed 87 3a d8 c8 42 12 6a 7d 04 30 9c -[4036 more] -
-id=7 timestamp=79 body_size=4088 content_type=0x09 dest=1 -14.658 s
14.658 s -
- - - -  Video 4088 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d3 16 91 aa d1 9e 49 86 94 16 -
- -19 11 6d 06 08 4a 30 a6 de 92 a9 c2 37 33 ff a6 -
- -7b f5 4d 6c 7c fd 9c 88 a7 73 4c 53 8b 81 85 8d -
- -81 6a 59 81 ec b0 e1 31 13 50 2e d6 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -14.662 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d3 17 41 d6 d5 9e 79 86 94 5c -
- -36 3c 52 32 71 07 4c 83 ce c0 4d 61 1b 91 d4 b9 -
- -3b a2 5f 42 93 45 81 89 61 f3 86 c6 e8 5e 69 6f -
- -f7 3e 1b aa 95 a1 cd 2a b6 80 90 40 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 2e 09 24 00 ee 40 00 ab f2 01 -
- -fa 81 60 4a ac 22 46 cd 9b 36 7f ac 80 18 ed db -
- -b7 6e dd bb 76 ed db b7 72 08 be 4d 03 49 e2 1c -
- -2d da 42 50 e2 67 f1 8b 8d 24 18 4a -[3322 more] -
-id=7 timestamp=64 body_size=3374 content_type=0x09 dest=1 -14.666 s
14.666 s -
- - - -  Video 3374 bytes - -
   - - -    VP6( - -
   -1 1 1 0 1 1 1 0 - -      frame_mode=Predicted qp=55 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1e 2a ff f3 40 c0 d1 16 51 66 d1 9e 60 -
- -c6 90 08 08 69 53 3c c7 7e 37 33 ce ff b5 77 e4 -
- -0d e6 5d fe ce 66 e5 1f db ef db 7a c4 d4 4f fd -
- -05 3a f1 61 da 87 66 e7 d6 a6 35 11 -  [49 more] -
-id=6 timestamp=30 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d2 16 19 ca cc fe 61 -
- -86 94 8a 14 f5 b3 0f 2b 3c 79 11 65 19 07 6f b8 -
- -c6 42 3f 8f f5 aa 75 20 7d 75 30 89 98 78 7b 56 -
- -e3 a9 7d 2a 61 57 95 00 8e 70 c1 a3 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 9d 09 24 00 ee 40 0a 2b 80 84 -
- -fc 08 75 88 d9 b3 6e dd bb 4a f7 aa a3 01 6e dd -
- -be e7 2c 18 ed db b7 6e dd bb 78 f4 d3 bd 51 c8 -
- -77 0f 4a 9d a4 f7 3f cd 81 02 aa 89 -[3433 more] -
-id=7 timestamp=64 body_size=3485 content_type=0x09 dest=1 -14.668 s
14.672 s
14.672 s -
- - - -  Video 3485 bytes - -
   - - -    VP6( - -
   -1 1 1 0 1 1 1 0 - -      frame_mode=Predicted qp=55 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d4 17 d9 66 d1 9e 61 8c 91 86 -
- -be ce 99 ff 4c ce 9e 2b 09 02 78 f5 c6 24 35 18 -
- -8b bb 4b 1f d3 3c d3 27 74 8a 2d 6b 58 e1 4c 28 -
- -48 a2 c0 8f 0a 1a 41 50 98 38 1c 98 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -14.823 s
14.828 s -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 cf 16 28 f6 cc fe 61 -
- -8c 70 29 41 b7 29 ba 95 65 12 24 5a a9 a4 0f 30 -
- -8e a2 10 1c d8 af af ef 0a c5 26 61 62 c6 a7 41 -
- -02 0a 82 82 30 f9 d4 cf 99 15 17 80 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d1 16 01 6a d2 3e 61 -
- -86 90 07 c2 cc c9 53 a2 a1 79 86 90 a8 eb 77 24 -
- -49 dc 27 e8 5c 71 7f 93 bf 72 7a 06 99 98 1c 62 -
- -67 9d 7e fd 9f 1d 37 0e a3 0c 3c fa -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 3a 09 24 00 ee 40 00 00 09 0f -
- -da bc d9 18 37 3b 01 b3 39 7b 36 6c d9 b3 65 db -
- -b7 6e dd bb 76 ed db ba aa 1d 18 ee 71 08 13 48 -
- -8f ba 7a 98 2f 97 da d9 09 dd b7 96 -[3334 more] -
-id=7 timestamp=64 body_size=3386 content_type=0x09 dest=1 -14.830 s
14.832 s -
- - - -  Video 3386 bytes - -
   - - -    VP6( - -
   -1 1 1 0 1 1 1 0 - -      frame_mode=Predicted qp=55 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 16 2a ff f3 40 c0 d4 17 e1 76 cc fe 49 -
- -86 90 c4 90 48 81 15 70 89 85 b1 06 06 39 24 54 -
- -2e 19 05 4b e7 e8 5d 25 68 46 42 b6 0a 09 c2 03 -
- -00 10 84 0e 38 50 58 3c a2 c4 e6 02 -  [49 more] -
-id=6 timestamp=22 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cf 15 30 b6 cd 96 60 -
- -cc 6d d4 60 b9 a0 0e 6a c2 78 a9 55 a0 2a 6e 44 -
- -e7 c2 5b 2c d5 85 25 cc b2 a2 b4 b9 8c cf 9a a8 -
- -eb 0c e7 d2 23 ae 50 50 04 d0 d2 a8 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 41 00 10 a4 09 24 00 f0 40 00 dc e7 17 -
- -20 87 76 24 9d d2 04 0e 68 df 42 27 6a 6b 66 cd -
- -9d 2d 1e 62 44 89 12 24 72 ef e4 87 94 47 e6 bc -
- -78 f2 24 48 b3 ad 6a 69 e2 30 f3 e1 -[4044 more] -
-id=7 timestamp=65 body_size=4260 content_type=0x09 dest=1 -14.834 s
14.836 s
14.840 s -
- - -  [fragment] - -
-c7 34 d1 b9 f2 aa 7c 5a b9 c9 09 93 06 38 95 ab -
- -62 18 1b de e1 32 63 8e ff 21 af c5 31 c2 e2 03 -
- -3c 36 df b1 12 04 5d 30 6d bf 94 8d 56 a1 af aa -
- -2c 15 e5 90 3d c9 f5 48 74 0d 1a 8b - [105 more] -
-id=7 timestamp=65 body_size=4260 content_type=0x09 dest=1 - -
- - - -  Video 4260 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d5 17 89 4e d1 9e 49 86 90 78 -
- -94 e6 aa c9 05 64 86 24 40 14 ec a7 15 71 55 30 -
- -8b 5b 6f 76 4d 7b b5 64 b2 ab 21 a4 14 07 9e 31 -
- -4c 03 35 66 12 34 61 a7 a5 e3 10 2c -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d1 15 d1 b2 d0 fe 48 c6 94 a5 -
- -b9 a4 57 59 e7 fe fb 3f 2b a0 d0 cb d4 67 4b 4e -
- -ac f8 5b 99 1e 96 a1 88 cc ce 93 b9 92 f8 47 04 -
- -ca 87 50 28 3a d5 8a 32 45 08 4a 64 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 -14.981 s
14.986 s -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d4 16 91 66 cc fe 62 4a 90 50 -
- -88 d8 ea 20 94 44 d1 b6 80 eb 03 88 c8 6c a6 26 -
- -3c a7 9c 63 ca 34 35 39 c6 9e c4 67 9e 69 9c 63 -
- -bc 9c cc e9 4c 82 e9 2b a0 8a cf 03 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0f a2 09 24 00 f0 40 00 00 d6 81 -
- -72 9e 33 22 a1 12 36 6c d9 b3 60 53 57 19 12 25 -
- -7b 1a 44 94 08 6e 36 6c d9 d7 10 19 7d 7b da ad -
- -9a f5 0a af 10 b2 97 4f 4d a2 45 56 -[3950 more] -
-id=7 timestamp=64 body_size=4002 content_type=0x09 dest=1 -14.990 s
14.990 s -
- - - -  Video 4002 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 d4 15 a9 9e cc fe 49 -
- -86 94 94 38 a8 0d c4 c7 b8 90 c2 eb d2 80 c6 1c -
- -8b 61 c8 14 22 1e 0a 1c 32 30 d0 e4 aa 12 2a 70 -
- -68 14 2a 3c 3c 6d a9 13 30 1a 70 68 -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 d8 18 32 0a d1 9e 48 -
- -c6 b5 cc 35 89 ab e0 52 e6 69 2b d9 a6 6a 86 fa -
- -d3 d0 3e 05 4f 47 92 76 18 19 6a ff 77 e5 10 92 -
- -86 ba 4a 09 82 a3 73 85 b5 00 c1 0e -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 -14.992 s -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 d2 16 c0 e6 cc fe 4a -
- -06 6c f6 72 00 61 48 02 c8 32 66 1b ac 89 d5 76 -
- -36 10 1c 12 c8 92 31 92 d3 65 c8 8d a4 42 30 4c -
- -c0 48 0e 86 07 9e 05 d4 27 78 ea 4b -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 4f 00 0d 2f 09 24 00 ee 40 00 00 03 b3 -
- -66 cd 9b 36 6c d9 b3 66 cd 9b 36 6c d9 b3 fb 4f -
- -40 ad e0 81 3d b4 69 7c ce a2 ea 93 82 e2 5c c4 -
- -c7 d6 44 35 be 40 d8 69 01 1e 8d b2 -[3323 more] -
-id=7 timestamp=79 body_size=3375 content_type=0x09 dest=1 -14.996 s
14.996 s -
- - - -  Video 3375 bytes - -
   - - -    VP6( - -
   -1 1 1 0 1 1 1 0 - -      frame_mode=Predicted qp=55 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d2 16 a0 f6 d1 9e 78 cc 71 c4 -
- -b1 65 c9 f3 f1 3d 77 a7 2b 04 04 02 84 2e 0e 82 -
- -d6 ca 94 cc a5 b4 fc db 88 e6 49 88 33 62 c8 16 -
- -d1 9f fc 40 6c a3 d6 e0 da 86 03 c4 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 d2 17 69 76 d1 9e 48 c6 90 72 -
- -42 95 52 8f e7 1c 51 92 1c d5 32 a2 33 47 cc cd -
- -48 f3 d2 3d b0 a7 24 4f 32 67 1e 8a bd 5a 34 78 -
- -04 fa 5b 22 70 17 2c 7a fa 8f 83 41 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 41 00 0d 9e 09 24 00 ee 40 00 06 4e 00 -
- -b7 8c 9a d1 98 0e cd 9b 36 6c d9 b3 66 cd 9b 36 -
- -6c b1 a1 e4 48 91 b6 b9 73 b8 dc 91 47 43 ae f6 -
- -86 48 32 e9 30 55 9a 59 a2 80 f3 48 -[3434 more] -
-id=7 timestamp=65 body_size=3486 content_type=0x09 dest=1 -14.998 s
15.002 s
15.002 s -
- - - -  Video 3486 bytes - -
   - - -    VP6( - -
   -1 1 1 0 1 1 1 0 - -      frame_mode=Predicted qp=55 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 15 2a ff f3 40 c0 cf 16 89 7a d1 9e 79 -
- -86 90 77 6b 35 3c cd 5c ff 02 4a 8a 9c 59 22 2b -
- -52 46 68 79 48 5b c3 ed 0b a5 6a 09 f5 4e 4c dc -
- -8d c4 f5 86 c3 6c 91 35 68 68 b9 dc -  [49 more] -
-id=6 timestamp=21 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1a 2a ff f3 40 c0 cf 17 61 46 d1 9e 49 -
- -86 91 2d 2e 2f 74 63 19 2e 3d ac 82 e5 53 4c 95 -
- -6c 8d 0a ae f9 f4 e9 1d c7 3f 7c 96 b8 b3 af 57 -
- -78 92 6b 77 a6 6b 33 af 4c 71 50 74 -  [49 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-c6 2a ff f3 40 c0 cc 15 b1 22 d5 9e 49 86 91 98 -
- -7b 3f 0e a5 bb 03 42 53 28 d5 5d 17 4a a4 bb d1 -
- -4e f5 89 08 c5 92 34 f2 01 33 65 58 5b b6 79 18 -
- -61 68 a5 63 88 b2 40 c1 69 96 8d 69 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 10 65 09 24 00 f0 40 00 c0 ce 00 -
- -13 50 a9 12 28 08 e3 01 44 8e b8 32 24 48 a0 66 -
- -3a f5 c1 66 ce 62 5d 00 18 ed f4 80 e4 73 87 9e -
- -90 a2 ce 2d 2e f1 84 de e9 2f 41 84 -[4044 more] -
-id=7 timestamp=64 body_size=4197 content_type=0x09 dest=1 -15.135 s
15.138 s
15.142 s
15.142 s -
- - -  [fragment] - -
-c7 14 a9 dc 67 13 1e 18 c2 1c 11 5d 00 8a 1b e5 -
- -20 bd dc 65 07 4b 11 7e 32 d5 ab 85 4b d5 ac 3f -
- -04 05 66 64 30 36 db c3 34 19 59 b7 00 89 41 e6 -
- -f6 a1 9d 9e 90 f9 6c 23 3d 5e 54 6b -  [42 more] -
-id=7 timestamp=64 body_size=4197 content_type=0x09 dest=1 - -
- - - -  Video 4197 bytes - -
   - - -    VP6( - -
   -1 1 1 1 0 0 0 0 - -      frame_mode=Predicted qp=56 marker=vp61/62 - -
   - - -    ) - -
-c6 2a ff f3 40 c0 d0 16 11 b2 cc fe 7a 06 94 76 -
- -a8 32 91 57 47 3f cc 37 c2 fc 66 6f 51 82 86 b4 -
- -ba b6 9b 2e 76 1e 44 34 ce 85 d6 76 72 75 88 ca -
- -32 b1 24 38 d7 ee 52 27 1e 1c b0 72 -  [46 more] -
-id=6 timestamp=26 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-86 00 00 1b 2a ff f3 40 c0 d2 16 01 86 d1 9e 49 -
- -86 90 5c 43 14 a6 4f 22 56 ca 65 94 dc ef de ff -
- -fc b0 b2 3b 19 4e e9 5f b9 e5 0e 31 47 6b 9b b2 -
- -6e 0a bc 57 e9 66 5f 4d 0e c3 da c8 -  [49 more] -
-id=6 timestamp=27 body_size=105 content_type=0x08 dest=1 -15.146 s -
- - - -  Audio 105 bytes - -
-47 00 00 40 00 0d 22 09 24 00 ee 40 0a 45 20 31 -
- -bf d4 b8 ba 2d e1 db b7 6e dd bb 76 ed db b7 6e -
- -dd bb 76 ed db b7 76 77 a5 93 35 83 88 45 e0 40 -
- -aa 03 9b 10 0f cd fd 68 b6 36 21 99 -[3310 more] -
-id=7 timestamp=64 body_size=3362 content_type=0x09 dest=1 -15.148 s
15.148 s -
- - - -  Video 3362 bytes - -
   - - -    VP6( - -
   -1 1 1 0 1 1 1 0 - -      frame_mode=Predicted qp=55 marker=vp61/62 - -
   - - -    ) - -
-86 00 00 1f 2a ff f3 40 c0 d5 17 62 16 cd 9e 61 -
- -86 b4 58 7b 77 25 1c 21 c0 a6 71 59 18 ba ad ae -
- -f4 aa 4c 8a df 69 92 29 d6 44 29 a0 32 95 19 49 -
- -80 80 4f db 9e 1f 9f e0 7c 4b bb cf -  [49 more] -
-id=6 timestamp=31 body_size=105 content_type=0x08 dest=1 - -
- - - -  Audio 105 bytes - -
-

Client ---> Server - - - - - - - - - - - - - - - - - - - - - - -
-43 00 3a 49 00 00 22 14 02 00 0c 64 65 6c 65 74 -
- -65 53 74 72 65 61 6d 00 00 00 00 00 00 00 00 00 -
- -05 00 3f f0 00 00 00 00 00 00 -
-id=3 timestamp=14921 body_size=34 content_type=0x14 dest=0 -15.149 s -
- - - -  INVOKE( - -
   -02 00 0c 64 65 6c 65 74 65 53 74 72 65 61 6d - -    'deleteStream' - -
   -00 00 00 00 00 00 00 00 00 - -    0.0 - -
   -05 - -    NULL - -
   -00 3f f0 00 00 00 00 00 00 - -    1.0 - -
- - -  ) - -
-

Client <--- Server - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-02 00 00 00 00 00 06 04 00 00 00 00 00 01 00 00 -
- -00 01 -
-id=2 timestamp=0 body_size=6 content_type=0x04 dest=0 -15.161 s -
- - - -  Ping.STREAM_PLAYBUFFER_CLEAR(sid=1) - -
-45 00 00 00 00 00 b8 14 02 00 08 6f 6e 53 74 61 -
- -74 75 73 00 00 00 00 00 00 00 00 00 05 03 00 05 -
- -6c 65 76 65 6c 02 00 06 73 74 61 74 75 73 00 04 -
- -63 6f 64 65 02 00 13 4e 65 74 53 74 - [132 more] -
-id=5 timestamp=0 body_size=184 content_type=0x14 dest=1 - -
- - - -  INVOKE( - -
   -02 00 08 6f 6e 53 74 61 74 75 73 - -    'onStatus' - -
   -00 00 00 00 00 00 00 00 00 - -    0.0 - -
   -05 - -    NULL - -
   -03 - -    object { - -
   -00 05 6c 65 76 65 6c 02 00 06 73 74 61 74 75 73 - -        level: 'status' - -
   -00 04 63 6f 64 65 02 00 13 4e 65 74 53 74 72 65 -
-   -61 6d 2e 50 6c 61 79 2e 53 74 6f 70 -
-        code: 'NetStream.Play.Stop' - -
   -00 0b 64 65 73 63 72 69 70 74 69 6f 6e 02 00 25 -
-   -53 74 6f 70 70 65 64 20 70 6c 61 79 69 6e 67 20 -
-   -6a 74 76 5f 5a 73 61 59 47 5a 30 4c 53 38 69 4e -
-   -51 41 53 53 2e -
-        description: 'Stopped playing jtv_ZsaYGZ0LS8iNQASS.' - -
   -00 08 63 6c 69 65 6e 74 69 64 00 41 c7 b5 60 26 -
-   -80 00 00 -
-        clientid: 795525197.0 - -
   -00 06 72 65 61 73 6f 6e 02 00 00 - -        reason: '' - -
   -00 07 64 65 74 61 69 6c 73 02 00 14 6a 74 76 5f -
-   -5a 73 61 59 47 5a 30 4c 53 38 69 4e 51 41 53 53 -
-        details: 'jtv_ZsaYGZ0LS8iNQASS' - -
   -00 00 09 - -    } - -
- - -  ) - -
- - -EOF - -
-

Client ---> Server - - - - -
- - -EOF - -
-

\ No newline at end of file diff --git a/doc/video_file_format_spec_v10.pdf b/doc/video_file_format_spec_v10.pdf deleted file mode 100644 index 69ecf03..0000000 Binary files a/doc/video_file_format_spec_v10.pdf and /dev/null differ