Add ID3 TCON genre to MP3 test samples

This change adds a 'free-form' text genre to the existing
`bear-id3.mp3` sample, and adds a new sample with a 'numeric' genre ([9
is Metal](https://mutagen-specs.readthedocs.io/en/latest/id3/id3v2.4.0-frames.html#appendix-a-genre-list-from-id3v1)).

The samples were modified with:

```shell
$ id3edit --set-genre "Gorpcore" bear-id3.mp3
$ id3edit --set-genre "9" bear-id3-numeric-genre.mp3
```

Reading the numeric genre with `exiftool` shows the mapping back to
'Metal':

```
$ exiftool bear-id3-numeric-genre.mp3 | grep Genre
Genre                           : Metal
```

The playback dumps don't contain the genre because it's not yet
propagated to `MediaMetadata.genre`. That is done in a follow-up
change.

Issue: androidx/media#1305
PiperOrigin-RevId: 629043506
This commit is contained in:
ibaker 2024-04-29 06:01:04 -07:00 committed by Copybara-Service
parent d292f80926
commit b0e48175f0
20 changed files with 2768 additions and 45 deletions

View File

@ -42,6 +42,7 @@ public final class Mp3PlaybackTest {
"bear-cbr-constant-frame-size-no-seek-table.mp3", "bear-cbr-constant-frame-size-no-seek-table.mp3",
"bear-cbr-variable-frame-size-no-seek-table.mp3", "bear-cbr-variable-frame-size-no-seek-table.mp3",
"bear-id3.mp3", "bear-id3.mp3",
"bear-id3-numeric-genre.mp3",
"bear-vbr-no-seek-table.mp3", "bear-vbr-no-seek-table.mp3",
"bear-vbr-xing-header.mp3", "bear-vbr-xing-header.mp3",
"play-trimmed.mp3", "play-trimmed.mp3",

View File

@ -101,4 +101,10 @@ public final class Mp3ExtractorTest {
.build(), .build(),
simulationConfig); simulationConfig);
} }
@Test
public void mp3SampleWithId3NumericGenre() throws Exception {
ExtractorAsserts.assertBehavior(
Mp3Extractor::new, "media/mp3/bear-id3-numeric-genre.mp3", simulationConfig);
}
} }

View File

@ -1,10 +1,10 @@
seekMap: seekMap:
isSeekable = true isSeekable = true
duration = 2808000 duration = 2808000
getPosition(0) = [[timeUs=0, position=39740]] getPosition(0) = [[timeUs=0, position=39743]]
getPosition(1) = [[timeUs=0, position=39740]] getPosition(1) = [[timeUs=0, position=39743]]
getPosition(1404000) = [[timeUs=1404000, position=58820]] getPosition(1404000) = [[timeUs=1404000, position=58823]]
getPosition(2808000) = [[timeUs=2808000, position=77900]] getPosition(2808000) = [[timeUs=2808000, position=77903]]
numberOfTracks = 1 numberOfTracks = 1
track 0: track 0:
total output bytes = 38160 total output bytes = 38160

View File

@ -1,10 +1,10 @@
seekMap: seekMap:
isSeekable = true isSeekable = true
duration = 2808000 duration = 2808000
getPosition(0) = [[timeUs=0, position=39740]] getPosition(0) = [[timeUs=0, position=39743]]
getPosition(1) = [[timeUs=0, position=39740]] getPosition(1) = [[timeUs=0, position=39743]]
getPosition(1404000) = [[timeUs=1404000, position=58820]] getPosition(1404000) = [[timeUs=1404000, position=58823]]
getPosition(2808000) = [[timeUs=2808000, position=77900]] getPosition(2808000) = [[timeUs=2808000, position=77903]]
numberOfTracks = 1 numberOfTracks = 1
track 0: track 0:
total output bytes = 25344 total output bytes = 25344

View File

@ -1,10 +1,10 @@
seekMap: seekMap:
isSeekable = true isSeekable = true
duration = 2808000 duration = 2808000
getPosition(0) = [[timeUs=0, position=39740]] getPosition(0) = [[timeUs=0, position=39743]]
getPosition(1) = [[timeUs=0, position=39740]] getPosition(1) = [[timeUs=0, position=39743]]
getPosition(1404000) = [[timeUs=1404000, position=58820]] getPosition(1404000) = [[timeUs=1404000, position=58823]]
getPosition(2808000) = [[timeUs=2808000, position=77900]] getPosition(2808000) = [[timeUs=2808000, position=77903]]
numberOfTracks = 1 numberOfTracks = 1
track 0: track 0:
total output bytes = 12624 total output bytes = 12624

View File

@ -1,10 +1,10 @@
seekMap: seekMap:
isSeekable = true isSeekable = true
duration = 2808000 duration = 2808000
getPosition(0) = [[timeUs=0, position=39740]] getPosition(0) = [[timeUs=0, position=39743]]
getPosition(1) = [[timeUs=0, position=39740]] getPosition(1) = [[timeUs=0, position=39743]]
getPosition(1404000) = [[timeUs=1404000, position=58820]] getPosition(1404000) = [[timeUs=1404000, position=58823]]
getPosition(2808000) = [[timeUs=2808000, position=77900]] getPosition(2808000) = [[timeUs=2808000, position=77903]]
numberOfTracks = 1 numberOfTracks = 1
track 0: track 0:
total output bytes = 0 total output bytes = 0

View File

@ -1,10 +1,10 @@
seekMap: seekMap:
isSeekable = true isSeekable = true
duration = 2808000 duration = 2808000
getPosition(0) = [[timeUs=0, position=39740]] getPosition(0) = [[timeUs=0, position=39743]]
getPosition(1) = [[timeUs=0, position=39740]] getPosition(1) = [[timeUs=0, position=39743]]
getPosition(1404000) = [[timeUs=1404000, position=58820]] getPosition(1404000) = [[timeUs=1404000, position=58823]]
getPosition(2808000) = [[timeUs=2808000, position=77900]] getPosition(2808000) = [[timeUs=2808000, position=77903]]
numberOfTracks = 1 numberOfTracks = 1
track 0: track 0:
total output bytes = 38160 total output bytes = 38160

View File

@ -1,10 +1,10 @@
seekMap: seekMap:
isSeekable = true isSeekable = true
duration = 2808000 duration = 2808000
getPosition(0) = [[timeUs=0, position=39740]] getPosition(0) = [[timeUs=0, position=39743]]
getPosition(1) = [[timeUs=0, position=39740]] getPosition(1) = [[timeUs=0, position=39743]]
getPosition(1404000) = [[timeUs=1404000, position=58820]] getPosition(1404000) = [[timeUs=1404000, position=58823]]
getPosition(2808000) = [[timeUs=2808000, position=77900]] getPosition(2808000) = [[timeUs=2808000, position=77903]]
numberOfTracks = 1 numberOfTracks = 1
track 0: track 0:
total output bytes = 38160 total output bytes = 38160
@ -16,7 +16,7 @@ track 0:
sampleRate = 48000 sampleRate = 48000
encoderDelay = 576 encoderDelay = 576
encoderPadding = 576 encoderPadding = 576
metadata = entries=[TIT2: description=null: values=[Test title], TPE1: description=null: values=[Test Artist], TALB: description=null: values=[Test Album], TXXX: description=Test description: values=[Test user info], COMM: language=eng, description=Test description, text=Test comment, WXXX: url=Test URL, TSSE: description=null: values=[Lavf58.29.100], MLLT, PRIV: owner=test@gmail.com, UNKN, GEOB: mimeType=test/mime, filename=Testfilename.txt, description=Test description, CHAP, CHAP, CTOC, APIC: mimeType=image/jpeg, description=Test description] metadata = entries=[TIT2: description=null: values=[Test title], TPE1: description=null: values=[Test Artist], TALB: description=null: values=[Test Album], TXXX: description=Test description: values=[Test user info], COMM: language=eng, description=Test description, text=Test comment, WXXX: url=Test URL, TSSE: description=null: values=[Lavf58.29.100], MLLT, PRIV: owner=test@gmail.com, UNKN, GEOB: mimeType=test/mime, filename=Testfilename.txt, description=Test description, CHAP, CHAP, CTOC, APIC: mimeType=image/jpeg, description=Test description, TCON: description=null: values=[Gorpcore]]
sample 0: sample 0:
time = 0 time = 0
flags = 1 flags = 1

View File

@ -1,10 +1,10 @@
seekMap: seekMap:
isSeekable = true isSeekable = true
duration = 2808000 duration = 2808000
getPosition(0) = [[timeUs=0, position=39740]] getPosition(0) = [[timeUs=0, position=39743]]
getPosition(1) = [[timeUs=0, position=39740]] getPosition(1) = [[timeUs=0, position=39743]]
getPosition(1404000) = [[timeUs=1404000, position=58820]] getPosition(1404000) = [[timeUs=1404000, position=58823]]
getPosition(2808000) = [[timeUs=2808000, position=77900]] getPosition(2808000) = [[timeUs=2808000, position=77903]]
numberOfTracks = 1 numberOfTracks = 1
track 0: track 0:
total output bytes = 25344 total output bytes = 25344
@ -16,7 +16,7 @@ track 0:
sampleRate = 48000 sampleRate = 48000
encoderDelay = 576 encoderDelay = 576
encoderPadding = 576 encoderPadding = 576
metadata = entries=[TIT2: description=null: values=[Test title], TPE1: description=null: values=[Test Artist], TALB: description=null: values=[Test Album], TXXX: description=Test description: values=[Test user info], COMM: language=eng, description=Test description, text=Test comment, WXXX: url=Test URL, TSSE: description=null: values=[Lavf58.29.100], MLLT, PRIV: owner=test@gmail.com, UNKN, GEOB: mimeType=test/mime, filename=Testfilename.txt, description=Test description, CHAP, CHAP, CTOC, APIC: mimeType=image/jpeg, description=Test description] metadata = entries=[TIT2: description=null: values=[Test title], TPE1: description=null: values=[Test Artist], TALB: description=null: values=[Test Album], TXXX: description=Test description: values=[Test user info], COMM: language=eng, description=Test description, text=Test comment, WXXX: url=Test URL, TSSE: description=null: values=[Lavf58.29.100], MLLT, PRIV: owner=test@gmail.com, UNKN, GEOB: mimeType=test/mime, filename=Testfilename.txt, description=Test description, CHAP, CHAP, CTOC, APIC: mimeType=image/jpeg, description=Test description, TCON: description=null: values=[Gorpcore]]
sample 0: sample 0:
time = 943000 time = 943000
flags = 1 flags = 1

View File

@ -1,10 +1,10 @@
seekMap: seekMap:
isSeekable = true isSeekable = true
duration = 2808000 duration = 2808000
getPosition(0) = [[timeUs=0, position=39740]] getPosition(0) = [[timeUs=0, position=39743]]
getPosition(1) = [[timeUs=0, position=39740]] getPosition(1) = [[timeUs=0, position=39743]]
getPosition(1404000) = [[timeUs=1404000, position=58820]] getPosition(1404000) = [[timeUs=1404000, position=58823]]
getPosition(2808000) = [[timeUs=2808000, position=77900]] getPosition(2808000) = [[timeUs=2808000, position=77903]]
numberOfTracks = 1 numberOfTracks = 1
track 0: track 0:
total output bytes = 12624 total output bytes = 12624
@ -16,7 +16,7 @@ track 0:
sampleRate = 48000 sampleRate = 48000
encoderDelay = 576 encoderDelay = 576
encoderPadding = 576 encoderPadding = 576
metadata = entries=[TIT2: description=null: values=[Test title], TPE1: description=null: values=[Test Artist], TALB: description=null: values=[Test Album], TXXX: description=Test description: values=[Test user info], COMM: language=eng, description=Test description, text=Test comment, WXXX: url=Test URL, TSSE: description=null: values=[Lavf58.29.100], MLLT, PRIV: owner=test@gmail.com, UNKN, GEOB: mimeType=test/mime, filename=Testfilename.txt, description=Test description, CHAP, CHAP, CTOC, APIC: mimeType=image/jpeg, description=Test description] metadata = entries=[TIT2: description=null: values=[Test title], TPE1: description=null: values=[Test Artist], TALB: description=null: values=[Test Album], TXXX: description=Test description: values=[Test user info], COMM: language=eng, description=Test description, text=Test comment, WXXX: url=Test URL, TSSE: description=null: values=[Lavf58.29.100], MLLT, PRIV: owner=test@gmail.com, UNKN, GEOB: mimeType=test/mime, filename=Testfilename.txt, description=Test description, CHAP, CHAP, CTOC, APIC: mimeType=image/jpeg, description=Test description, TCON: description=null: values=[Gorpcore]]
sample 0: sample 0:
time = 1879000 time = 1879000
flags = 1 flags = 1

View File

@ -1,10 +1,10 @@
seekMap: seekMap:
isSeekable = true isSeekable = true
duration = 2808000 duration = 2808000
getPosition(0) = [[timeUs=0, position=39740]] getPosition(0) = [[timeUs=0, position=39743]]
getPosition(1) = [[timeUs=0, position=39740]] getPosition(1) = [[timeUs=0, position=39743]]
getPosition(1404000) = [[timeUs=1404000, position=58820]] getPosition(1404000) = [[timeUs=1404000, position=58823]]
getPosition(2808000) = [[timeUs=2808000, position=77900]] getPosition(2808000) = [[timeUs=2808000, position=77903]]
numberOfTracks = 1 numberOfTracks = 1
track 0: track 0:
total output bytes = 0 total output bytes = 0
@ -16,5 +16,5 @@ track 0:
sampleRate = 48000 sampleRate = 48000
encoderDelay = 576 encoderDelay = 576
encoderPadding = 576 encoderPadding = 576
metadata = entries=[TIT2: description=null: values=[Test title], TPE1: description=null: values=[Test Artist], TALB: description=null: values=[Test Album], TXXX: description=Test description: values=[Test user info], COMM: language=eng, description=Test description, text=Test comment, WXXX: url=Test URL, TSSE: description=null: values=[Lavf58.29.100], MLLT, PRIV: owner=test@gmail.com, UNKN, GEOB: mimeType=test/mime, filename=Testfilename.txt, description=Test description, CHAP, CHAP, CTOC, APIC: mimeType=image/jpeg, description=Test description] metadata = entries=[TIT2: description=null: values=[Test title], TPE1: description=null: values=[Test Artist], TALB: description=null: values=[Test Album], TXXX: description=Test description: values=[Test user info], COMM: language=eng, description=Test description, text=Test comment, WXXX: url=Test URL, TSSE: description=null: values=[Lavf58.29.100], MLLT, PRIV: owner=test@gmail.com, UNKN, GEOB: mimeType=test/mime, filename=Testfilename.txt, description=Test description, CHAP, CHAP, CTOC, APIC: mimeType=image/jpeg, description=Test description, TCON: description=null: values=[Gorpcore]]
tracksEnded = true tracksEnded = true

View File

@ -1,10 +1,10 @@
seekMap: seekMap:
isSeekable = true isSeekable = true
duration = 2808000 duration = 2808000
getPosition(0) = [[timeUs=0, position=39740]] getPosition(0) = [[timeUs=0, position=39743]]
getPosition(1) = [[timeUs=0, position=39740]] getPosition(1) = [[timeUs=0, position=39743]]
getPosition(1404000) = [[timeUs=1404000, position=58820]] getPosition(1404000) = [[timeUs=1404000, position=58823]]
getPosition(2808000) = [[timeUs=2808000, position=77900]] getPosition(2808000) = [[timeUs=2808000, position=77903]]
numberOfTracks = 1 numberOfTracks = 1
track 0: track 0:
total output bytes = 38160 total output bytes = 38160
@ -16,7 +16,7 @@ track 0:
sampleRate = 48000 sampleRate = 48000
encoderDelay = 576 encoderDelay = 576
encoderPadding = 576 encoderPadding = 576
metadata = entries=[TIT2: description=null: values=[Test title], TPE1: description=null: values=[Test Artist], TALB: description=null: values=[Test Album], TXXX: description=Test description: values=[Test user info], COMM: language=eng, description=Test description, text=Test comment, WXXX: url=Test URL, TSSE: description=null: values=[Lavf58.29.100], MLLT, PRIV: owner=test@gmail.com, UNKN, GEOB: mimeType=test/mime, filename=Testfilename.txt, description=Test description, CHAP, CHAP, CTOC, APIC: mimeType=image/jpeg, description=Test description] metadata = entries=[TIT2: description=null: values=[Test title], TPE1: description=null: values=[Test Artist], TALB: description=null: values=[Test Album], TXXX: description=Test description: values=[Test user info], COMM: language=eng, description=Test description, text=Test comment, WXXX: url=Test URL, TSSE: description=null: values=[Lavf58.29.100], MLLT, PRIV: owner=test@gmail.com, UNKN, GEOB: mimeType=test/mime, filename=Testfilename.txt, description=Test description, CHAP, CHAP, CTOC, APIC: mimeType=image/jpeg, description=Test description, TCON: description=null: values=[Gorpcore]]
sample 0: sample 0:
time = 0 time = 0
flags = 1 flags = 1

View File

@ -0,0 +1,488 @@
seekMap:
isSeekable = true
duration = 2808000
getPosition(0) = [[timeUs=0, position=39729]]
getPosition(1) = [[timeUs=0, position=39729]]
getPosition(1404000) = [[timeUs=1404000, position=58809]]
getPosition(2808000) = [[timeUs=2808000, position=77889]]
numberOfTracks = 1
track 0:
total output bytes = 38160
sample count = 117
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096
channelCount = 2
sampleRate = 48000
encoderDelay = 576
encoderPadding = 576
metadata = entries=[TIT2: description=null: values=[Test title], TPE1: description=null: values=[Test Artist], TALB: description=null: values=[Test Album], TXXX: description=Test description: values=[Test user info], COMM: language=eng, description=Test description, text=Test comment, WXXX: url=Test URL, TSSE: description=null: values=[Lavf58.29.100], MLLT, PRIV: owner=test@gmail.com, UNKN, GEOB: mimeType=test/mime, filename=Testfilename.txt, description=Test description, CHAP, CHAP, CTOC, APIC: mimeType=image/jpeg, description=Test description, TCON: description=null: values=[9]]
sample 0:
time = 0
flags = 1
data = length 96, hash 1F161542
sample 1:
time = 24000
flags = 1
data = length 768, hash CD1DC50F
sample 2:
time = 48000
flags = 1
data = length 336, hash 3F64124B
sample 3:
time = 72000
flags = 1
data = length 336, hash 8FFED94E
sample 4:
time = 96000
flags = 1
data = length 288, hash 9CD77D47
sample 5:
time = 120000
flags = 1
data = length 384, hash 24607BB5
sample 6:
time = 144000
flags = 1
data = length 480, hash 4937EBAB
sample 7:
time = 168000
flags = 1
data = length 336, hash 546342B1
sample 8:
time = 192000
flags = 1
data = length 336, hash 79E0923F
sample 9:
time = 216000
flags = 1
data = length 336, hash AB1F3948
sample 10:
time = 240000
flags = 1
data = length 336, hash C3A4D888
sample 11:
time = 264000
flags = 1
data = length 288, hash 7867DA45
sample 12:
time = 288000
flags = 1
data = length 336, hash B1240B73
sample 13:
time = 312000
flags = 1
data = length 336, hash 94CFCD35
sample 14:
time = 336000
flags = 1
data = length 288, hash 94F412C
sample 15:
time = 360000
flags = 1
data = length 336, hash A1D9FF41
sample 16:
time = 384000
flags = 1
data = length 288, hash 2A8DA21B
sample 17:
time = 408000
flags = 1
data = length 336, hash 6A429CE
sample 18:
time = 432000
flags = 1
data = length 336, hash 68853982
sample 19:
time = 456000
flags = 1
data = length 384, hash 1D6F779C
sample 20:
time = 480000
flags = 1
data = length 480, hash 6B31EBEE
sample 21:
time = 504000
flags = 1
data = length 336, hash 888335BE
sample 22:
time = 528000
flags = 1
data = length 336, hash 6072AC8B
sample 23:
time = 552000
flags = 1
data = length 336, hash C9D24234
sample 24:
time = 576000
flags = 1
data = length 288, hash 52BF4D1E
sample 25:
time = 600000
flags = 1
data = length 336, hash F93F4F0
sample 26:
time = 624000
flags = 1
data = length 336, hash 8617688A
sample 27:
time = 648000
flags = 1
data = length 480, hash FAB0D31B
sample 28:
time = 672000
flags = 1
data = length 384, hash FA4B53E2
sample 29:
time = 696000
flags = 1
data = length 336, hash 8C435F6A
sample 30:
time = 720000
flags = 1
data = length 336, hash 60D3F80C
sample 31:
time = 744000
flags = 1
data = length 336, hash DC15B68B
sample 32:
time = 768000
flags = 1
data = length 288, hash FF3DF141
sample 33:
time = 792000
flags = 1
data = length 336, hash A64B3042
sample 34:
time = 816000
flags = 1
data = length 336, hash ACA622A1
sample 35:
time = 840000
flags = 1
data = length 288, hash 3E34B8D4
sample 36:
time = 864000
flags = 1
data = length 288, hash 9B96F72A
sample 37:
time = 888000
flags = 1
data = length 336, hash E917C122
sample 38:
time = 912000
flags = 1
data = length 336, hash 10ED1470
sample 39:
time = 936000
flags = 1
data = length 288, hash 706B8A7C
sample 40:
time = 960000
flags = 1
data = length 336, hash 71FFE4A0
sample 41:
time = 984000
flags = 1
data = length 336, hash D4160463
sample 42:
time = 1008000
flags = 1
data = length 336, hash EC557B14
sample 43:
time = 1032000
flags = 1
data = length 288, hash 5598CF8B
sample 44:
time = 1056000
flags = 1
data = length 336, hash 7E0AB41
sample 45:
time = 1080000
flags = 1
data = length 336, hash 1C585FEF
sample 46:
time = 1104000
flags = 1
data = length 336, hash A4A4855E
sample 47:
time = 1128000
flags = 1
data = length 336, hash CECA51D3
sample 48:
time = 1152000
flags = 1
data = length 288, hash 2D362DC5
sample 49:
time = 1176000
flags = 1
data = length 336, hash 9EB2609D
sample 50:
time = 1200000
flags = 1
data = length 336, hash 28FFB3FE
sample 51:
time = 1224000
flags = 1
data = length 288, hash 2AA2D216
sample 52:
time = 1248000
flags = 1
data = length 336, hash CDBC7032
sample 53:
time = 1272000
flags = 1
data = length 336, hash 25B13FE7
sample 54:
time = 1296000
flags = 1
data = length 336, hash DB6BB1E
sample 55:
time = 1320000
flags = 1
data = length 336, hash EBE951F4
sample 56:
time = 1344000
flags = 1
data = length 288, hash 9E2EBFF7
sample 57:
time = 1368000
flags = 1
data = length 336, hash 36A7D455
sample 58:
time = 1392000
flags = 1
data = length 336, hash 84545F8C
sample 59:
time = 1416000
flags = 1
data = length 336, hash F66F3045
sample 60:
time = 1440000
flags = 1
data = length 576, hash 5AB089EA
sample 61:
time = 1464000
flags = 1
data = length 336, hash 8868086
sample 62:
time = 1488000
flags = 1
data = length 336, hash D5EB6D63
sample 63:
time = 1512000
flags = 1
data = length 288, hash 7A5374B7
sample 64:
time = 1536000
flags = 1
data = length 336, hash BEB27A75
sample 65:
time = 1560000
flags = 1
data = length 336, hash E251E0FD
sample 66:
time = 1584000
flags = 1
data = length 288, hash D54C970
sample 67:
time = 1608000
flags = 1
data = length 336, hash 52C473B9
sample 68:
time = 1632000
flags = 1
data = length 336, hash F5F13334
sample 69:
time = 1656000
flags = 1
data = length 480, hash A5F1E987
sample 70:
time = 1680000
flags = 1
data = length 288, hash 453A1267
sample 71:
time = 1704000
flags = 1
data = length 288, hash 7C6C2EA9
sample 72:
time = 1728000
flags = 1
data = length 336, hash F4BFECA4
sample 73:
time = 1752000
flags = 1
data = length 336, hash 751A395A
sample 74:
time = 1776000
flags = 1
data = length 336, hash EE38DB02
sample 75:
time = 1800000
flags = 1
data = length 336, hash F18837E2
sample 76:
time = 1824000
flags = 1
data = length 336, hash ED36B78E
sample 77:
time = 1848000
flags = 1
data = length 336, hash B3D28289
sample 78:
time = 1872000
flags = 1
data = length 288, hash 8BDE28E1
sample 79:
time = 1896000
flags = 1
data = length 336, hash CFD5E966
sample 80:
time = 1920000
flags = 1
data = length 288, hash DC08E267
sample 81:
time = 1944000
flags = 1
data = length 336, hash 6530CB78
sample 82:
time = 1968000
flags = 1
data = length 336, hash 6CC6636E
sample 83:
time = 1992000
flags = 1
data = length 336, hash 613047C1
sample 84:
time = 2016000
flags = 1
data = length 288, hash CDC747BF
sample 85:
time = 2040000
flags = 1
data = length 336, hash AF22AA74
sample 86:
time = 2064000
flags = 1
data = length 384, hash 82F326AA
sample 87:
time = 2088000
flags = 1
data = length 384, hash EDA26C4D
sample 88:
time = 2112000
flags = 1
data = length 336, hash 94C643DC
sample 89:
time = 2136000
flags = 1
data = length 288, hash CB5D9C40
sample 90:
time = 2160000
flags = 1
data = length 336, hash 1E69DE3F
sample 91:
time = 2184000
flags = 1
data = length 336, hash 7E472219
sample 92:
time = 2208000
flags = 1
data = length 336, hash DA47B9FA
sample 93:
time = 2232000
flags = 1
data = length 336, hash DD0ABB7C
sample 94:
time = 2256000
flags = 1
data = length 288, hash DBF93FAC
sample 95:
time = 2280000
flags = 1
data = length 336, hash 243F4B2
sample 96:
time = 2304000
flags = 1
data = length 336, hash 2E881490
sample 97:
time = 2328000
flags = 1
data = length 288, hash 1C28C8BE
sample 98:
time = 2352000
flags = 1
data = length 336, hash C73E5D30
sample 99:
time = 2376000
flags = 1
data = length 288, hash 98B5BFF6
sample 100:
time = 2400000
flags = 1
data = length 336, hash E0135533
sample 101:
time = 2424000
flags = 1
data = length 336, hash D13C9DBC
sample 102:
time = 2448000
flags = 1
data = length 336, hash 63D524CA
sample 103:
time = 2472000
flags = 1
data = length 288, hash A28514C3
sample 104:
time = 2496000
flags = 1
data = length 336, hash 72B647FF
sample 105:
time = 2520000
flags = 1
data = length 336, hash 8F740AB1
sample 106:
time = 2544000
flags = 1
data = length 336, hash 5E3C7E93
sample 107:
time = 2568000
flags = 1
data = length 336, hash 121B913B
sample 108:
time = 2592000
flags = 1
data = length 336, hash 578FCCF2
sample 109:
time = 2616000
flags = 1
data = length 336, hash 5B5823DE
sample 110:
time = 2640000
flags = 1
data = length 384, hash D8B83F78
sample 111:
time = 2664000
flags = 1
data = length 240, hash E649682F
sample 112:
time = 2688000
flags = 1
data = length 96, hash C559A6F4
sample 113:
time = 2712000
flags = 1
data = length 96, hash 792796BC
sample 114:
time = 2736000
flags = 1
data = length 120, hash 8172CD0E
sample 115:
time = 2760000
flags = 1
data = length 120, hash F562B52F
sample 116:
time = 2784000
flags = 1
data = length 96, hash FF8D5B98
tracksEnded = true

View File

@ -0,0 +1,340 @@
seekMap:
isSeekable = true
duration = 2808000
getPosition(0) = [[timeUs=0, position=39729]]
getPosition(1) = [[timeUs=0, position=39729]]
getPosition(1404000) = [[timeUs=1404000, position=58809]]
getPosition(2808000) = [[timeUs=2808000, position=77889]]
numberOfTracks = 1
track 0:
total output bytes = 25344
sample count = 80
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096
channelCount = 2
sampleRate = 48000
encoderDelay = 576
encoderPadding = 576
metadata = entries=[TIT2: description=null: values=[Test title], TPE1: description=null: values=[Test Artist], TALB: description=null: values=[Test Album], TXXX: description=Test description: values=[Test user info], COMM: language=eng, description=Test description, text=Test comment, WXXX: url=Test URL, TSSE: description=null: values=[Lavf58.29.100], MLLT, PRIV: owner=test@gmail.com, UNKN, GEOB: mimeType=test/mime, filename=Testfilename.txt, description=Test description, CHAP, CHAP, CTOC, APIC: mimeType=image/jpeg, description=Test description, TCON: description=null: values=[9]]
sample 0:
time = 943000
flags = 1
data = length 336, hash E917C122
sample 1:
time = 967000
flags = 1
data = length 336, hash 10ED1470
sample 2:
time = 991000
flags = 1
data = length 288, hash 706B8A7C
sample 3:
time = 1015000
flags = 1
data = length 336, hash 71FFE4A0
sample 4:
time = 1039000
flags = 1
data = length 336, hash D4160463
sample 5:
time = 1063000
flags = 1
data = length 336, hash EC557B14
sample 6:
time = 1087000
flags = 1
data = length 288, hash 5598CF8B
sample 7:
time = 1111000
flags = 1
data = length 336, hash 7E0AB41
sample 8:
time = 1135000
flags = 1
data = length 336, hash 1C585FEF
sample 9:
time = 1159000
flags = 1
data = length 336, hash A4A4855E
sample 10:
time = 1183000
flags = 1
data = length 336, hash CECA51D3
sample 11:
time = 1207000
flags = 1
data = length 288, hash 2D362DC5
sample 12:
time = 1231000
flags = 1
data = length 336, hash 9EB2609D
sample 13:
time = 1255000
flags = 1
data = length 336, hash 28FFB3FE
sample 14:
time = 1279000
flags = 1
data = length 288, hash 2AA2D216
sample 15:
time = 1303000
flags = 1
data = length 336, hash CDBC7032
sample 16:
time = 1327000
flags = 1
data = length 336, hash 25B13FE7
sample 17:
time = 1351000
flags = 1
data = length 336, hash DB6BB1E
sample 18:
time = 1375000
flags = 1
data = length 336, hash EBE951F4
sample 19:
time = 1399000
flags = 1
data = length 288, hash 9E2EBFF7
sample 20:
time = 1423000
flags = 1
data = length 336, hash 36A7D455
sample 21:
time = 1447000
flags = 1
data = length 336, hash 84545F8C
sample 22:
time = 1471000
flags = 1
data = length 336, hash F66F3045
sample 23:
time = 1495000
flags = 1
data = length 576, hash 5AB089EA
sample 24:
time = 1519000
flags = 1
data = length 336, hash 8868086
sample 25:
time = 1543000
flags = 1
data = length 336, hash D5EB6D63
sample 26:
time = 1567000
flags = 1
data = length 288, hash 7A5374B7
sample 27:
time = 1591000
flags = 1
data = length 336, hash BEB27A75
sample 28:
time = 1615000
flags = 1
data = length 336, hash E251E0FD
sample 29:
time = 1639000
flags = 1
data = length 288, hash D54C970
sample 30:
time = 1663000
flags = 1
data = length 336, hash 52C473B9
sample 31:
time = 1687000
flags = 1
data = length 336, hash F5F13334
sample 32:
time = 1711000
flags = 1
data = length 480, hash A5F1E987
sample 33:
time = 1735000
flags = 1
data = length 288, hash 453A1267
sample 34:
time = 1759000
flags = 1
data = length 288, hash 7C6C2EA9
sample 35:
time = 1783000
flags = 1
data = length 336, hash F4BFECA4
sample 36:
time = 1807000
flags = 1
data = length 336, hash 751A395A
sample 37:
time = 1831000
flags = 1
data = length 336, hash EE38DB02
sample 38:
time = 1855000
flags = 1
data = length 336, hash F18837E2
sample 39:
time = 1879000
flags = 1
data = length 336, hash ED36B78E
sample 40:
time = 1903000
flags = 1
data = length 336, hash B3D28289
sample 41:
time = 1927000
flags = 1
data = length 288, hash 8BDE28E1
sample 42:
time = 1951000
flags = 1
data = length 336, hash CFD5E966
sample 43:
time = 1975000
flags = 1
data = length 288, hash DC08E267
sample 44:
time = 1999000
flags = 1
data = length 336, hash 6530CB78
sample 45:
time = 2023000
flags = 1
data = length 336, hash 6CC6636E
sample 46:
time = 2047000
flags = 1
data = length 336, hash 613047C1
sample 47:
time = 2071000
flags = 1
data = length 288, hash CDC747BF
sample 48:
time = 2095000
flags = 1
data = length 336, hash AF22AA74
sample 49:
time = 2119000
flags = 1
data = length 384, hash 82F326AA
sample 50:
time = 2143000
flags = 1
data = length 384, hash EDA26C4D
sample 51:
time = 2167000
flags = 1
data = length 336, hash 94C643DC
sample 52:
time = 2191000
flags = 1
data = length 288, hash CB5D9C40
sample 53:
time = 2215000
flags = 1
data = length 336, hash 1E69DE3F
sample 54:
time = 2239000
flags = 1
data = length 336, hash 7E472219
sample 55:
time = 2263000
flags = 1
data = length 336, hash DA47B9FA
sample 56:
time = 2287000
flags = 1
data = length 336, hash DD0ABB7C
sample 57:
time = 2311000
flags = 1
data = length 288, hash DBF93FAC
sample 58:
time = 2335000
flags = 1
data = length 336, hash 243F4B2
sample 59:
time = 2359000
flags = 1
data = length 336, hash 2E881490
sample 60:
time = 2383000
flags = 1
data = length 288, hash 1C28C8BE
sample 61:
time = 2407000
flags = 1
data = length 336, hash C73E5D30
sample 62:
time = 2431000
flags = 1
data = length 288, hash 98B5BFF6
sample 63:
time = 2455000
flags = 1
data = length 336, hash E0135533
sample 64:
time = 2479000
flags = 1
data = length 336, hash D13C9DBC
sample 65:
time = 2503000
flags = 1
data = length 336, hash 63D524CA
sample 66:
time = 2527000
flags = 1
data = length 288, hash A28514C3
sample 67:
time = 2551000
flags = 1
data = length 336, hash 72B647FF
sample 68:
time = 2575000
flags = 1
data = length 336, hash 8F740AB1
sample 69:
time = 2599000
flags = 1
data = length 336, hash 5E3C7E93
sample 70:
time = 2623000
flags = 1
data = length 336, hash 121B913B
sample 71:
time = 2647000
flags = 1
data = length 336, hash 578FCCF2
sample 72:
time = 2671000
flags = 1
data = length 336, hash 5B5823DE
sample 73:
time = 2695000
flags = 1
data = length 384, hash D8B83F78
sample 74:
time = 2719000
flags = 1
data = length 240, hash E649682F
sample 75:
time = 2743000
flags = 1
data = length 96, hash C559A6F4
sample 76:
time = 2767000
flags = 1
data = length 96, hash 792796BC
sample 77:
time = 2791000
flags = 1
data = length 120, hash 8172CD0E
sample 78:
time = 2815000
flags = 1
data = length 120, hash F562B52F
sample 79:
time = 2839000
flags = 1
data = length 96, hash FF8D5B98
tracksEnded = true

View File

@ -0,0 +1,188 @@
seekMap:
isSeekable = true
duration = 2808000
getPosition(0) = [[timeUs=0, position=39729]]
getPosition(1) = [[timeUs=0, position=39729]]
getPosition(1404000) = [[timeUs=1404000, position=58809]]
getPosition(2808000) = [[timeUs=2808000, position=77889]]
numberOfTracks = 1
track 0:
total output bytes = 12624
sample count = 42
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096
channelCount = 2
sampleRate = 48000
encoderDelay = 576
encoderPadding = 576
metadata = entries=[TIT2: description=null: values=[Test title], TPE1: description=null: values=[Test Artist], TALB: description=null: values=[Test Album], TXXX: description=Test description: values=[Test user info], COMM: language=eng, description=Test description, text=Test comment, WXXX: url=Test URL, TSSE: description=null: values=[Lavf58.29.100], MLLT, PRIV: owner=test@gmail.com, UNKN, GEOB: mimeType=test/mime, filename=Testfilename.txt, description=Test description, CHAP, CHAP, CTOC, APIC: mimeType=image/jpeg, description=Test description, TCON: description=null: values=[9]]
sample 0:
time = 1879000
flags = 1
data = length 336, hash F18837E2
sample 1:
time = 1903000
flags = 1
data = length 336, hash ED36B78E
sample 2:
time = 1927000
flags = 1
data = length 336, hash B3D28289
sample 3:
time = 1951000
flags = 1
data = length 288, hash 8BDE28E1
sample 4:
time = 1975000
flags = 1
data = length 336, hash CFD5E966
sample 5:
time = 1999000
flags = 1
data = length 288, hash DC08E267
sample 6:
time = 2023000
flags = 1
data = length 336, hash 6530CB78
sample 7:
time = 2047000
flags = 1
data = length 336, hash 6CC6636E
sample 8:
time = 2071000
flags = 1
data = length 336, hash 613047C1
sample 9:
time = 2095000
flags = 1
data = length 288, hash CDC747BF
sample 10:
time = 2119000
flags = 1
data = length 336, hash AF22AA74
sample 11:
time = 2143000
flags = 1
data = length 384, hash 82F326AA
sample 12:
time = 2167000
flags = 1
data = length 384, hash EDA26C4D
sample 13:
time = 2191000
flags = 1
data = length 336, hash 94C643DC
sample 14:
time = 2215000
flags = 1
data = length 288, hash CB5D9C40
sample 15:
time = 2239000
flags = 1
data = length 336, hash 1E69DE3F
sample 16:
time = 2263000
flags = 1
data = length 336, hash 7E472219
sample 17:
time = 2287000
flags = 1
data = length 336, hash DA47B9FA
sample 18:
time = 2311000
flags = 1
data = length 336, hash DD0ABB7C
sample 19:
time = 2335000
flags = 1
data = length 288, hash DBF93FAC
sample 20:
time = 2359000
flags = 1
data = length 336, hash 243F4B2
sample 21:
time = 2383000
flags = 1
data = length 336, hash 2E881490
sample 22:
time = 2407000
flags = 1
data = length 288, hash 1C28C8BE
sample 23:
time = 2431000
flags = 1
data = length 336, hash C73E5D30
sample 24:
time = 2455000
flags = 1
data = length 288, hash 98B5BFF6
sample 25:
time = 2479000
flags = 1
data = length 336, hash E0135533
sample 26:
time = 2503000
flags = 1
data = length 336, hash D13C9DBC
sample 27:
time = 2527000
flags = 1
data = length 336, hash 63D524CA
sample 28:
time = 2551000
flags = 1
data = length 288, hash A28514C3
sample 29:
time = 2575000
flags = 1
data = length 336, hash 72B647FF
sample 30:
time = 2599000
flags = 1
data = length 336, hash 8F740AB1
sample 31:
time = 2623000
flags = 1
data = length 336, hash 5E3C7E93
sample 32:
time = 2647000
flags = 1
data = length 336, hash 121B913B
sample 33:
time = 2671000
flags = 1
data = length 336, hash 578FCCF2
sample 34:
time = 2695000
flags = 1
data = length 336, hash 5B5823DE
sample 35:
time = 2719000
flags = 1
data = length 384, hash D8B83F78
sample 36:
time = 2743000
flags = 1
data = length 240, hash E649682F
sample 37:
time = 2767000
flags = 1
data = length 96, hash C559A6F4
sample 38:
time = 2791000
flags = 1
data = length 96, hash 792796BC
sample 39:
time = 2815000
flags = 1
data = length 120, hash 8172CD0E
sample 40:
time = 2839000
flags = 1
data = length 120, hash F562B52F
sample 41:
time = 2863000
flags = 1
data = length 96, hash FF8D5B98
tracksEnded = true

View File

@ -0,0 +1,20 @@
seekMap:
isSeekable = true
duration = 2808000
getPosition(0) = [[timeUs=0, position=39729]]
getPosition(1) = [[timeUs=0, position=39729]]
getPosition(1404000) = [[timeUs=1404000, position=58809]]
getPosition(2808000) = [[timeUs=2808000, position=77889]]
numberOfTracks = 1
track 0:
total output bytes = 0
sample count = 0
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096
channelCount = 2
sampleRate = 48000
encoderDelay = 576
encoderPadding = 576
metadata = entries=[TIT2: description=null: values=[Test title], TPE1: description=null: values=[Test Artist], TALB: description=null: values=[Test Album], TXXX: description=Test description: values=[Test user info], COMM: language=eng, description=Test description, text=Test comment, WXXX: url=Test URL, TSSE: description=null: values=[Lavf58.29.100], MLLT, PRIV: owner=test@gmail.com, UNKN, GEOB: mimeType=test/mime, filename=Testfilename.txt, description=Test description, CHAP, CHAP, CTOC, APIC: mimeType=image/jpeg, description=Test description, TCON: description=null: values=[9]]
tracksEnded = true

View File

@ -0,0 +1,488 @@
seekMap:
isSeekable = true
duration = 2808000
getPosition(0) = [[timeUs=0, position=39729]]
getPosition(1) = [[timeUs=0, position=39729]]
getPosition(1404000) = [[timeUs=1404000, position=58809]]
getPosition(2808000) = [[timeUs=2808000, position=77889]]
numberOfTracks = 1
track 0:
total output bytes = 38160
sample count = 117
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096
channelCount = 2
sampleRate = 48000
encoderDelay = 576
encoderPadding = 576
metadata = entries=[TIT2: description=null: values=[Test title], TPE1: description=null: values=[Test Artist], TALB: description=null: values=[Test Album], TXXX: description=Test description: values=[Test user info], COMM: language=eng, description=Test description, text=Test comment, WXXX: url=Test URL, TSSE: description=null: values=[Lavf58.29.100], MLLT, PRIV: owner=test@gmail.com, UNKN, GEOB: mimeType=test/mime, filename=Testfilename.txt, description=Test description, CHAP, CHAP, CTOC, APIC: mimeType=image/jpeg, description=Test description, TCON: description=null: values=[9]]
sample 0:
time = 0
flags = 1
data = length 96, hash 1F161542
sample 1:
time = 24000
flags = 1
data = length 768, hash CD1DC50F
sample 2:
time = 48000
flags = 1
data = length 336, hash 3F64124B
sample 3:
time = 72000
flags = 1
data = length 336, hash 8FFED94E
sample 4:
time = 96000
flags = 1
data = length 288, hash 9CD77D47
sample 5:
time = 120000
flags = 1
data = length 384, hash 24607BB5
sample 6:
time = 144000
flags = 1
data = length 480, hash 4937EBAB
sample 7:
time = 168000
flags = 1
data = length 336, hash 546342B1
sample 8:
time = 192000
flags = 1
data = length 336, hash 79E0923F
sample 9:
time = 216000
flags = 1
data = length 336, hash AB1F3948
sample 10:
time = 240000
flags = 1
data = length 336, hash C3A4D888
sample 11:
time = 264000
flags = 1
data = length 288, hash 7867DA45
sample 12:
time = 288000
flags = 1
data = length 336, hash B1240B73
sample 13:
time = 312000
flags = 1
data = length 336, hash 94CFCD35
sample 14:
time = 336000
flags = 1
data = length 288, hash 94F412C
sample 15:
time = 360000
flags = 1
data = length 336, hash A1D9FF41
sample 16:
time = 384000
flags = 1
data = length 288, hash 2A8DA21B
sample 17:
time = 408000
flags = 1
data = length 336, hash 6A429CE
sample 18:
time = 432000
flags = 1
data = length 336, hash 68853982
sample 19:
time = 456000
flags = 1
data = length 384, hash 1D6F779C
sample 20:
time = 480000
flags = 1
data = length 480, hash 6B31EBEE
sample 21:
time = 504000
flags = 1
data = length 336, hash 888335BE
sample 22:
time = 528000
flags = 1
data = length 336, hash 6072AC8B
sample 23:
time = 552000
flags = 1
data = length 336, hash C9D24234
sample 24:
time = 576000
flags = 1
data = length 288, hash 52BF4D1E
sample 25:
time = 600000
flags = 1
data = length 336, hash F93F4F0
sample 26:
time = 624000
flags = 1
data = length 336, hash 8617688A
sample 27:
time = 648000
flags = 1
data = length 480, hash FAB0D31B
sample 28:
time = 672000
flags = 1
data = length 384, hash FA4B53E2
sample 29:
time = 696000
flags = 1
data = length 336, hash 8C435F6A
sample 30:
time = 720000
flags = 1
data = length 336, hash 60D3F80C
sample 31:
time = 744000
flags = 1
data = length 336, hash DC15B68B
sample 32:
time = 768000
flags = 1
data = length 288, hash FF3DF141
sample 33:
time = 792000
flags = 1
data = length 336, hash A64B3042
sample 34:
time = 816000
flags = 1
data = length 336, hash ACA622A1
sample 35:
time = 840000
flags = 1
data = length 288, hash 3E34B8D4
sample 36:
time = 864000
flags = 1
data = length 288, hash 9B96F72A
sample 37:
time = 888000
flags = 1
data = length 336, hash E917C122
sample 38:
time = 912000
flags = 1
data = length 336, hash 10ED1470
sample 39:
time = 936000
flags = 1
data = length 288, hash 706B8A7C
sample 40:
time = 960000
flags = 1
data = length 336, hash 71FFE4A0
sample 41:
time = 984000
flags = 1
data = length 336, hash D4160463
sample 42:
time = 1008000
flags = 1
data = length 336, hash EC557B14
sample 43:
time = 1032000
flags = 1
data = length 288, hash 5598CF8B
sample 44:
time = 1056000
flags = 1
data = length 336, hash 7E0AB41
sample 45:
time = 1080000
flags = 1
data = length 336, hash 1C585FEF
sample 46:
time = 1104000
flags = 1
data = length 336, hash A4A4855E
sample 47:
time = 1128000
flags = 1
data = length 336, hash CECA51D3
sample 48:
time = 1152000
flags = 1
data = length 288, hash 2D362DC5
sample 49:
time = 1176000
flags = 1
data = length 336, hash 9EB2609D
sample 50:
time = 1200000
flags = 1
data = length 336, hash 28FFB3FE
sample 51:
time = 1224000
flags = 1
data = length 288, hash 2AA2D216
sample 52:
time = 1248000
flags = 1
data = length 336, hash CDBC7032
sample 53:
time = 1272000
flags = 1
data = length 336, hash 25B13FE7
sample 54:
time = 1296000
flags = 1
data = length 336, hash DB6BB1E
sample 55:
time = 1320000
flags = 1
data = length 336, hash EBE951F4
sample 56:
time = 1344000
flags = 1
data = length 288, hash 9E2EBFF7
sample 57:
time = 1368000
flags = 1
data = length 336, hash 36A7D455
sample 58:
time = 1392000
flags = 1
data = length 336, hash 84545F8C
sample 59:
time = 1416000
flags = 1
data = length 336, hash F66F3045
sample 60:
time = 1440000
flags = 1
data = length 576, hash 5AB089EA
sample 61:
time = 1464000
flags = 1
data = length 336, hash 8868086
sample 62:
time = 1488000
flags = 1
data = length 336, hash D5EB6D63
sample 63:
time = 1512000
flags = 1
data = length 288, hash 7A5374B7
sample 64:
time = 1536000
flags = 1
data = length 336, hash BEB27A75
sample 65:
time = 1560000
flags = 1
data = length 336, hash E251E0FD
sample 66:
time = 1584000
flags = 1
data = length 288, hash D54C970
sample 67:
time = 1608000
flags = 1
data = length 336, hash 52C473B9
sample 68:
time = 1632000
flags = 1
data = length 336, hash F5F13334
sample 69:
time = 1656000
flags = 1
data = length 480, hash A5F1E987
sample 70:
time = 1680000
flags = 1
data = length 288, hash 453A1267
sample 71:
time = 1704000
flags = 1
data = length 288, hash 7C6C2EA9
sample 72:
time = 1728000
flags = 1
data = length 336, hash F4BFECA4
sample 73:
time = 1752000
flags = 1
data = length 336, hash 751A395A
sample 74:
time = 1776000
flags = 1
data = length 336, hash EE38DB02
sample 75:
time = 1800000
flags = 1
data = length 336, hash F18837E2
sample 76:
time = 1824000
flags = 1
data = length 336, hash ED36B78E
sample 77:
time = 1848000
flags = 1
data = length 336, hash B3D28289
sample 78:
time = 1872000
flags = 1
data = length 288, hash 8BDE28E1
sample 79:
time = 1896000
flags = 1
data = length 336, hash CFD5E966
sample 80:
time = 1920000
flags = 1
data = length 288, hash DC08E267
sample 81:
time = 1944000
flags = 1
data = length 336, hash 6530CB78
sample 82:
time = 1968000
flags = 1
data = length 336, hash 6CC6636E
sample 83:
time = 1992000
flags = 1
data = length 336, hash 613047C1
sample 84:
time = 2016000
flags = 1
data = length 288, hash CDC747BF
sample 85:
time = 2040000
flags = 1
data = length 336, hash AF22AA74
sample 86:
time = 2064000
flags = 1
data = length 384, hash 82F326AA
sample 87:
time = 2088000
flags = 1
data = length 384, hash EDA26C4D
sample 88:
time = 2112000
flags = 1
data = length 336, hash 94C643DC
sample 89:
time = 2136000
flags = 1
data = length 288, hash CB5D9C40
sample 90:
time = 2160000
flags = 1
data = length 336, hash 1E69DE3F
sample 91:
time = 2184000
flags = 1
data = length 336, hash 7E472219
sample 92:
time = 2208000
flags = 1
data = length 336, hash DA47B9FA
sample 93:
time = 2232000
flags = 1
data = length 336, hash DD0ABB7C
sample 94:
time = 2256000
flags = 1
data = length 288, hash DBF93FAC
sample 95:
time = 2280000
flags = 1
data = length 336, hash 243F4B2
sample 96:
time = 2304000
flags = 1
data = length 336, hash 2E881490
sample 97:
time = 2328000
flags = 1
data = length 288, hash 1C28C8BE
sample 98:
time = 2352000
flags = 1
data = length 336, hash C73E5D30
sample 99:
time = 2376000
flags = 1
data = length 288, hash 98B5BFF6
sample 100:
time = 2400000
flags = 1
data = length 336, hash E0135533
sample 101:
time = 2424000
flags = 1
data = length 336, hash D13C9DBC
sample 102:
time = 2448000
flags = 1
data = length 336, hash 63D524CA
sample 103:
time = 2472000
flags = 1
data = length 288, hash A28514C3
sample 104:
time = 2496000
flags = 1
data = length 336, hash 72B647FF
sample 105:
time = 2520000
flags = 1
data = length 336, hash 8F740AB1
sample 106:
time = 2544000
flags = 1
data = length 336, hash 5E3C7E93
sample 107:
time = 2568000
flags = 1
data = length 336, hash 121B913B
sample 108:
time = 2592000
flags = 1
data = length 336, hash 578FCCF2
sample 109:
time = 2616000
flags = 1
data = length 336, hash 5B5823DE
sample 110:
time = 2640000
flags = 1
data = length 384, hash D8B83F78
sample 111:
time = 2664000
flags = 1
data = length 240, hash E649682F
sample 112:
time = 2688000
flags = 1
data = length 96, hash C559A6F4
sample 113:
time = 2712000
flags = 1
data = length 96, hash 792796BC
sample 114:
time = 2736000
flags = 1
data = length 120, hash 8172CD0E
sample 115:
time = 2760000
flags = 1
data = length 120, hash F562B52F
sample 116:
time = 2784000
flags = 1
data = length 96, hash FF8D5B98
tracksEnded = true