MediaInfo Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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 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 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 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 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 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 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.