Language

MediaInfo Enum

Definition

Enumerates values returned by several types and taken as a parameter of the F:Android.Media.MediaPlayer+IOnInfoListener.OnInfo, and F:Android.Media.MediaPlayer+InfoEventArgs..ctor members.

public enum MediaInfo
type MediaInfo = 
Inheritance
MediaInfo

Fields

Name Value Description
Unknown 1

Unspecified media player info.

StartedAsNext 2

The player was started because it was used as the next player for another player, which just completed playback.

Android reference for android.media.MediaPlayer.MEDIA_INFO_STARTED_AS_NEXT.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

VideoRenderingStart 3

The player just pushed the very first video frame for rendering.

VideoTrackLagging 700

The video is too complex for the decoder: it can't decode frames fast enough.

BufferingStart 701

MediaPlayer is temporarily pausing playback internally in order to buffer more data.

BufferingEnd 702

MediaPlayer is resuming playback after filling buffers.

BadInterleaving 800

Bad interleaving means that a media has been improperly interleaved or not interleaved at all, e.g has all the video samples first then all the audio ones.

NotSeekable 801

The media cannot be seeked (e.g live stream)

Android reference for android.media.MediaPlayer.MEDIA_INFO_NOT_SEEKABLE.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

MetadataUpdate 802

A new set of metadata is available.

AudioNotPlaying 804

Informs that audio is not playing. Note that playback of the video is not interrupted.

Android reference for android.media.MediaPlayer.MEDIA_INFO_AUDIO_NOT_PLAYING.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

VideoNotPlaying 805

Informs that video is not playing. Note that playback of the audio is not interrupted.

Android reference for android.media.MediaPlayer.MEDIA_INFO_VIDEO_NOT_PLAYING.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

UnsupportedSubtitle 901

Subtitle track was not supported by the media framework.

Android reference for android.media.MediaPlayer.MEDIA_INFO_UNSUPPORTED_SUBTITLE.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

SubtitleTimedOut 902

Reading the subtitle track takes too long.

Android reference for android.media.MediaPlayer.MEDIA_INFO_SUBTITLE_TIMED_OUT.

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to