Interface AudioQuality
-
- All Implemented Interfaces:
-
com.theoplayer.android.api.event.EventDispatcher
,com.theoplayer.android.api.player.track.mediatrack.quality.Quality
public interface AudioQuality implements Quality
Represents a quality of the audio track.
-
-
Method Summary
Modifier and Type Method Description abstract long
getAudioSamplingRate()
The sampling rate of the audio quality. -
Methods inherited from class com.theoplayer.android.api.player.track.mediatrack.quality.Quality
getBandwidth, getCodecs, getId, getName, getUid
-
Methods inherited from class com.theoplayer.android.api.event.EventDispatcher
addEventListener, removeEventListener
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getAudioSamplingRate
abstract long getAudioSamplingRate()
The sampling rate of the audio quality.
Example:
- 44100 samples per second is expressed as 44100Hz.
- Returns:
The sampling rate, in samples per second.
-
-
-
-