mirror of
https://github.com/androidx/media.git
synced 2025-04-30 06:46:50 +08:00
Populate track duration(s) in Avi
, Flac
and Wav
extractors
PiperOrigin-RevId: 689716977
This commit is contained in:
parent
45317394da
commit
e25bc2c1a5
@ -222,6 +222,7 @@ public final class FlacExtractor implements Extractor {
|
|||||||
@Nullable
|
@Nullable
|
||||||
Metadata metadata = streamMetadata.getMetadataCopyWithAppendedEntriesFrom(id3Metadata);
|
Metadata metadata = streamMetadata.getMetadataCopyWithAppendedEntriesFrom(id3Metadata);
|
||||||
outputFormat(streamMetadata, metadata, trackOutput);
|
outputFormat(streamMetadata, metadata, trackOutput);
|
||||||
|
trackOutput.durationUs(streamMetadata.getDurationUs());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -519,6 +519,7 @@ public final class AviExtractor implements Extractor {
|
|||||||
if (trackType == C.TRACK_TYPE_AUDIO || trackType == C.TRACK_TYPE_VIDEO) {
|
if (trackType == C.TRACK_TYPE_AUDIO || trackType == C.TRACK_TYPE_VIDEO) {
|
||||||
TrackOutput trackOutput = extractorOutput.track(streamId, trackType);
|
TrackOutput trackOutput = extractorOutput.track(streamId, trackType);
|
||||||
trackOutput.format(builder.build());
|
trackOutput.format(builder.build());
|
||||||
|
trackOutput.durationUs(durationUs);
|
||||||
ChunkReader chunkReader =
|
ChunkReader chunkReader =
|
||||||
new ChunkReader(
|
new ChunkReader(
|
||||||
streamId, trackType, durationUs, aviStreamHeaderChunk.length, trackOutput);
|
streamId, trackType, durationUs, aviStreamHeaderChunk.length, trackOutput);
|
||||||
|
@ -232,6 +232,7 @@ public final class FlacExtractor implements Extractor {
|
|||||||
minFrameSize = max(flacStreamMetadata.minFrameSize, FlacConstants.MIN_FRAME_HEADER_SIZE);
|
minFrameSize = max(flacStreamMetadata.minFrameSize, FlacConstants.MIN_FRAME_HEADER_SIZE);
|
||||||
castNonNull(trackOutput)
|
castNonNull(trackOutput)
|
||||||
.format(flacStreamMetadata.getFormat(streamMarkerAndInfoBlock, id3Metadata));
|
.format(flacStreamMetadata.getFormat(streamMarkerAndInfoBlock, id3Metadata));
|
||||||
|
castNonNull(trackOutput).durationUs(flacStreamMetadata.getDurationUs());
|
||||||
|
|
||||||
state = STATE_GET_FRAME_START_MARKER;
|
state = STATE_GET_FRAME_START_MARKER;
|
||||||
}
|
}
|
||||||
|
@ -339,9 +339,11 @@ public final class WavExtractor implements Extractor {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void init(int dataStartPosition, long dataEndPosition) {
|
public void init(int dataStartPosition, long dataEndPosition) {
|
||||||
extractorOutput.seekMap(
|
WavSeekMap wavSeekMap =
|
||||||
new WavSeekMap(wavFormat, /* framesPerBlock= */ 1, dataStartPosition, dataEndPosition));
|
new WavSeekMap(wavFormat, /* framesPerBlock= */ 1, dataStartPosition, dataEndPosition);
|
||||||
|
extractorOutput.seekMap(wavSeekMap);
|
||||||
trackOutput.format(format);
|
trackOutput.format(format);
|
||||||
|
trackOutput.durationUs(wavSeekMap.getDurationUs());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@ -493,9 +495,11 @@ public final class WavExtractor implements Extractor {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void init(int dataStartPosition, long dataEndPosition) {
|
public void init(int dataStartPosition, long dataEndPosition) {
|
||||||
extractorOutput.seekMap(
|
WavSeekMap wavSeekMap =
|
||||||
new WavSeekMap(wavFormat, framesPerBlock, dataStartPosition, dataEndPosition));
|
new WavSeekMap(wavFormat, framesPerBlock, dataStartPosition, dataEndPosition);
|
||||||
|
extractorOutput.seekMap(wavSeekMap);
|
||||||
trackOutput.format(format);
|
trackOutput.format(format);
|
||||||
|
trackOutput.durationUs(wavSeekMap.getDurationUs());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 252777
|
total output bytes = 252777
|
||||||
sample count = 96
|
sample count = 96
|
||||||
|
track duration = 4087416
|
||||||
format 0:
|
format 0:
|
||||||
id = 0
|
id = 0
|
||||||
sampleMimeType = video/mp4v-es
|
sampleMimeType = video/mp4v-es
|
||||||
@ -402,6 +403,7 @@ track 0:
|
|||||||
track 1:
|
track 1:
|
||||||
total output bytes = 65280
|
total output bytes = 65280
|
||||||
sample count = 170
|
sample count = 170
|
||||||
|
track duration = 4080000
|
||||||
format 0:
|
format 0:
|
||||||
id = 1
|
id = 1
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 165531
|
total output bytes = 165531
|
||||||
sample count = 66
|
sample count = 66
|
||||||
|
track duration = 4087416
|
||||||
format 0:
|
format 0:
|
||||||
id = 0
|
id = 0
|
||||||
sampleMimeType = video/mp4v-es
|
sampleMimeType = video/mp4v-es
|
||||||
@ -282,6 +283,7 @@ track 0:
|
|||||||
track 1:
|
track 1:
|
||||||
total output bytes = 44160
|
total output bytes = 44160
|
||||||
sample count = 115
|
sample count = 115
|
||||||
|
track duration = 4080000
|
||||||
format 0:
|
format 0:
|
||||||
id = 1
|
id = 1
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 102418
|
total output bytes = 102418
|
||||||
sample count = 42
|
sample count = 42
|
||||||
|
track duration = 4087416
|
||||||
format 0:
|
format 0:
|
||||||
id = 0
|
id = 0
|
||||||
sampleMimeType = video/mp4v-es
|
sampleMimeType = video/mp4v-es
|
||||||
@ -186,6 +187,7 @@ track 0:
|
|||||||
track 1:
|
track 1:
|
||||||
total output bytes = 28032
|
total output bytes = 28032
|
||||||
sample count = 73
|
sample count = 73
|
||||||
|
track duration = 4080000
|
||||||
format 0:
|
format 0:
|
||||||
id = 1
|
id = 1
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 17833
|
total output bytes = 17833
|
||||||
sample count = 6
|
sample count = 6
|
||||||
|
track duration = 4087416
|
||||||
format 0:
|
format 0:
|
||||||
id = 0
|
id = 0
|
||||||
sampleMimeType = video/mp4v-es
|
sampleMimeType = video/mp4v-es
|
||||||
@ -42,6 +43,7 @@ track 0:
|
|||||||
track 1:
|
track 1:
|
||||||
total output bytes = 3840
|
total output bytes = 3840
|
||||||
sample count = 10
|
sample count = 10
|
||||||
|
track duration = 4080000
|
||||||
format 0:
|
format 0:
|
||||||
id = 1
|
id = 1
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 2
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 252777
|
total output bytes = 252777
|
||||||
sample count = 96
|
sample count = 96
|
||||||
|
track duration = 4087416
|
||||||
format 0:
|
format 0:
|
||||||
id = 0
|
id = 0
|
||||||
sampleMimeType = video/mp4v-es
|
sampleMimeType = video/mp4v-es
|
||||||
@ -402,6 +403,7 @@ track 0:
|
|||||||
track 1:
|
track 1:
|
||||||
total output bytes = 65280
|
total output bytes = 65280
|
||||||
sample count = 170
|
sample count = 170
|
||||||
|
track duration = 4080000
|
||||||
format 0:
|
format 0:
|
||||||
id = 1
|
id = 1
|
||||||
sampleMimeType = audio/mpeg
|
sampleMimeType = audio/mpeg
|
||||||
|
@ -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 = 3829
|
total output bytes = 3829
|
||||||
sample count = 2
|
sample count = 2
|
||||||
|
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
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
@ -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
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
@ -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
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 3829
|
total output bytes = 3829
|
||||||
sample count = 2
|
sample count = 2
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
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
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 526272
|
total output bytes = 526272
|
||||||
sample count = 33
|
sample count = 33
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 362432
|
total output bytes = 362432
|
||||||
sample count = 23
|
sample count = 23
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 182208
|
total output bytes = 182208
|
||||||
sample count = 12
|
sample count = 12
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 18368
|
total output bytes = 18368
|
||||||
sample count = 2
|
sample count = 2
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 526272
|
total output bytes = 526272
|
||||||
sample count = 33
|
sample count = 33
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -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
|
||||||
|
@ -6,6 +6,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 = 526272
|
total output bytes = 526272
|
||||||
sample count = 33
|
sample count = 33
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 362432
|
total output bytes = 362432
|
||||||
sample count = 23
|
sample count = 23
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 182208
|
total output bytes = 182208
|
||||||
sample count = 12
|
sample count = 12
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 1984
|
total output bytes = 1984
|
||||||
sample count = 1
|
sample count = 1
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -6,6 +6,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 526272
|
total output bytes = 526272
|
||||||
sample count = 33
|
sample count = 33
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 526272
|
total output bytes = 526272
|
||||||
sample count = 33
|
sample count = 33
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 362432
|
total output bytes = 362432
|
||||||
sample count = 23
|
sample count = 23
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 182208
|
total output bytes = 182208
|
||||||
sample count = 12
|
sample count = 12
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 18368
|
total output bytes = 18368
|
||||||
sample count = 2
|
sample count = 2
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 526272
|
total output bytes = 526272
|
||||||
sample count = 33
|
sample count = 33
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 144086
|
total output bytes = 144086
|
||||||
sample count = 27
|
sample count = 27
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 6456
|
maxInputSize = 6456
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 100240
|
total output bytes = 100240
|
||||||
sample count = 19
|
sample count = 19
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 6456
|
maxInputSize = 6456
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 48500
|
total output bytes = 48500
|
||||||
sample count = 10
|
sample count = 10
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 6456
|
maxInputSize = 6456
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 3385
|
total output bytes = 3385
|
||||||
sample count = 2
|
sample count = 2
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 6456
|
maxInputSize = 6456
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 144086
|
total output bytes = 144086
|
||||||
sample count = 27
|
sample count = 27
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 6456
|
maxInputSize = 6456
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 482416
|
total output bytes = 482416
|
||||||
sample count = 27
|
sample count = 27
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1408000
|
averageBitrate = 1408000
|
||||||
peakBitrate = 1408000
|
peakBitrate = 1408000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 334960
|
total output bytes = 334960
|
||||||
sample count = 19
|
sample count = 19
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1408000
|
averageBitrate = 1408000
|
||||||
peakBitrate = 1408000
|
peakBitrate = 1408000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 169072
|
total output bytes = 169072
|
||||||
sample count = 10
|
sample count = 10
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1408000
|
averageBitrate = 1408000
|
||||||
peakBitrate = 1408000
|
peakBitrate = 1408000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 21616
|
total output bytes = 21616
|
||||||
sample count = 2
|
sample count = 2
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1408000
|
averageBitrate = 1408000
|
||||||
peakBitrate = 1408000
|
peakBitrate = 1408000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 482416
|
total output bytes = 482416
|
||||||
sample count = 27
|
sample count = 27
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1408000
|
averageBitrate = 1408000
|
||||||
peakBitrate = 1408000
|
peakBitrate = 1408000
|
||||||
|
@ -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 = 3829
|
total output bytes = 3829
|
||||||
sample count = 2
|
sample count = 2
|
||||||
|
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 = 526272
|
total output bytes = 526272
|
||||||
sample count = 33
|
sample count = 33
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 362432
|
total output bytes = 362432
|
||||||
sample count = 23
|
sample count = 23
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 182208
|
total output bytes = 182208
|
||||||
sample count = 12
|
sample count = 12
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 18368
|
total output bytes = 18368
|
||||||
sample count = 2
|
sample count = 2
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 526272
|
total output bytes = 526272
|
||||||
sample count = 33
|
sample count = 33
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -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 = 3829
|
total output bytes = 3829
|
||||||
sample count = 2
|
sample count = 2
|
||||||
|
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 = 526272
|
total output bytes = 526272
|
||||||
sample count = 33
|
sample count = 33
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 362432
|
total output bytes = 362432
|
||||||
sample count = 23
|
sample count = 23
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 182208
|
total output bytes = 182208
|
||||||
sample count = 12
|
sample count = 12
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 18368
|
total output bytes = 18368
|
||||||
sample count = 2
|
sample count = 2
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 526272
|
total output bytes = 526272
|
||||||
sample count = 33
|
sample count = 33
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -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 = 3829
|
total output bytes = 3829
|
||||||
sample count = 2
|
sample count = 2
|
||||||
|
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 = 526272
|
total output bytes = 526272
|
||||||
sample count = 33
|
sample count = 33
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 362432
|
total output bytes = 362432
|
||||||
sample count = 23
|
sample count = 23
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 182208
|
total output bytes = 182208
|
||||||
sample count = 12
|
sample count = 12
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 18368
|
total output bytes = 18368
|
||||||
sample count = 2
|
sample count = 2
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 526272
|
total output bytes = 526272
|
||||||
sample count = 33
|
sample count = 33
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -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 = 3829
|
total output bytes = 3829
|
||||||
sample count = 2
|
sample count = 2
|
||||||
|
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 = 526272
|
total output bytes = 526272
|
||||||
sample count = 33
|
sample count = 33
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 362432
|
total output bytes = 362432
|
||||||
sample count = 23
|
sample count = 23
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 182208
|
total output bytes = 182208
|
||||||
sample count = 12
|
sample count = 12
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 18368
|
total output bytes = 18368
|
||||||
sample count = 2
|
sample count = 2
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 526272
|
total output bytes = 526272
|
||||||
sample count = 33
|
sample count = 33
|
||||||
|
track duration = 2741000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 88200
|
total output bytes = 88200
|
||||||
sample count = 10
|
sample count = 10
|
||||||
|
track duration = 1000000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 705600
|
averageBitrate = 705600
|
||||||
peakBitrate = 705600
|
peakBitrate = 705600
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 58802
|
total output bytes = 58802
|
||||||
sample count = 7
|
sample count = 7
|
||||||
|
track duration = 1000000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 705600
|
averageBitrate = 705600
|
||||||
peakBitrate = 705600
|
peakBitrate = 705600
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 29402
|
total output bytes = 29402
|
||||||
sample count = 4
|
sample count = 4
|
||||||
|
track duration = 1000000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 705600
|
averageBitrate = 705600
|
||||||
peakBitrate = 705600
|
peakBitrate = 705600
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 2
|
total output bytes = 2
|
||||||
sample count = 1
|
sample count = 1
|
||||||
|
track duration = 1000000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 705600
|
averageBitrate = 705600
|
||||||
peakBitrate = 705600
|
peakBitrate = 705600
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 88200
|
total output bytes = 88200
|
||||||
sample count = 10
|
sample count = 10
|
||||||
|
track duration = 1000000
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 705600
|
averageBitrate = 705600
|
||||||
peakBitrate = 705600
|
peakBitrate = 705600
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 89804
|
total output bytes = 89804
|
||||||
sample count = 11
|
sample count = 11
|
||||||
|
track duration = 1018185
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 177004
|
averageBitrate = 177004
|
||||||
peakBitrate = 177004
|
peakBitrate = 177004
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 61230
|
total output bytes = 61230
|
||||||
sample count = 7
|
sample count = 7
|
||||||
|
track duration = 1018185
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 177004
|
averageBitrate = 177004
|
||||||
peakBitrate = 177004
|
peakBitrate = 177004
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 32656
|
total output bytes = 32656
|
||||||
sample count = 4
|
sample count = 4
|
||||||
|
track duration = 1018185
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 177004
|
averageBitrate = 177004
|
||||||
peakBitrate = 177004
|
peakBitrate = 177004
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 4082
|
total output bytes = 4082
|
||||||
sample count = 1
|
sample count = 1
|
||||||
|
track duration = 1018185
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 177004
|
averageBitrate = 177004
|
||||||
peakBitrate = 177004
|
peakBitrate = 177004
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 89804
|
total output bytes = 89804
|
||||||
sample count = 11
|
sample count = 11
|
||||||
|
track duration = 1018185
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 177004
|
averageBitrate = 177004
|
||||||
peakBitrate = 177004
|
peakBitrate = 177004
|
||||||
|
@ -9,6 +9,7 @@ numberOfTracks = 1
|
|||||||
track 0:
|
track 0:
|
||||||
total output bytes = 66936
|
total output bytes = 66936
|
||||||
sample count = 4
|
sample count = 4
|
||||||
|
track duration = 348625
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
averageBitrate = 1536000
|
||||||
peakBitrate = 1536000
|
peakBitrate = 1536000
|
||||||
|
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