2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2020-02-01 02:03:48 +01:00
<class name= "VideoPlayer" inherits= "Control" version= "4.0" >
2017-09-12 22:42:36 +02:00
<brief_description >
2018-05-20 22:43:48 +02:00
Control for playing video streams.
2017-09-12 22:42:36 +02:00
</brief_description>
<description >
2020-01-26 11:24:14 +01:00
Control node for playing video streams using [VideoStream] resources.
2020-09-16 22:41:48 +02:00
Supported video formats are [url=https://www.webmproject.org/]WebM[/url] ([code].webm[/code], [VideoStreamWebm]), [url=https://www.theora.org/]Ogg Theora[/url] ([code].ogv[/code], [VideoStreamTheora]), and any format exposed via a GDNative plugin using [VideoStreamGDNative].
2020-11-27 15:56:24 +01:00
[b]Note:[/b] Due to a bug, VideoPlayer does not support localization remapping yet.
2020-12-25 11:59:37 +01:00
[b]Warning:[/b] On HTML5, video playback [i]will[/i] perform poorly due to missing architecture-specific assembly optimizations, especially for VP8/VP9.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
</tutorials>
<methods >
<method name= "get_stream_name" qualifiers= "const" >
<return type= "String" >
</return>
<description >
2020-01-18 14:51:17 +01:00
Returns the video stream's name, or [code]"< No Stream> "[/code] if no video stream is assigned.
2017-09-12 22:42:36 +02:00
</description>
</method>
2019-10-26 16:40:31 +02:00
<method name= "get_video_texture" qualifiers= "const" >
2020-02-12 09:59:06 +01:00
<return type= "Texture2D" >
2017-09-12 22:42:36 +02:00
</return>
<description >
2020-02-12 09:59:06 +01:00
Returns the current frame as a [Texture2D].
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "is_playing" qualifiers= "const" >
<return type= "bool" >
</return>
<description >
2018-05-20 22:43:48 +02:00
Returns [code]true[/code] if the video is playing.
2020-01-18 14:51:17 +01:00
[b]Note:[/b] The video is still considered playing if paused during playback.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "play" >
<return type= "void" >
</return>
<description >
2020-01-18 14:51:17 +01:00
Starts the video playback from the beginning. If the video is paused, this will not unpause the video.
2017-09-12 22:42:36 +02:00
</description>
</method>
<method name= "stop" >
<return type= "void" >
</return>
<description >
2020-01-18 14:51:17 +01:00
Stops the video playback and sets the stream position to 0.
[b]Note:[/b] Although the stream position will be set to 0, the first frame of the video stream won't become the current frame.
2017-09-12 22:42:36 +02:00
</description>
</method>
</methods>
<members >
2019-06-29 12:38:01 +02:00
<member name= "audio_track" type= "int" setter= "set_audio_track" getter= "get_audio_track" default= "0" >
2018-05-20 22:43:48 +02:00
The embedded audio track to play.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "autoplay" type= "bool" setter= "set_autoplay" getter= "has_autoplay" default= "false" >
2019-06-29 15:24:23 +02:00
If [code]true[/code], playback starts when the scene loads.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "buffering_msec" type= "int" setter= "set_buffering_msec" getter= "get_buffering_msec" default= "500" >
2018-05-20 22:43:48 +02:00
Amount of time in milliseconds to store in buffer while playing.
2018-01-11 23:38:35 +01:00
</member>
2020-02-22 14:59:09 +01:00
<member name= "bus" type= "StringName" setter= "set_bus" getter= "get_bus" default= "@"Master"" >
2018-05-20 22:43:48 +02:00
Audio bus to use for sound playback.
2017-11-15 20:35:18 +01:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "expand" type= "bool" setter= "set_expand" getter= "has_expand" default= "true" >
2020-01-26 11:24:14 +01:00
If [code]true[/code], the video scales to the control size. Otherwise, the control minimum size will be automatically adjusted to match the video stream's dimensions.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "paused" type= "bool" setter= "set_paused" getter= "is_paused" default= "false" >
2018-12-20 13:46:54 +01:00
If [code]true[/code], the video is paused.
2017-09-12 22:42:36 +02:00
</member>
2019-07-15 20:42:47 +02:00
<member name= "stream" type= "VideoStream" setter= "set_stream" getter= "get_stream" >
2019-10-07 01:26:15 +02:00
The assigned video stream. See description for supported formats.
2017-09-12 22:42:36 +02:00
</member>
2019-06-29 21:22:15 +02:00
<member name= "stream_position" type= "float" setter= "set_stream_position" getter= "get_stream_position" >
2018-01-11 23:38:35 +01:00
The current position of the stream, in seconds.
</member>
2019-06-29 21:22:15 +02:00
<member name= "volume" type= "float" setter= "set_volume" getter= "get_volume" >
2018-05-20 22:43:48 +02:00
Audio volume as a linear value.
2018-01-11 23:38:35 +01:00
</member>
2019-06-29 12:38:01 +02:00
<member name= "volume_db" type= "float" setter= "set_volume_db" getter= "get_volume_db" default= "0.0" >
2018-05-20 22:43:48 +02:00
Audio volume in dB.
2017-09-12 22:42:36 +02:00
</member>
</members>
2018-04-10 10:12:42 +02:00
<signals >
<signal name= "finished" >
<description >
2018-05-20 22:43:48 +02:00
Emitted when playback is finished.
2018-04-10 10:12:42 +02:00
</description>
</signal>
</signals>
2017-09-12 22:42:36 +02:00
<constants >
</constants>
</class>