2017-09-13 04:42:36 +08:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-07-06 16:08:05 +08:00
<class name= "VideoStreamPlayer" inherits= "Control" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-13 04:42:36 +08:00
<brief_description >
2023-04-30 22:26:09 +08:00
A control used for video playback.
2017-09-13 04:42:36 +08:00
</brief_description>
<description >
2023-04-30 22:26:09 +08:00
A control used for playback of [VideoStream] resources.
2022-03-09 20:56:14 +08:00
Supported video formats are [url=https://www.theora.org/]Ogg Theora[/url] ([code].ogv[/code], [VideoStreamTheora]) and any format exposed via a GDExtension plugin.
2021-12-07 00:24:45 +08:00
[b]Note:[/b] Due to a bug, VideoStreamPlayer does not support localization remapping yet.
2022-08-29 02:27:45 +08:00
[b]Warning:[/b] On Web, video playback [i]will[/i] perform poorly due to missing architecture-specific assembly optimizations.
2017-09-13 04:42:36 +08:00
</description>
<tutorials >
2023-08-15 18:14:01 +08:00
<link title= "Playing videos" > $DOCS_URL/tutorials/animation/playing_videos.html</link>
2017-09-13 04:42:36 +08:00
</tutorials>
<methods >
2023-06-05 06:59:23 +08:00
<method name= "get_stream_length" qualifiers= "const" >
<return type= "float" />
<description >
The length of the current stream, in seconds.
[b]Note:[/b] For [VideoStreamTheora] streams (the built-in format supported by Godot), this value will always be zero, as getting the stream length is not implemented yet. The feature may be supported by video formats implemented by a GDExtension add-on.
</description>
</method>
2017-09-13 04:42:36 +08:00
<method name= "get_stream_name" qualifiers= "const" >
2021-07-30 21:28:05 +08:00
<return type= "String" />
2017-09-13 04:42:36 +08:00
<description >
2020-01-18 21:51:17 +08:00
Returns the video stream's name, or [code]"< No Stream> "[/code] if no video stream is assigned.
2017-09-13 04:42:36 +08:00
</description>
</method>
2019-10-26 22:40:31 +08:00
<method name= "get_video_texture" qualifiers= "const" >
2021-07-30 21:28:05 +08:00
<return type= "Texture2D" />
2017-09-13 04:42:36 +08:00
<description >
2020-02-12 16:59:06 +08:00
Returns the current frame as a [Texture2D].
2017-09-13 04:42:36 +08:00
</description>
</method>
<method name= "is_playing" qualifiers= "const" >
2021-07-30 21:28:05 +08:00
<return type= "bool" />
2017-09-13 04:42:36 +08:00
<description >
2018-05-21 04:43:48 +08:00
Returns [code]true[/code] if the video is playing.
2020-01-18 21:51:17 +08:00
[b]Note:[/b] The video is still considered playing if paused during playback.
2017-09-13 04:42:36 +08:00
</description>
</method>
<method name= "play" >
2021-07-30 21:28:05 +08:00
<return type= "void" />
2017-09-13 04:42:36 +08:00
<description >
2020-01-18 21:51:17 +08:00
Starts the video playback from the beginning. If the video is paused, this will not unpause the video.
2017-09-13 04:42:36 +08:00
</description>
</method>
<method name= "stop" >
2021-07-30 21:28:05 +08:00
<return type= "void" />
2017-09-13 04:42:36 +08:00
<description >
2020-01-18 21:51:17 +08: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-13 04:42:36 +08:00
</description>
</method>
</methods>
<members >
2019-06-29 18:38:01 +08:00
<member name= "audio_track" type= "int" setter= "set_audio_track" getter= "get_audio_track" default= "0" >
2018-05-21 04:43:48 +08:00
The embedded audio track to play.
2017-09-13 04:42:36 +08:00
</member>
2019-06-29 18:38:01 +08:00
<member name= "autoplay" type= "bool" setter= "set_autoplay" getter= "has_autoplay" default= "false" >
2019-06-29 21:24:23 +08:00
If [code]true[/code], playback starts when the scene loads.
2017-09-13 04:42:36 +08:00
</member>
2019-06-29 18:38:01 +08:00
<member name= "buffering_msec" type= "int" setter= "set_buffering_msec" getter= "get_buffering_msec" default= "500" >
2018-05-21 04:43:48 +08:00
Amount of time in milliseconds to store in buffer while playing.
2018-01-12 06:38:35 +08:00
</member>
2021-06-06 03:24:24 +08:00
<member name= "bus" type= "StringName" setter= "set_bus" getter= "get_bus" default= "&"Master"" >
2018-05-21 04:43:48 +08:00
Audio bus to use for sound playback.
2017-11-16 03:35:18 +08:00
</member>
2022-07-06 06:43:09 +08:00
<member name= "expand" type= "bool" setter= "set_expand" getter= "has_expand" default= "false" >
2020-01-26 18:24:14 +08: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-13 04:42:36 +08:00
</member>
2023-06-05 07:14:19 +08:00
<member name= "loop" type= "bool" setter= "set_loop" getter= "has_loop" default= "false" >
If [code]true[/code], the video restarts when it reaches its end.
</member>
2019-06-29 18:38:01 +08:00
<member name= "paused" type= "bool" setter= "set_paused" getter= "is_paused" default= "false" >
2018-12-20 20:46:54 +08:00
If [code]true[/code], the video is paused.
2017-09-13 04:42:36 +08:00
</member>
2019-07-16 02:42:47 +08:00
<member name= "stream" type= "VideoStream" setter= "set_stream" getter= "get_stream" >
2019-10-07 07:26:15 +08:00
The assigned video stream. See description for supported formats.
2017-09-13 04:42:36 +08:00
</member>
2019-06-30 03:22:15 +08:00
<member name= "stream_position" type= "float" setter= "set_stream_position" getter= "get_stream_position" >
2018-01-12 06:38:35 +08:00
The current position of the stream, in seconds.
2022-03-09 20:56:14 +08:00
[b]Note:[/b] Changing this value won't have any effect as seeking is not implemented yet, except in video formats implemented by a GDExtension add-on.
2018-01-12 06:38:35 +08:00
</member>
2019-06-30 03:22:15 +08:00
<member name= "volume" type= "float" setter= "set_volume" getter= "get_volume" >
2018-05-21 04:43:48 +08:00
Audio volume as a linear value.
2018-01-12 06:38:35 +08:00
</member>
2019-06-29 18:38:01 +08:00
<member name= "volume_db" type= "float" setter= "set_volume_db" getter= "get_volume_db" default= "0.0" >
2018-05-21 04:43:48 +08:00
Audio volume in dB.
2017-09-13 04:42:36 +08:00
</member>
</members>
2018-04-10 16:12:42 +08:00
<signals >
<signal name= "finished" >
<description >
2018-05-21 04:43:48 +08:00
Emitted when playback is finished.
2018-04-10 16:12:42 +08:00
</description>
</signal>
</signals>
2017-09-13 04:42:36 +08:00
</class>