mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
Don't set decoded bitrate on audio/flac format
PiperOrigin-RevId: 297864386
This commit is contained in:
parent
1ca9a061b1
commit
3730639c95
57 changed files with 28 additions and 128 deletions
|
|
@ -270,7 +270,7 @@ public final class FlacExtractor implements Extractor {
|
||||||
/* id= */ null,
|
/* id= */ null,
|
||||||
MimeTypes.AUDIO_RAW,
|
MimeTypes.AUDIO_RAW,
|
||||||
/* codecs= */ null,
|
/* codecs= */ null,
|
||||||
streamMetadata.getBitRate(),
|
streamMetadata.getDecodedBitrate(),
|
||||||
streamMetadata.getMaxDecodedFrameSize(),
|
streamMetadata.getMaxDecodedFrameSize(),
|
||||||
streamMetadata.channels,
|
streamMetadata.channels,
|
||||||
streamMetadata.sampleRate,
|
streamMetadata.sampleRate,
|
||||||
|
|
|
||||||
|
|
@ -644,34 +644,42 @@ public final class Format implements Parcelable {
|
||||||
/** Track role flags. */
|
/** Track role flags. */
|
||||||
@C.RoleFlags public final int roleFlags;
|
@C.RoleFlags public final int roleFlags;
|
||||||
/**
|
/**
|
||||||
* The average bitrate in bits per second, or {@link #NO_VALUE} if unknown or not applicable. This
|
* The average bitrate in bits per second, or {@link #NO_VALUE} if unknown or not applicable. The
|
||||||
* field may be populated from the following sources, depending on media type and the type of the
|
* way in which this field is populated depends on the type of media to which the format
|
||||||
* track within the media:
|
* corresponds:
|
||||||
*
|
*
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>DASH: Always {@link Format#NO_VALUE}.
|
* <li>DASH representations: Always {@link Format#NO_VALUE}.
|
||||||
* <li>HLS: The {@code AVERAGE-BANDWIDTH} attribute defined on the corresponding {@code
|
* <li>HLS variants: The {@code AVERAGE-BANDWIDTH} attribute defined on the corresponding {@code
|
||||||
* EXT-X-STREAM-INF} tag in the master playlist, or {@link Format#NO_VALUE} if not present.
|
* EXT-X-STREAM-INF} tag in the master playlist, or {@link Format#NO_VALUE} if not present.
|
||||||
* <li>SmoothStreaming: The {@code Bitrate} attribute defined on the corresponding {@code
|
* <li>SmoothStreaming track elements: The {@code Bitrate} attribute defined on the
|
||||||
* TrackElement} in the manifest, or {@link Format#NO_VALUE} if not present.
|
* corresponding {@code TrackElement} in the manifest, or {@link Format#NO_VALUE} if not
|
||||||
|
* present.
|
||||||
* <li>Progressive container formats: Often {@link Format#NO_VALUE}, but may be populated with
|
* <li>Progressive container formats: Often {@link Format#NO_VALUE}, but may be populated with
|
||||||
* the average bitrate if defined by the container.
|
* the average bitrate of the container if known.
|
||||||
|
* <li>Sample formats: Often {@link Format#NO_VALUE}, but may be populated with the average
|
||||||
|
* bitrate of the stream of samples with type {@link #sampleMimeType} if known. Note that if
|
||||||
|
* {@link #sampleMimeType} is a compressed format (e.g., {@link MimeTypes#AUDIO_AAC}), then
|
||||||
|
* this bitrate is for the stream of still compressed samples.
|
||||||
* </ul>
|
* </ul>
|
||||||
*/
|
*/
|
||||||
public final int averageBitrate;
|
public final int averageBitrate;
|
||||||
/**
|
/**
|
||||||
* The peak bitrate in bits per second, or {@link #NO_VALUE} if unknown or not applicable. This
|
* The peak bitrate in bits per second, or {@link #NO_VALUE} if unknown or not applicable. The way
|
||||||
* field may be populated from the following sources, depending on media type and the type of the
|
* in which this field is populated depends on the type of media to which the format corresponds:
|
||||||
* track within the media:
|
|
||||||
*
|
*
|
||||||
* <ul>
|
* <ul>
|
||||||
* <li>DASH: The {@code @bandwidth} attribute of the corresponding {@code Representation}
|
* <li>DASH representations: The {@code @bandwidth} attribute of the corresponding {@code
|
||||||
* element in the manifest.
|
* Representation} element in the manifest.
|
||||||
* <li>HLS: The {@code BANDWIDTH} attribute defined on the corresponding {@code
|
* <li>HLS variants: The {@code BANDWIDTH} attribute defined on the corresponding {@code
|
||||||
* EXT-X-STREAM-INF} tag.
|
* EXT-X-STREAM-INF} tag.
|
||||||
* <li>SmoothStreaming: Always {@link Format#NO_VALUE}.
|
* <li>SmoothStreaming track elements: Always {@link Format#NO_VALUE}.
|
||||||
* <li>Progressive container formats: Often {@link Format#NO_VALUE}, but may be populated with
|
* <li>Progressive container formats: Often {@link Format#NO_VALUE}, but may be populated with
|
||||||
* the peak bitrate if defined by the container.
|
* the peak bitrate of the container if known.
|
||||||
|
* <li>Sample formats: Often {@link Format#NO_VALUE}, but may be populated with the peak bitrate
|
||||||
|
* of the stream of samples with type {@link #sampleMimeType} if known. Note that if {@link
|
||||||
|
* #sampleMimeType} is a compressed format (e.g., {@link MimeTypes#AUDIO_AAC}), then this
|
||||||
|
* bitrate is for the stream of still compressed samples.
|
||||||
* </ul>
|
* </ul>
|
||||||
*/
|
*/
|
||||||
public final int peakBitrate;
|
public final int peakBitrate;
|
||||||
|
|
|
||||||
|
|
@ -182,8 +182,8 @@ public final class FlacStreamMetadata {
|
||||||
return maxBlockSizeSamples * channels * (bitsPerSample / 8);
|
return maxBlockSizeSamples * channels * (bitsPerSample / 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Returns the bit-rate of the FLAC stream. */
|
/** Returns the bitrate of the stream after it's decoded into PCM. */
|
||||||
public int getBitRate() {
|
public int getDecodedBitrate() {
|
||||||
return bitsPerSample * sampleRate * channels;
|
return bitsPerSample * sampleRate * channels;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -244,7 +244,7 @@ public final class FlacStreamMetadata {
|
||||||
/* id= */ null,
|
/* id= */ null,
|
||||||
MimeTypes.AUDIO_FLAC,
|
MimeTypes.AUDIO_FLAC,
|
||||||
/* codecs= */ null,
|
/* codecs= */ null,
|
||||||
getBitRate(),
|
/* bitrate= */ Format.NO_VALUE,
|
||||||
maxInputSize,
|
maxInputSize,
|
||||||
channels,
|
channels,
|
||||||
sampleRate,
|
sampleRate,
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 113666
|
total output bytes = 113666
|
||||||
sample count = 23
|
sample count = 23
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 55652
|
total output bytes = 55652
|
||||||
sample count = 12
|
sample count = 12
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 3829
|
total output bytes = 3829
|
||||||
sample count = 2
|
sample count = 2
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
sampleRate = 48000
|
sampleRate = 48000
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 113666
|
total output bytes = 113666
|
||||||
sample count = 23
|
sample count = 23
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
sampleRate = 48000
|
sampleRate = 48000
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 55652
|
total output bytes = 55652
|
||||||
sample count = 12
|
sample count = 12
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
sampleRate = 48000
|
sampleRate = 48000
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 3829
|
total output bytes = 3829
|
||||||
sample count = 2
|
sample count = 2
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
sampleRate = 48000
|
sampleRate = 48000
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
sampleRate = 48000
|
sampleRate = 48000
|
||||||
|
|
|
||||||
|
|
@ -8,8 +8,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -8,8 +8,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 113666
|
total output bytes = 113666
|
||||||
sample count = 23
|
sample count = 23
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 55652
|
total output bytes = 55652
|
||||||
sample count = 12
|
sample count = 12
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 445
|
total output bytes = 445
|
||||||
sample count = 1
|
sample count = 1
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 144086
|
total output bytes = 144086
|
||||||
sample count = 27
|
sample count = 27
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1408000
|
|
||||||
peakBitrate = 1408000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 6456
|
maxInputSize = 6456
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 100240
|
total output bytes = 100240
|
||||||
sample count = 19
|
sample count = 19
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1408000
|
|
||||||
peakBitrate = 1408000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 6456
|
maxInputSize = 6456
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 48500
|
total output bytes = 48500
|
||||||
sample count = 10
|
sample count = 10
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1408000
|
|
||||||
peakBitrate = 1408000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 6456
|
maxInputSize = 6456
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 3385
|
total output bytes = 3385
|
||||||
sample count = 2
|
sample count = 2
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1408000
|
|
||||||
peakBitrate = 1408000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 6456
|
maxInputSize = 6456
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 144086
|
total output bytes = 144086
|
||||||
sample count = 27
|
sample count = 27
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1408000
|
|
||||||
peakBitrate = 1408000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 6456
|
maxInputSize = 6456
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 113666
|
total output bytes = 113666
|
||||||
sample count = 23
|
sample count = 23
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 55652
|
total output bytes = 55652
|
||||||
sample count = 12
|
sample count = 12
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 3829
|
total output bytes = 3829
|
||||||
sample count = 2
|
sample count = 2
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 113666
|
total output bytes = 113666
|
||||||
sample count = 23
|
sample count = 23
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 55652
|
total output bytes = 55652
|
||||||
sample count = 12
|
sample count = 12
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 3829
|
total output bytes = 3829
|
||||||
sample count = 2
|
sample count = 2
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 113666
|
total output bytes = 113666
|
||||||
sample count = 23
|
sample count = 23
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 55652
|
total output bytes = 55652
|
||||||
sample count = 12
|
sample count = 12
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 3829
|
total output bytes = 3829
|
||||||
sample count = 2
|
sample count = 2
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 113666
|
total output bytes = 113666
|
||||||
sample count = 23
|
sample count = 23
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 55652
|
total output bytes = 55652
|
||||||
sample count = 12
|
sample count = 12
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 3829
|
total output bytes = 3829
|
||||||
sample count = 2
|
sample count = 2
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 113666
|
total output bytes = 113666
|
||||||
sample count = 23
|
sample count = 23
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 55652
|
total output bytes = 55652
|
||||||
sample count = 12
|
sample count = 12
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 445
|
total output bytes = 445
|
||||||
sample count = 1
|
sample count = 1
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 113666
|
total output bytes = 113666
|
||||||
sample count = 23
|
sample count = 23
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 55652
|
total output bytes = 55652
|
||||||
sample count = 12
|
sample count = 12
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -10,8 +10,6 @@ track 0:
|
||||||
total output bytes = 445
|
total output bytes = 445
|
||||||
sample count = 1
|
sample count = 1
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,6 @@ track 0:
|
||||||
total output bytes = 164431
|
total output bytes = 164431
|
||||||
sample count = 33
|
sample count = 33
|
||||||
format 0:
|
format 0:
|
||||||
averageBitrate = 1536000
|
|
||||||
peakBitrate = 1536000
|
|
||||||
sampleMimeType = audio/flac
|
sampleMimeType = audio/flac
|
||||||
maxInputSize = 5776
|
maxInputSize = 5776
|
||||||
channelCount = 2
|
channelCount = 2
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue