Navigation
Unreal Engine C++ API Reference > Runtime > Media
References
Module | Media |
Header | /Engine/Source/Runtime/Media/Public/IMediaControls.h |
Include | #include "IMediaControls.h" |
Syntax
enum EMediaState
{
Closed,
Error,
Paused,
Playing,
Preparing,
Stopped,
}
Values
Name | Description |
---|---|
Closed | Media has been closed and cannot be played again. |
Error | Unrecoverable error occurred during playback. |
Paused | Playback has been paused, but can be resumed. |
Playing | Media is currently playing. |
Preparing | Media is being prepared for playback. |
Stopped | Playback has been stopped, but can be restarted. |
Remarks
Possible states of media playback.