MediaPlayer.MetricsConstants


public static final class MediaPlayer.MetricsConstants
extends Object

java.lang.Object
   ↳ android.media.MediaPlayer.MetricsConstants


Summary

Constants

String CODEC_AUDIO

Key to extract the codec being used to decode the audio track from the MediaPlayer.getMetrics return value.

String CODEC_VIDEO

Key to extract the codec being used to decode the video track from the MediaPlayer.getMetrics return value.

String DURATION

Key to extract the duration (in milliseconds) of the media being played from the MediaPlayer.getMetrics return value.

String ERRORS

Key to extract the count of errors encountered while playing the media from the MediaPlayer.getMetrics return value.

String ERROR_CODE

Key to extract an (optional) error code detected while playing the media from the MediaPlayer.getMetrics return value.

String FRAMES

Key to extract the count of video frames played from the MediaPlayer.getMetrics return value.

String FRAMES_DROPPED

Key to extract the count of video frames dropped from the MediaPlayer.getMetrics return value.

String HEIGHT

Key to extract the height (in pixels) of the video track from the MediaPlayer.getMetrics return value.

String MIME_TYPE_AUDIO

Key to extract the MIME type of the audio track from the MediaPlayer.getMetrics return value.

String MIME_TYPE_VIDEO

Key to extract the MIME type of the video track from the MediaPlayer.getMetrics return value.

String PLAYING

Key to extract the playing time (in milliseconds) of the media being played from the MediaPlayer.getMetrics return value.

String WIDTH

Key to extract the width (in pixels) of the video track from the MediaPlayer.getMetrics return value.

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Constants

CODEC_AUDIO

Added in API level 26
public static final String CODEC_AUDIO

Key to extract the codec being used to decode the audio track from the MediaPlayer.getMetrics return value. The value is a String.

Constant Value: "android.media.mediaplayer.audio.codec"

CODEC_VIDEO

Added in API level 26
public static final String CODEC_VIDEO

Key to extract the codec being used to decode the video track from the MediaPlayer.getMetrics return value. The value is a String.

Constant Value: "android.media.mediaplayer.video.codec"

DURATION

Added in API level 26
public static final String DURATION

Key to extract the duration (in milliseconds) of the media being played from the MediaPlayer.getMetrics return value. The value is a long.

Constant Value: "android.media.mediaplayer.durationMs"

ERRORS

Added in API level 26
public static final String ERRORS

Key to extract the count of errors encountered while playing the media from the MediaPlayer.getMetrics return value. The value is an integer.

Constant Value: "android.media.mediaplayer.err"

ERROR_CODE

Added in API level 26
public static final String ERROR_CODE

Key to extract an (optional) error code detected while playing the media from the MediaPlayer.getMetrics return value. The value is an integer.

Constant Value: "android.media.mediaplayer.errcode"

FRAMES

Added in API level 26
public static final String FRAMES

Key to extract the count of video frames played from the MediaPlayer.getMetrics return value. The value is an integer.

Constant Value: "android.media.mediaplayer.frames"

FRAMES_DROPPED

Added in API level 26
public static final String FRAMES_DROPPED

Key to extract the count of video frames dropped from the MediaPlayer.getMetrics return value. The value is an integer.

Constant Value: "android.media.mediaplayer.dropped"

HEIGHT

Added in API level 26
public static final String HEIGHT

Key to extract the height (in pixels) of the video track from the MediaPlayer.getMetrics return value. The value is an integer.

Constant Value: "android.media.mediaplayer.height"

MIME_TYPE_AUDIO

Added in API level 26
public static final String MIME_TYPE_AUDIO

Key to extract the MIME type of the audio track from the MediaPlayer.getMetrics return value. The value is a String.

Constant Value: "android.media.mediaplayer.audio.mime"

MIME_TYPE_VIDEO

Added in API level 26
public static final String MIME_TYPE_VIDEO

Key to extract the MIME type of the video track from the MediaPlayer.getMetrics return value. The value is a String.

Constant Value: "android.media.mediaplayer.video.mime"

PLAYING

Added in API level 26
public static final String PLAYING

Key to extract the playing time (in milliseconds) of the media being played from the MediaPlayer.getMetrics return value. The value is a long.

Constant Value: "android.media.mediaplayer.playingMs"

WIDTH

Added in API level 26
public static final String WIDTH

Key to extract the width (in pixels) of the video track from the MediaPlayer.getMetrics return value. The value is an integer.

Constant Value: "android.media.mediaplayer.width"