Format
class Format
kotlin.Any | |
↳ | android.media.AudioMetadata.Format |
A container class for AudioMetadata Format keys.
Summary
Properties | |
---|---|
static AudioMetadata.Key<Boolean!> |
A key representing the presence of Atmos in an E-AC3 stream. |
static AudioMetadata.Key<Int!> |
A key representing the audio encoding used for the stream. |
static AudioMetadata.Key<Int!> |
A key representing the bitrate of the encoded stream used in If the stream is variable bitrate, this is the average bitrate of the stream. |
static AudioMetadata.Key<Int!> |
A key representing the bit width of an element of decoded data. |
static AudioMetadata.Key<Int!> |
A key representing the audio channel mask of the stream. |
static AudioMetadata.Key<String!> |
A key representing the codec mime string. |
static AudioMetadata.Key<Int!> |
A key representing the audio presentation content classifier being rendered by a next generation audio decoder. |
static AudioMetadata.Key<Int!> |
A key representing the audio presentation id being decoded by a next generation audio decoder. |
static AudioMetadata.Key<String!> |
A key representing the audio presentation language being rendered by a next generation audio decoder. |
static AudioMetadata.Key<Int!> |
A key representing the audio program id being decoded by a next generation audio decoder. |
static AudioMetadata.Key<Int!> |
A key representing the audio sample rate in Hz of the stream. |
Properties
KEY_ATMOS_PRESENT
static val KEY_ATMOS_PRESENT: AudioMetadata.Key<Boolean!>
A key representing the presence of Atmos in an E-AC3 stream. A Boolean value which is true if Atmos is present in an E-AC3 stream.
KEY_AUDIO_ENCODING
static val KEY_AUDIO_ENCODING: AudioMetadata.Key<Int!>
A key representing the audio encoding used for the stream. This is the same encoding used in AudioFormat#getEncoding()
. An Integer value.
KEY_BIT_RATE
static val KEY_BIT_RATE: AudioMetadata.Key<Int!>
A key representing the bitrate of the encoded stream used in If the stream is variable bitrate, this is the average bitrate of the stream. The unit is bits per second. An Integer value.
KEY_BIT_WIDTH
static val KEY_BIT_WIDTH: AudioMetadata.Key<Int!>
A key representing the bit width of an element of decoded data. An Integer value.
KEY_CHANNEL_MASK
static val KEY_CHANNEL_MASK: AudioMetadata.Key<Int!>
A key representing the audio channel mask of the stream. An Integer value.
KEY_MIME
static val KEY_MIME: AudioMetadata.Key<String!>
A key representing the codec mime string. A String value.
See Also
KEY_PRESENTATION_CONTENT_CLASSIFIER
static val KEY_PRESENTATION_CONTENT_CLASSIFIER: AudioMetadata.Key<Int!>
A key representing the audio presentation content classifier being rendered by a next generation audio decoder. An Integer value representing presentation content classifier.
See Also
android.media.AudioPresentation#CONTENT_UNKNOWN
android.media.AudioPresentation#CONTENT_MAIN
android.media.AudioPresentation#CONTENT_MUSIC_AND_EFFECTS
android.media.AudioPresentation#CONTENT_VISUALLY_IMPAIRED
android.media.AudioPresentation#CONTENT_HEARING_IMPAIRED
android.media.AudioPresentation#CONTENT_DIALOG
android.media.AudioPresentation#CONTENT_COMMENTARY
android.media.AudioPresentation#CONTENT_EMERGENCY
android.media.AudioPresentation#CONTENT_VOICEOVER
KEY_PRESENTATION_ID
static val KEY_PRESENTATION_ID: AudioMetadata.Key<Int!>
A key representing the audio presentation id being decoded by a next generation audio decoder. An Integer value representing presentation id.
KEY_PRESENTATION_LANGUAGE
static val KEY_PRESENTATION_LANGUAGE: AudioMetadata.Key<String!>
A key representing the audio presentation language being rendered by a next generation audio decoder. A String value representing ISO 639-2 (three letter code).
KEY_PROGRAM_ID
static val KEY_PROGRAM_ID: AudioMetadata.Key<Int!>
A key representing the audio program id being decoded by a next generation audio decoder. An Integer value representing program id.
KEY_SAMPLE_RATE
static val KEY_SAMPLE_RATE: AudioMetadata.Key<Int!>
A key representing the audio sample rate in Hz of the stream. An Integer value.