123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242 |
- :github_url: hide
- .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
- .. DO NOT EDIT THIS FILE, but the VideoPlayer.xml source instead.
- .. The source is found in doc/classes or modules/<name>/doc_classes.
- .. _class_VideoPlayer:
- VideoPlayer
- ===========
- **Inherits:** :ref:`Control<class_Control>` **<** :ref:`CanvasItem<class_CanvasItem>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
- **Category:** Core
- Brief Description
- -----------------
- Control for playing video streams.
- Properties
- ----------
- +---------------------------------------+--------------------------------------------------------------------+----------+
- | :ref:`int<class_int>` | :ref:`audio_track<class_VideoPlayer_property_audio_track>` | 0 |
- +---------------------------------------+--------------------------------------------------------------------+----------+
- | :ref:`bool<class_bool>` | :ref:`autoplay<class_VideoPlayer_property_autoplay>` | false |
- +---------------------------------------+--------------------------------------------------------------------+----------+
- | :ref:`int<class_int>` | :ref:`buffering_msec<class_VideoPlayer_property_buffering_msec>` | 500 |
- +---------------------------------------+--------------------------------------------------------------------+----------+
- | :ref:`String<class_String>` | :ref:`bus<class_VideoPlayer_property_bus>` | "Master" |
- +---------------------------------------+--------------------------------------------------------------------+----------+
- | :ref:`bool<class_bool>` | :ref:`expand<class_VideoPlayer_property_expand>` | true |
- +---------------------------------------+--------------------------------------------------------------------+----------+
- | :ref:`bool<class_bool>` | :ref:`paused<class_VideoPlayer_property_paused>` | false |
- +---------------------------------------+--------------------------------------------------------------------+----------+
- | :ref:`VideoStream<class_VideoStream>` | :ref:`stream<class_VideoPlayer_property_stream>` | |
- +---------------------------------------+--------------------------------------------------------------------+----------+
- | :ref:`float<class_float>` | :ref:`stream_position<class_VideoPlayer_property_stream_position>` | |
- +---------------------------------------+--------------------------------------------------------------------+----------+
- | :ref:`float<class_float>` | :ref:`volume<class_VideoPlayer_property_volume>` | |
- +---------------------------------------+--------------------------------------------------------------------+----------+
- | :ref:`float<class_float>` | :ref:`volume_db<class_VideoPlayer_property_volume_db>` | 0.0 |
- +---------------------------------------+--------------------------------------------------------------------+----------+
- Methods
- -------
- +-------------------------------+------------------------------------------------------------------------------------+
- | :ref:`String<class_String>` | :ref:`get_stream_name<class_VideoPlayer_method_get_stream_name>` **(** **)** const |
- +-------------------------------+------------------------------------------------------------------------------------+
- | :ref:`Texture<class_Texture>` | :ref:`get_video_texture<class_VideoPlayer_method_get_video_texture>` **(** **)** |
- +-------------------------------+------------------------------------------------------------------------------------+
- | :ref:`bool<class_bool>` | :ref:`is_playing<class_VideoPlayer_method_is_playing>` **(** **)** const |
- +-------------------------------+------------------------------------------------------------------------------------+
- | void | :ref:`play<class_VideoPlayer_method_play>` **(** **)** |
- +-------------------------------+------------------------------------------------------------------------------------+
- | void | :ref:`stop<class_VideoPlayer_method_stop>` **(** **)** |
- +-------------------------------+------------------------------------------------------------------------------------+
- Signals
- -------
- .. _class_VideoPlayer_signal_finished:
- - **finished** **(** **)**
- Emitted when playback is finished.
- Description
- -----------
- Control node for playing video streams. Supported formats are `WebM <https://www.webmproject.org/>`_ and `Ogg Theora <https://www.theora.org/>`_.
- Property Descriptions
- ---------------------
- .. _class_VideoPlayer_property_audio_track:
- - :ref:`int<class_int>` **audio_track**
- +-----------+------------------------+
- | *Default* | 0 |
- +-----------+------------------------+
- | *Setter* | set_audio_track(value) |
- +-----------+------------------------+
- | *Getter* | get_audio_track() |
- +-----------+------------------------+
- The embedded audio track to play.
- .. _class_VideoPlayer_property_autoplay:
- - :ref:`bool<class_bool>` **autoplay**
- +-----------+---------------------+
- | *Default* | false |
- +-----------+---------------------+
- | *Setter* | set_autoplay(value) |
- +-----------+---------------------+
- | *Getter* | has_autoplay() |
- +-----------+---------------------+
- If ``true``, playback starts when the scene loads.
- .. _class_VideoPlayer_property_buffering_msec:
- - :ref:`int<class_int>` **buffering_msec**
- +-----------+---------------------------+
- | *Default* | 500 |
- +-----------+---------------------------+
- | *Setter* | set_buffering_msec(value) |
- +-----------+---------------------------+
- | *Getter* | get_buffering_msec() |
- +-----------+---------------------------+
- Amount of time in milliseconds to store in buffer while playing.
- .. _class_VideoPlayer_property_bus:
- - :ref:`String<class_String>` **bus**
- +-----------+----------------+
- | *Default* | "Master" |
- +-----------+----------------+
- | *Setter* | set_bus(value) |
- +-----------+----------------+
- | *Getter* | get_bus() |
- +-----------+----------------+
- Audio bus to use for sound playback.
- .. _class_VideoPlayer_property_expand:
- - :ref:`bool<class_bool>` **expand**
- +-----------+-------------------+
- | *Default* | true |
- +-----------+-------------------+
- | *Setter* | set_expand(value) |
- +-----------+-------------------+
- | *Getter* | has_expand() |
- +-----------+-------------------+
- If ``true``, the video scales to the control size.
- .. _class_VideoPlayer_property_paused:
- - :ref:`bool<class_bool>` **paused**
- +-----------+-------------------+
- | *Default* | false |
- +-----------+-------------------+
- | *Setter* | set_paused(value) |
- +-----------+-------------------+
- | *Getter* | is_paused() |
- +-----------+-------------------+
- If ``true``, the video is paused.
- .. _class_VideoPlayer_property_stream:
- - :ref:`VideoStream<class_VideoStream>` **stream**
- +----------+-------------------+
- | *Setter* | set_stream(value) |
- +----------+-------------------+
- | *Getter* | get_stream() |
- +----------+-------------------+
- .. _class_VideoPlayer_property_stream_position:
- - :ref:`float<class_float>` **stream_position**
- +----------+----------------------------+
- | *Setter* | set_stream_position(value) |
- +----------+----------------------------+
- | *Getter* | get_stream_position() |
- +----------+----------------------------+
- The current position of the stream, in seconds.
- .. _class_VideoPlayer_property_volume:
- - :ref:`float<class_float>` **volume**
- +----------+-------------------+
- | *Setter* | set_volume(value) |
- +----------+-------------------+
- | *Getter* | get_volume() |
- +----------+-------------------+
- Audio volume as a linear value.
- .. _class_VideoPlayer_property_volume_db:
- - :ref:`float<class_float>` **volume_db**
- +-----------+----------------------+
- | *Default* | 0.0 |
- +-----------+----------------------+
- | *Setter* | set_volume_db(value) |
- +-----------+----------------------+
- | *Getter* | get_volume_db() |
- +-----------+----------------------+
- Audio volume in dB.
- Method Descriptions
- -------------------
- .. _class_VideoPlayer_method_get_stream_name:
- - :ref:`String<class_String>` **get_stream_name** **(** **)** const
- Returns the video stream's name.
- .. _class_VideoPlayer_method_get_video_texture:
- - :ref:`Texture<class_Texture>` **get_video_texture** **(** **)**
- Returns the current frame as a :ref:`Texture<class_Texture>`.
- .. _class_VideoPlayer_method_is_playing:
- - :ref:`bool<class_bool>` **is_playing** **(** **)** const
- Returns ``true`` if the video is playing.
- .. _class_VideoPlayer_method_play:
- - void **play** **(** **)**
- Starts the video playback.
- .. _class_VideoPlayer_method_stop:
- - void **stop** **(** **)**
- Stops the video playback.
|