Set track duration in AmrExtractor, Mp3Extractor and OggExtractor

PiperOrigin-RevId: 691433024
This commit is contained in:
rohks 2024-10-30 08:44:25 -07:00 committed by Copybara-Service
parent 0462349902
commit 15583f7c64
109 changed files with 118 additions and 2 deletions

View File

@ -245,6 +245,7 @@ public final class AmrExtractor implements Extractor {
long durationUs = timeOffsetUs + currentSampleTimeUs;
((IndexSeekMap) seekMap).setDurationUs(durationUs);
extractorOutput.seekMap(seekMap);
realTrackOutput.durationUs(durationUs);
}
return sampleReadResult;
}
@ -327,7 +328,7 @@ public final class AmrExtractor implements Extractor {
int sampleRate = isWideBand ? SAMPLE_RATE_WB : SAMPLE_RATE_NB;
// Theoretical maximum frame size for a AMR frame.
int maxInputSize = isWideBand ? frameSizeBytesByTypeWb[8] : frameSizeBytesByTypeNb[7];
currentTrackOutput.format(
realTrackOutput.format(
new Format.Builder()
.setSampleMimeType(mimeType)
.setMaxInputSize(maxInputSize)
@ -433,7 +434,7 @@ public final class AmrExtractor implements Extractor {
return !isWideBand && (frameType < 12 || frameType > 14);
}
@RequiresNonNull("extractorOutput")
@RequiresNonNull({"extractorOutput", "realTrackOutput"})
private void maybeOutputSeekMap(long inputLength, int sampleReadResult) {
if (seekMap != null) {
return;
@ -453,6 +454,7 @@ public final class AmrExtractor implements Extractor {
seekMap =
getConstantBitrateSeekMap(
inputLength, (flags & FLAG_ENABLE_CONSTANT_BITRATE_SEEKING_ALWAYS) != 0);
realTrackOutput.durationUs(seekMap.getDurationUs());
}
if (seekMap != null) {

View File

@ -260,6 +260,7 @@ public final class Mp3Extractor implements Extractor {
if (seeker.getDurationUs() != durationUs) {
((IndexSeeker) seeker).setDurationUs(durationUs);
extractorOutput.seekMap(seeker);
realTrackOutput.durationUs(seeker.getDurationUs());
}
}
return readResult;
@ -465,6 +466,7 @@ public final class Mp3Extractor implements Extractor {
}
}
@RequiresNonNull("realTrackOutput")
private Seeker computeSeeker(ExtractorInput input) throws IOException {
// Read past any seek frame and set the seeker based on metadata or a seek frame. Metadata
// takes priority as it can provide greater precision.
@ -504,6 +506,10 @@ public final class Mp3Extractor implements Extractor {
input, (flags & FLAG_ENABLE_CONSTANT_BITRATE_SEEKING_ALWAYS) != 0);
}
if (resultSeeker != null) {
realTrackOutput.durationUs(resultSeeker.getDurationUs());
}
return resultSeeker;
}
@ -653,6 +659,7 @@ public final class Mp3Extractor implements Extractor {
seeker =
((ConstantBitrateSeeker) seeker).copyWithNewDataEndPosition(endPositionOfLastSampleRead);
checkNotNull(extractorOutput).seekMap(seeker);
checkNotNull(realTrackOutput).durationUs(seeker.getDurationUs());
}
}

View File

@ -208,6 +208,7 @@ import org.checkerframework.checker.nullness.qual.RequiresNonNull;
if (!seekMapSet) {
SeekMap seekMap = checkStateNotNull(oggSeeker.createSeekMap());
extractorOutput.seekMap(seekMap);
trackOutput.durationUs(seekMap.getDurationUs());
seekMapSet = true;
}

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 2834
sample count = 218
track duration = 4360000
format 0:
sampleMimeType = audio/3gpp
maxInputSize = 32

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 1898
sample count = 146
track duration = 4360000
format 0:
sampleMimeType = audio/3gpp
maxInputSize = 32

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 949
sample count = 73
track duration = 4360000
format 0:
sampleMimeType = audio/3gpp
maxInputSize = 32

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 13
sample count = 1
track duration = 4360000
format 0:
sampleMimeType = audio/3gpp
maxInputSize = 32

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 2834
sample count = 218
track duration = 4360000
format 0:
sampleMimeType = audio/3gpp
maxInputSize = 32

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 1898
sample count = 146
track duration = 4360000
format 0:
sampleMimeType = audio/3gpp
maxInputSize = 32

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 949
sample count = 73
track duration = 4360000
format 0:
sampleMimeType = audio/3gpp
maxInputSize = 32

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 13
sample count = 1
track duration = 4360000
format 0:
sampleMimeType = audio/3gpp
maxInputSize = 32

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 2836
sample count = 220
track duration = 4400000
format 0:
sampleMimeType = audio/3gpp
maxInputSize = 32

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 1924
sample count = 148
track duration = 4400000
format 0:
sampleMimeType = audio/3gpp
maxInputSize = 32

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 975
sample count = 75
track duration = 4400000
format 0:
sampleMimeType = audio/3gpp
maxInputSize = 32

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 0
sample count = 0
track duration = 4400000
format 0:
sampleMimeType = audio/3gpp
maxInputSize = 32

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 2836
sample count = 220
track duration = 4400000
format 0:
sampleMimeType = audio/3gpp
maxInputSize = 32

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 4056
sample count = 169
track duration = 3380000
format 0:
sampleMimeType = audio/amr-wb
maxInputSize = 61

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 2712
sample count = 113
track duration = 3380000
format 0:
sampleMimeType = audio/amr-wb
maxInputSize = 61

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 1368
sample count = 57
track duration = 3380000
format 0:
sampleMimeType = audio/amr-wb
maxInputSize = 61

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 24
sample count = 1
track duration = 3380000
format 0:
sampleMimeType = audio/amr-wb
maxInputSize = 61

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 4056
sample count = 169
track duration = 3380000
format 0:
sampleMimeType = audio/amr-wb
maxInputSize = 61

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 2712
sample count = 113
track duration = 3380000
format 0:
sampleMimeType = audio/amr-wb
maxInputSize = 61

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 1368
sample count = 57
track duration = 3380000
format 0:
sampleMimeType = audio/amr-wb
maxInputSize = 61

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 24
sample count = 1
track duration = 3380000
format 0:
sampleMimeType = audio/amr-wb
maxInputSize = 61

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 4057
sample count = 170
track duration = 3400000
format 0:
sampleMimeType = audio/amr-wb
maxInputSize = 61

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 2760
sample count = 115
track duration = 3400000
format 0:
sampleMimeType = audio/amr-wb
maxInputSize = 61

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 1392
sample count = 58
track duration = 3400000
format 0:
sampleMimeType = audio/amr-wb
maxInputSize = 61

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 0
sample count = 0
track duration = 3400000
format 0:
sampleMimeType = audio/amr-wb
maxInputSize = 61

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 4057
sample count = 170
track duration = 3400000
format 0:
sampleMimeType = audio/amr-wb
maxInputSize = 61

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 45139
sample count = 108
track duration = 2821187
format 0:
averageBitrate = 128000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 30093
sample count = 72
track duration = 2821187
format 0:
averageBitrate = 128000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 15046
sample count = 36
track duration = 2821187
format 0:
averageBitrate = 128000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 0
sample count = 0
track duration = 2821187
format 0:
averageBitrate = 128000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 45139
sample count = 108
track duration = 2821187
format 0:
averageBitrate = 128000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 30093
sample count = 72
track duration = 2821187
format 0:
averageBitrate = 128000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 15046
sample count = 36
track duration = 2821187
format 0:
averageBitrate = 128000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 0
sample count = 0
track duration = 2821187
format 0:
averageBitrate = 128000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 45139
sample count = 108
track duration = 2821187
format 0:
averageBitrate = 128000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 30093
sample count = 72
track duration = 2821187
format 0:
averageBitrate = 128000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 15046
sample count = 36
track duration = 2821187
format 0:
averageBitrate = 128000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 0
sample count = 0
track duration = 2821187
format 0:
averageBitrate = 128000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 38160
sample count = 117
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 25344
sample count = 80
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 12624
sample count = 42
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 0
sample count = 0
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 38160
sample count = 117
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 38160
sample count = 117
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 25344
sample count = 80
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 12624
sample count = 42
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 0
sample count = 0
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 38160
sample count = 117
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 38160
sample count = 117
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 25344
sample count = 80
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 12624
sample count = 42
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 0
sample count = 0
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 38160
sample count = 117
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 38160
sample count = 117
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 25920
sample count = 82
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 12624
sample count = 42
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 216
sample count = 2
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 38160
sample count = 117
track duration = 2808000
format 0:
sampleMimeType = audio/mpeg
maxInputSize = 4096

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 38160
sample count = 117
track duration = 2807979
format 0:
averageBitrate = 64000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 24384
sample count = 77
track duration = 2807979
format 0:
averageBitrate = 64000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 11328
sample count = 38
track duration = 2807979
format 0:
averageBitrate = 64000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 0
sample count = 0
track duration = 2807979
format 0:
averageBitrate = 64000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 38160
sample count = 117
track duration = 2807979
format 0:
averageBitrate = 64000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 418
sample count = 1
track duration = 26125
format 0:
averageBitrate = 128000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 418
sample count = 1
track duration = 26125
format 0:
averageBitrate = 128000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 418
sample count = 1
track duration = 26125
format 0:
averageBitrate = 128000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 418
sample count = 1
track duration = 26125
format 0:
averageBitrate = 128000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 8463
sample count = 41
track duration = 1070994
format 0:
averageBitrate = 63216
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 5643
sample count = 27
track duration = 1070994
format 0:
averageBitrate = 63216
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 2717
sample count = 13
track duration = 1070994
format 0:
averageBitrate = 63216
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 0
sample count = 0
track duration = 1070994
format 0:
averageBitrate = 63216
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 8463
sample count = 41
track duration = 1070994
format 0:
averageBitrate = 63216
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 8359
sample count = 40
track duration = 1044875
format 0:
averageBitrate = 64000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 5434
sample count = 26
track duration = 1044875
format 0:
averageBitrate = 64000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 2717
sample count = 13
track duration = 1044875
format 0:
averageBitrate = 64000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 209
sample count = 1
track duration = 1044875
format 0:
averageBitrate = 64000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 8359
sample count = 40
track duration = 1044875
format 0:
averageBitrate = 64000
sampleMimeType = audio/mpeg

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 25541
sample count = 275
track duration = 2747500
format 0:
sampleMimeType = audio/opus
channelCount = 2

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 17031
sample count = 184
track duration = 2747500
format 0:
sampleMimeType = audio/opus
channelCount = 2

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 8698
sample count = 92
track duration = 2747500
format 0:
sampleMimeType = audio/opus
channelCount = 2

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 126
sample count = 1
track duration = 2747500
format 0:
sampleMimeType = audio/opus
channelCount = 2

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 25541
sample count = 275
track duration = 2747500
format 0:
sampleMimeType = audio/opus
channelCount = 2

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 17031
sample count = 184
track duration = 2747500
format 0:
sampleMimeType = audio/opus
channelCount = 2

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 8698
sample count = 92
track duration = 2747500
format 0:
sampleMimeType = audio/opus
channelCount = 2

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 126
sample count = 1
track duration = 2747500
format 0:
sampleMimeType = audio/opus
channelCount = 2

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 164431
sample count = 33
track duration = 2741000
format 0:
sampleMimeType = audio/flac
maxInputSize = 5776

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 113666
sample count = 23
track duration = 2741000
format 0:
sampleMimeType = audio/flac
maxInputSize = 5776

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 55652
sample count = 12
track duration = 2741000
format 0:
sampleMimeType = audio/flac
maxInputSize = 5776

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 445
sample count = 1
track duration = 2741000
format 0:
sampleMimeType = audio/flac
maxInputSize = 5776

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 164431
sample count = 33
track duration = 2741000
format 0:
sampleMimeType = audio/flac
maxInputSize = 5776

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 164431
sample count = 33
track duration = 2741000
format 0:
sampleMimeType = audio/flac
maxInputSize = 5776

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 113666
sample count = 23
track duration = 2741000
format 0:
sampleMimeType = audio/flac
maxInputSize = 5776

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 55652
sample count = 12
track duration = 2741000
format 0:
sampleMimeType = audio/flac
maxInputSize = 5776

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 445
sample count = 1
track duration = 2741000
format 0:
sampleMimeType = audio/flac
maxInputSize = 5776

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 26873
sample count = 180
track duration = 2741000
format 0:
averageBitrate = 112000
sampleMimeType = audio/vorbis

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 17598
sample count = 109
track duration = 2741000
format 0:
averageBitrate = 112000
sampleMimeType = audio/vorbis

View File

@ -9,6 +9,7 @@ numberOfTracks = 1
track 0:
total output bytes = 8658
sample count = 49
track duration = 2741000
format 0:
averageBitrate = 112000
sampleMimeType = audio/vorbis

Some files were not shown because too many files have changed in this diff Show More