mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08:00
Set track duration in AmrExtractor
, Mp3Extractor
and OggExtractor
PiperOrigin-RevId: 691433024
This commit is contained in:
parent
0462349902
commit
15583f7c64
@ -245,6 +245,7 @@ public final class AmrExtractor implements Extractor {
|
|||||||
long durationUs = timeOffsetUs + currentSampleTimeUs;
|
long durationUs = timeOffsetUs + currentSampleTimeUs;
|
||||||
((IndexSeekMap) seekMap).setDurationUs(durationUs);
|
((IndexSeekMap) seekMap).setDurationUs(durationUs);
|
||||||
extractorOutput.seekMap(seekMap);
|
extractorOutput.seekMap(seekMap);
|
||||||
|
realTrackOutput.durationUs(durationUs);
|
||||||
}
|
}
|
||||||
return sampleReadResult;
|
return sampleReadResult;
|
||||||
}
|
}
|
||||||
@ -327,7 +328,7 @@ public final class AmrExtractor implements Extractor {
|
|||||||
int sampleRate = isWideBand ? SAMPLE_RATE_WB : SAMPLE_RATE_NB;
|
int sampleRate = isWideBand ? SAMPLE_RATE_WB : SAMPLE_RATE_NB;
|
||||||
// Theoretical maximum frame size for a AMR frame.
|
// Theoretical maximum frame size for a AMR frame.
|
||||||
int maxInputSize = isWideBand ? frameSizeBytesByTypeWb[8] : frameSizeBytesByTypeNb[7];
|
int maxInputSize = isWideBand ? frameSizeBytesByTypeWb[8] : frameSizeBytesByTypeNb[7];
|
||||||
currentTrackOutput.format(
|
realTrackOutput.format(
|
||||||
new Format.Builder()
|
new Format.Builder()
|
||||||
.setSampleMimeType(mimeType)
|
.setSampleMimeType(mimeType)
|
||||||
.setMaxInputSize(maxInputSize)
|
.setMaxInputSize(maxInputSize)
|
||||||
@ -433,7 +434,7 @@ public final class AmrExtractor implements Extractor {
|
|||||||
return !isWideBand && (frameType < 12 || frameType > 14);
|
return !isWideBand && (frameType < 12 || frameType > 14);
|
||||||
}
|
}
|
||||||
|
|
||||||
@RequiresNonNull("extractorOutput")
|
@RequiresNonNull({"extractorOutput", "realTrackOutput"})
|
||||||
private void maybeOutputSeekMap(long inputLength, int sampleReadResult) {
|
private void maybeOutputSeekMap(long inputLength, int sampleReadResult) {
|
||||||
if (seekMap != null) {
|
if (seekMap != null) {
|
||||||
return;
|
return;
|
||||||
@ -453,6 +454,7 @@ public final class AmrExtractor implements Extractor {
|
|||||||
seekMap =
|
seekMap =
|
||||||
getConstantBitrateSeekMap(
|
getConstantBitrateSeekMap(
|
||||||
inputLength, (flags & FLAG_ENABLE_CONSTANT_BITRATE_SEEKING_ALWAYS) != 0);
|
inputLength, (flags & FLAG_ENABLE_CONSTANT_BITRATE_SEEKING_ALWAYS) != 0);
|
||||||
|
realTrackOutput.durationUs(seekMap.getDurationUs());
|
||||||
}
|
}
|
||||||
|
|
||||||
if (seekMap != null) {
|
if (seekMap != null) {
|
||||||
|
@ -260,6 +260,7 @@ public final class Mp3Extractor implements Extractor {
|
|||||||
if (seeker.getDurationUs() != durationUs) {
|
if (seeker.getDurationUs() != durationUs) {
|
||||||
((IndexSeeker) seeker).setDurationUs(durationUs);
|
((IndexSeeker) seeker).setDurationUs(durationUs);
|
||||||
extractorOutput.seekMap(seeker);
|
extractorOutput.seekMap(seeker);
|
||||||
|
realTrackOutput.durationUs(seeker.getDurationUs());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return readResult;
|
return readResult;
|
||||||
@ -465,6 +466,7 @@ public final class Mp3Extractor implements Extractor {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@RequiresNonNull("realTrackOutput")
|
||||||
private Seeker computeSeeker(ExtractorInput input) throws IOException {
|
private Seeker computeSeeker(ExtractorInput input) throws IOException {
|
||||||
// Read past any seek frame and set the seeker based on metadata or a seek frame. Metadata
|
// 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.
|
// 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);
|
input, (flags & FLAG_ENABLE_CONSTANT_BITRATE_SEEKING_ALWAYS) != 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (resultSeeker != null) {
|
||||||
|
realTrackOutput.durationUs(resultSeeker.getDurationUs());
|
||||||
|
}
|
||||||
|
|
||||||
return resultSeeker;
|
return resultSeeker;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -653,6 +659,7 @@ public final class Mp3Extractor implements Extractor {
|
|||||||
seeker =
|
seeker =
|
||||||
((ConstantBitrateSeeker) seeker).copyWithNewDataEndPosition(endPositionOfLastSampleRead);
|
((ConstantBitrateSeeker) seeker).copyWithNewDataEndPosition(endPositionOfLastSampleRead);
|
||||||
checkNotNull(extractorOutput).seekMap(seeker);
|
checkNotNull(extractorOutput).seekMap(seeker);
|
||||||
|
checkNotNull(realTrackOutput).durationUs(seeker.getDurationUs());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -208,6 +208,7 @@ import org.checkerframework.checker.nullness.qual.RequiresNonNull;
|
|||||||
if (!seekMapSet) {
|
if (!seekMapSet) {
|
||||||
SeekMap seekMap = checkStateNotNull(oggSeeker.createSeekMap());
|
SeekMap seekMap = checkStateNotNull(oggSeeker.createSeekMap());
|
||||||
extractorOutput.seekMap(seekMap);
|
extractorOutput.seekMap(seekMap);
|
||||||
|
trackOutput.durationUs(seekMap.getDurationUs());
|
||||||
seekMapSet = true;
|
seekMapSet = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 2834
|
total output bytes = 2834
|
||||||
sample count = 218
|
sample count = 218
|
||||||
|
track duration = 4360000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/3gpp
|
sampleMimeType = audio/3gpp
|
||||||
maxInputSize = 32
|
maxInputSize = 32
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 1898
|
total output bytes = 1898
|
||||||
sample count = 146
|
sample count = 146
|
||||||
|
track duration = 4360000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/3gpp
|
sampleMimeType = audio/3gpp
|
||||||
maxInputSize = 32
|
maxInputSize = 32
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 949
|
total output bytes = 949
|
||||||
sample count = 73
|
sample count = 73
|
||||||
|
track duration = 4360000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/3gpp
|
sampleMimeType = audio/3gpp
|
||||||
maxInputSize = 32
|
maxInputSize = 32
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 13
|
total output bytes = 13
|
||||||
sample count = 1
|
sample count = 1
|
||||||
|
track duration = 4360000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/3gpp
|
sampleMimeType = audio/3gpp
|
||||||
maxInputSize = 32
|
maxInputSize = 32
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 2834
|
total output bytes = 2834
|
||||||
sample count = 218
|
sample count = 218
|
||||||
|
track duration = 4360000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/3gpp
|
sampleMimeType = audio/3gpp
|
||||||
maxInputSize = 32
|
maxInputSize = 32
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 1898
|
total output bytes = 1898
|
||||||
sample count = 146
|
sample count = 146
|
||||||
|
track duration = 4360000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/3gpp
|
sampleMimeType = audio/3gpp
|
||||||
maxInputSize = 32
|
maxInputSize = 32
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 949
|
total output bytes = 949
|
||||||
sample count = 73
|
sample count = 73
|
||||||
|
track duration = 4360000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/3gpp
|
sampleMimeType = audio/3gpp
|
||||||
maxInputSize = 32
|
maxInputSize = 32
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 13
|
total output bytes = 13
|
||||||
sample count = 1
|
sample count = 1
|
||||||
|
track duration = 4360000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/3gpp
|
sampleMimeType = audio/3gpp
|
||||||
maxInputSize = 32
|
maxInputSize = 32
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 2836
|
total output bytes = 2836
|
||||||
sample count = 220
|
sample count = 220
|
||||||
|
track duration = 4400000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/3gpp
|
sampleMimeType = audio/3gpp
|
||||||
maxInputSize = 32
|
maxInputSize = 32
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 1924
|
total output bytes = 1924
|
||||||
sample count = 148
|
sample count = 148
|
||||||
|
track duration = 4400000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/3gpp
|
sampleMimeType = audio/3gpp
|
||||||
maxInputSize = 32
|
maxInputSize = 32
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 975
|
total output bytes = 975
|
||||||
sample count = 75
|
sample count = 75
|
||||||
|
track duration = 4400000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/3gpp
|
sampleMimeType = audio/3gpp
|
||||||
maxInputSize = 32
|
maxInputSize = 32
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 0
|
total output bytes = 0
|
||||||
sample count = 0
|
sample count = 0
|
||||||
|
track duration = 4400000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/3gpp
|
sampleMimeType = audio/3gpp
|
||||||
maxInputSize = 32
|
maxInputSize = 32
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 2836
|
total output bytes = 2836
|
||||||
sample count = 220
|
sample count = 220
|
||||||
|
track duration = 4400000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/3gpp
|
sampleMimeType = audio/3gpp
|
||||||
maxInputSize = 32
|
maxInputSize = 32
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 4056
|
total output bytes = 4056
|
||||||
sample count = 169
|
sample count = 169
|
||||||
|
track duration = 3380000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/amr-wb
|
sampleMimeType = audio/amr-wb
|
||||||
maxInputSize = 61
|
maxInputSize = 61
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 2712
|
total output bytes = 2712
|
||||||
sample count = 113
|
sample count = 113
|
||||||
|
track duration = 3380000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/amr-wb
|
sampleMimeType = audio/amr-wb
|
||||||
maxInputSize = 61
|
maxInputSize = 61
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 1368
|
total output bytes = 1368
|
||||||
sample count = 57
|
sample count = 57
|
||||||
|
track duration = 3380000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/amr-wb
|
sampleMimeType = audio/amr-wb
|
||||||
maxInputSize = 61
|
maxInputSize = 61
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 24
|
total output bytes = 24
|
||||||
sample count = 1
|
sample count = 1
|
||||||
|
track duration = 3380000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/amr-wb
|
sampleMimeType = audio/amr-wb
|
||||||
maxInputSize = 61
|
maxInputSize = 61
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 4056
|
total output bytes = 4056
|
||||||
sample count = 169
|
sample count = 169
|
||||||
|
track duration = 3380000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/amr-wb
|
sampleMimeType = audio/amr-wb
|
||||||
maxInputSize = 61
|
maxInputSize = 61
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 2712
|
total output bytes = 2712
|
||||||
sample count = 113
|
sample count = 113
|
||||||
|
track duration = 3380000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/amr-wb
|
sampleMimeType = audio/amr-wb
|
||||||
maxInputSize = 61
|
maxInputSize = 61
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 1368
|
total output bytes = 1368
|
||||||
sample count = 57
|
sample count = 57
|
||||||
|
track duration = 3380000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/amr-wb
|
sampleMimeType = audio/amr-wb
|
||||||
maxInputSize = 61
|
maxInputSize = 61
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 24
|
total output bytes = 24
|
||||||
sample count = 1
|
sample count = 1
|
||||||
|
track duration = 3380000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/amr-wb
|
sampleMimeType = audio/amr-wb
|
||||||
maxInputSize = 61
|
maxInputSize = 61
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 4057
|
total output bytes = 4057
|
||||||
sample count = 170
|
sample count = 170
|
||||||
|
track duration = 3400000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/amr-wb
|
sampleMimeType = audio/amr-wb
|
||||||
maxInputSize = 61
|
maxInputSize = 61
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 2760
|
total output bytes = 2760
|
||||||
sample count = 115
|
sample count = 115
|
||||||
|
track duration = 3400000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/amr-wb
|
sampleMimeType = audio/amr-wb
|
||||||
maxInputSize = 61
|
maxInputSize = 61
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 1392
|
total output bytes = 1392
|
||||||
sample count = 58
|
sample count = 58
|
||||||
|
track duration = 3400000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/amr-wb
|
sampleMimeType = audio/amr-wb
|
||||||
maxInputSize = 61
|
maxInputSize = 61
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 0
|
total output bytes = 0
|
||||||
sample count = 0
|
sample count = 0
|
||||||
|
track duration = 3400000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/amr-wb
|
sampleMimeType = audio/amr-wb
|
||||||
maxInputSize = 61
|
maxInputSize = 61
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 4057
|
total output bytes = 4057
|
||||||
sample count = 170
|
sample count = 170
|
||||||
|
track duration = 3400000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/amr-wb
|
sampleMimeType = audio/amr-wb
|
||||||
maxInputSize = 61
|
maxInputSize = 61
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 45139
|
total output bytes = 45139
|
||||||
sample count = 108
|
sample count = 108
|
||||||
|
track duration = 2821187
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 128000
|
averageBitrate = 128000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 30093
|
total output bytes = 30093
|
||||||
sample count = 72
|
sample count = 72
|
||||||
|
track duration = 2821187
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 128000
|
averageBitrate = 128000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 15046
|
total output bytes = 15046
|
||||||
sample count = 36
|
sample count = 36
|
||||||
|
track duration = 2821187
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 128000
|
averageBitrate = 128000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 0
|
total output bytes = 0
|
||||||
sample count = 0
|
sample count = 0
|
||||||
|
track duration = 2821187
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 128000
|
averageBitrate = 128000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 45139
|
total output bytes = 45139
|
||||||
sample count = 108
|
sample count = 108
|
||||||
|
track duration = 2821187
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 128000
|
averageBitrate = 128000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 30093
|
total output bytes = 30093
|
||||||
sample count = 72
|
sample count = 72
|
||||||
|
track duration = 2821187
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 128000
|
averageBitrate = 128000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 15046
|
total output bytes = 15046
|
||||||
sample count = 36
|
sample count = 36
|
||||||
|
track duration = 2821187
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 128000
|
averageBitrate = 128000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 0
|
total output bytes = 0
|
||||||
sample count = 0
|
sample count = 0
|
||||||
|
track duration = 2821187
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 128000
|
averageBitrate = 128000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 45139
|
total output bytes = 45139
|
||||||
sample count = 108
|
sample count = 108
|
||||||
|
track duration = 2821187
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 128000
|
averageBitrate = 128000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 30093
|
total output bytes = 30093
|
||||||
sample count = 72
|
sample count = 72
|
||||||
|
track duration = 2821187
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 128000
|
averageBitrate = 128000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 15046
|
total output bytes = 15046
|
||||||
sample count = 36
|
sample count = 36
|
||||||
|
track duration = 2821187
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 128000
|
averageBitrate = 128000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 0
|
total output bytes = 0
|
||||||
sample count = 0
|
sample count = 0
|
||||||
|
track duration = 2821187
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 128000
|
averageBitrate = 128000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 38160
|
total output bytes = 38160
|
||||||
sample count = 117
|
sample count = 117
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 25344
|
total output bytes = 25344
|
||||||
sample count = 80
|
sample count = 80
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 12624
|
total output bytes = 12624
|
||||||
sample count = 42
|
sample count = 42
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 0
|
total output bytes = 0
|
||||||
sample count = 0
|
sample count = 0
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 38160
|
total output bytes = 38160
|
||||||
sample count = 117
|
sample count = 117
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 38160
|
total output bytes = 38160
|
||||||
sample count = 117
|
sample count = 117
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 25344
|
total output bytes = 25344
|
||||||
sample count = 80
|
sample count = 80
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 12624
|
total output bytes = 12624
|
||||||
sample count = 42
|
sample count = 42
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 0
|
total output bytes = 0
|
||||||
sample count = 0
|
sample count = 0
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 38160
|
total output bytes = 38160
|
||||||
sample count = 117
|
sample count = 117
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 38160
|
total output bytes = 38160
|
||||||
sample count = 117
|
sample count = 117
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 25344
|
total output bytes = 25344
|
||||||
sample count = 80
|
sample count = 80
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 12624
|
total output bytes = 12624
|
||||||
sample count = 42
|
sample count = 42
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 0
|
total output bytes = 0
|
||||||
sample count = 0
|
sample count = 0
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 38160
|
total output bytes = 38160
|
||||||
sample count = 117
|
sample count = 117
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 38160
|
total output bytes = 38160
|
||||||
sample count = 117
|
sample count = 117
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 25920
|
total output bytes = 25920
|
||||||
sample count = 82
|
sample count = 82
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 12624
|
total output bytes = 12624
|
||||||
sample count = 42
|
sample count = 42
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 216
|
total output bytes = 216
|
||||||
sample count = 2
|
sample count = 2
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 38160
|
total output bytes = 38160
|
||||||
sample count = 117
|
sample count = 117
|
||||||
|
track duration = 2808000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
maxInputSize = 4096
|
maxInputSize = 4096
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 38160
|
total output bytes = 38160
|
||||||
sample count = 117
|
sample count = 117
|
||||||
|
track duration = 2807979
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 64000
|
averageBitrate = 64000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 24384
|
total output bytes = 24384
|
||||||
sample count = 77
|
sample count = 77
|
||||||
|
track duration = 2807979
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 64000
|
averageBitrate = 64000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 11328
|
total output bytes = 11328
|
||||||
sample count = 38
|
sample count = 38
|
||||||
|
track duration = 2807979
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 64000
|
averageBitrate = 64000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 0
|
total output bytes = 0
|
||||||
sample count = 0
|
sample count = 0
|
||||||
|
track duration = 2807979
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 64000
|
averageBitrate = 64000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 38160
|
total output bytes = 38160
|
||||||
sample count = 117
|
sample count = 117
|
||||||
|
track duration = 2807979
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 64000
|
averageBitrate = 64000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 418
|
total output bytes = 418
|
||||||
sample count = 1
|
sample count = 1
|
||||||
|
track duration = 26125
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 128000
|
averageBitrate = 128000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 418
|
total output bytes = 418
|
||||||
sample count = 1
|
sample count = 1
|
||||||
|
track duration = 26125
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 128000
|
averageBitrate = 128000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 418
|
total output bytes = 418
|
||||||
sample count = 1
|
sample count = 1
|
||||||
|
track duration = 26125
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 128000
|
averageBitrate = 128000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 418
|
total output bytes = 418
|
||||||
sample count = 1
|
sample count = 1
|
||||||
|
track duration = 26125
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 128000
|
averageBitrate = 128000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 8463
|
total output bytes = 8463
|
||||||
sample count = 41
|
sample count = 41
|
||||||
|
track duration = 1070994
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 63216
|
averageBitrate = 63216
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 5643
|
total output bytes = 5643
|
||||||
sample count = 27
|
sample count = 27
|
||||||
|
track duration = 1070994
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 63216
|
averageBitrate = 63216
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 2717
|
total output bytes = 2717
|
||||||
sample count = 13
|
sample count = 13
|
||||||
|
track duration = 1070994
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 63216
|
averageBitrate = 63216
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 0
|
total output bytes = 0
|
||||||
sample count = 0
|
sample count = 0
|
||||||
|
track duration = 1070994
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 63216
|
averageBitrate = 63216
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 8463
|
total output bytes = 8463
|
||||||
sample count = 41
|
sample count = 41
|
||||||
|
track duration = 1070994
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 63216
|
averageBitrate = 63216
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 8359
|
total output bytes = 8359
|
||||||
sample count = 40
|
sample count = 40
|
||||||
|
track duration = 1044875
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 64000
|
averageBitrate = 64000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 5434
|
total output bytes = 5434
|
||||||
sample count = 26
|
sample count = 26
|
||||||
|
track duration = 1044875
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 64000
|
averageBitrate = 64000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 2717
|
total output bytes = 2717
|
||||||
sample count = 13
|
sample count = 13
|
||||||
|
track duration = 1044875
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 64000
|
averageBitrate = 64000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 209
|
total output bytes = 209
|
||||||
sample count = 1
|
sample count = 1
|
||||||
|
track duration = 1044875
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 64000
|
averageBitrate = 64000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 8359
|
total output bytes = 8359
|
||||||
sample count = 40
|
sample count = 40
|
||||||
|
track duration = 1044875
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 64000
|
averageBitrate = 64000
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 25541
|
total output bytes = 25541
|
||||||
sample count = 275
|
sample count = 275
|
||||||
|
track duration = 2747500
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/opus
|
sampleMimeType = audio/opus
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 17031
|
total output bytes = 17031
|
||||||
sample count = 184
|
sample count = 184
|
||||||
|
track duration = 2747500
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/opus
|
sampleMimeType = audio/opus
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 8698
|
total output bytes = 8698
|
||||||
sample count = 92
|
sample count = 92
|
||||||
|
track duration = 2747500
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/opus
|
sampleMimeType = audio/opus
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 126
|
total output bytes = 126
|
||||||
sample count = 1
|
sample count = 1
|
||||||
|
track duration = 2747500
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/opus
|
sampleMimeType = audio/opus
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 25541
|
total output bytes = 25541
|
||||||
sample count = 275
|
sample count = 275
|
||||||
|
track duration = 2747500
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/opus
|
sampleMimeType = audio/opus
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 17031
|
total output bytes = 17031
|
||||||
sample count = 184
|
sample count = 184
|
||||||
|
track duration = 2747500
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/opus
|
sampleMimeType = audio/opus
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 8698
|
total output bytes = 8698
|
||||||
sample count = 92
|
sample count = 92
|
||||||
|
track duration = 2747500
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/opus
|
sampleMimeType = audio/opus
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 126
|
total output bytes = 126
|
||||||
sample count = 1
|
sample count = 1
|
||||||
|
track duration = 2747500
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/opus
|
sampleMimeType = audio/opus
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 113666
|
total output bytes = 113666
|
||||||
sample count = 23
|
sample count = 23
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 55652
|
total output bytes = 55652
|
||||||
sample count = 12
|
sample count = 12
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 445
|
total output bytes = 445
|
||||||
sample count = 1
|
sample count = 1
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 113666
|
total output bytes = 113666
|
||||||
sample count = 23
|
sample count = 23
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 55652
|
total output bytes = 55652
|
||||||
sample count = 12
|
sample count = 12
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 445
|
total output bytes = 445
|
||||||
sample count = 1
|
sample count = 1
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 26873
|
total output bytes = 26873
|
||||||
sample count = 180
|
sample count = 180
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 112000
|
averageBitrate = 112000
|
||||||
sampleMimeType = audio/vorbis
|
sampleMimeType = audio/vorbis
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 17598
|
total output bytes = 17598
|
||||||
sample count = 109
|
sample count = 109
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 112000
|
averageBitrate = 112000
|
||||||
sampleMimeType = audio/vorbis
|
sampleMimeType = audio/vorbis
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 8658
|
total output bytes = 8658
|
||||||
sample count = 49
|
sample count = 49
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 112000
|
averageBitrate = 112000
|
||||||
sampleMimeType = audio/vorbis
|
sampleMimeType = audio/vorbis
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user