class_videostreamplayer.rst 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. :github_url: hide
  2. .. DO NOT EDIT THIS FILE!!!
  3. .. Generated automatically from Godot engine sources.
  4. .. Generator: https://github.com/godotengine/godot/tree/4.1/doc/tools/make_rst.py.
  5. .. XML source: https://github.com/godotengine/godot/tree/4.1/doc/classes/VideoStreamPlayer.xml.
  6. .. _class_VideoStreamPlayer:
  7. VideoStreamPlayer
  8. =================
  9. **Inherits:** :ref:`Control<class_Control>` **<** :ref:`CanvasItem<class_CanvasItem>` **<** :ref:`Node<class_Node>` **<** :ref:`Object<class_Object>`
  10. A control used for video playback.
  11. .. rst-class:: classref-introduction-group
  12. Description
  13. -----------
  14. A control used for playback of :ref:`VideoStream<class_VideoStream>` resources.
  15. Supported video formats are `Ogg Theora <https://www.theora.org/>`__ (``.ogv``, :ref:`VideoStreamTheora<class_VideoStreamTheora>`) and any format exposed via a GDExtension plugin.
  16. \ **Warning:** On Web, video playback *will* perform poorly due to missing architecture-specific assembly optimizations.
  17. .. rst-class:: classref-introduction-group
  18. Tutorials
  19. ---------
  20. - :doc:`Playing videos <../tutorials/animation/playing_videos>`
  21. .. rst-class:: classref-reftable-group
  22. Properties
  23. ----------
  24. .. table::
  25. :widths: auto
  26. +---------------------------------------+--------------------------------------------------------------------------+---------------+
  27. | :ref:`int<class_int>` | :ref:`audio_track<class_VideoStreamPlayer_property_audio_track>` | ``0`` |
  28. +---------------------------------------+--------------------------------------------------------------------------+---------------+
  29. | :ref:`bool<class_bool>` | :ref:`autoplay<class_VideoStreamPlayer_property_autoplay>` | ``false`` |
  30. +---------------------------------------+--------------------------------------------------------------------------+---------------+
  31. | :ref:`int<class_int>` | :ref:`buffering_msec<class_VideoStreamPlayer_property_buffering_msec>` | ``500`` |
  32. +---------------------------------------+--------------------------------------------------------------------------+---------------+
  33. | :ref:`StringName<class_StringName>` | :ref:`bus<class_VideoStreamPlayer_property_bus>` | ``&"Master"`` |
  34. +---------------------------------------+--------------------------------------------------------------------------+---------------+
  35. | :ref:`bool<class_bool>` | :ref:`expand<class_VideoStreamPlayer_property_expand>` | ``false`` |
  36. +---------------------------------------+--------------------------------------------------------------------------+---------------+
  37. | :ref:`bool<class_bool>` | :ref:`paused<class_VideoStreamPlayer_property_paused>` | ``false`` |
  38. +---------------------------------------+--------------------------------------------------------------------------+---------------+
  39. | :ref:`VideoStream<class_VideoStream>` | :ref:`stream<class_VideoStreamPlayer_property_stream>` | |
  40. +---------------------------------------+--------------------------------------------------------------------------+---------------+
  41. | :ref:`float<class_float>` | :ref:`stream_position<class_VideoStreamPlayer_property_stream_position>` | |
  42. +---------------------------------------+--------------------------------------------------------------------------+---------------+
  43. | :ref:`float<class_float>` | :ref:`volume<class_VideoStreamPlayer_property_volume>` | |
  44. +---------------------------------------+--------------------------------------------------------------------------+---------------+
  45. | :ref:`float<class_float>` | :ref:`volume_db<class_VideoStreamPlayer_property_volume_db>` | ``0.0`` |
  46. +---------------------------------------+--------------------------------------------------------------------------+---------------+
  47. .. rst-class:: classref-reftable-group
  48. Methods
  49. -------
  50. .. table::
  51. :widths: auto
  52. +-----------------------------------+------------------------------------------------------------------------------------------------+
  53. | :ref:`String<class_String>` | :ref:`get_stream_name<class_VideoStreamPlayer_method_get_stream_name>` **(** **)** |const| |
  54. +-----------------------------------+------------------------------------------------------------------------------------------------+
  55. | :ref:`Texture2D<class_Texture2D>` | :ref:`get_video_texture<class_VideoStreamPlayer_method_get_video_texture>` **(** **)** |const| |
  56. +-----------------------------------+------------------------------------------------------------------------------------------------+
  57. | :ref:`bool<class_bool>` | :ref:`is_playing<class_VideoStreamPlayer_method_is_playing>` **(** **)** |const| |
  58. +-----------------------------------+------------------------------------------------------------------------------------------------+
  59. | void | :ref:`play<class_VideoStreamPlayer_method_play>` **(** **)** |
  60. +-----------------------------------+------------------------------------------------------------------------------------------------+
  61. | void | :ref:`stop<class_VideoStreamPlayer_method_stop>` **(** **)** |
  62. +-----------------------------------+------------------------------------------------------------------------------------------------+
  63. .. rst-class:: classref-section-separator
  64. ----
  65. .. rst-class:: classref-descriptions-group
  66. Signals
  67. -------
  68. .. _class_VideoStreamPlayer_signal_finished:
  69. .. rst-class:: classref-signal
  70. **finished** **(** **)**
  71. Emitted when playback is finished.
  72. .. rst-class:: classref-section-separator
  73. ----
  74. .. rst-class:: classref-descriptions-group
  75. Property Descriptions
  76. ---------------------
  77. .. _class_VideoStreamPlayer_property_audio_track:
  78. .. rst-class:: classref-property
  79. :ref:`int<class_int>` **audio_track** = ``0``
  80. .. rst-class:: classref-property-setget
  81. - void **set_audio_track** **(** :ref:`int<class_int>` value **)**
  82. - :ref:`int<class_int>` **get_audio_track** **(** **)**
  83. The embedded audio track to play.
  84. .. rst-class:: classref-item-separator
  85. ----
  86. .. _class_VideoStreamPlayer_property_autoplay:
  87. .. rst-class:: classref-property
  88. :ref:`bool<class_bool>` **autoplay** = ``false``
  89. .. rst-class:: classref-property-setget
  90. - void **set_autoplay** **(** :ref:`bool<class_bool>` value **)**
  91. - :ref:`bool<class_bool>` **has_autoplay** **(** **)**
  92. If ``true``, playback starts when the scene loads.
  93. .. rst-class:: classref-item-separator
  94. ----
  95. .. _class_VideoStreamPlayer_property_buffering_msec:
  96. .. rst-class:: classref-property
  97. :ref:`int<class_int>` **buffering_msec** = ``500``
  98. .. rst-class:: classref-property-setget
  99. - void **set_buffering_msec** **(** :ref:`int<class_int>` value **)**
  100. - :ref:`int<class_int>` **get_buffering_msec** **(** **)**
  101. Amount of time in milliseconds to store in buffer while playing.
  102. .. rst-class:: classref-item-separator
  103. ----
  104. .. _class_VideoStreamPlayer_property_bus:
  105. .. rst-class:: classref-property
  106. :ref:`StringName<class_StringName>` **bus** = ``&"Master"``
  107. .. rst-class:: classref-property-setget
  108. - void **set_bus** **(** :ref:`StringName<class_StringName>` value **)**
  109. - :ref:`StringName<class_StringName>` **get_bus** **(** **)**
  110. Audio bus to use for sound playback.
  111. .. rst-class:: classref-item-separator
  112. ----
  113. .. _class_VideoStreamPlayer_property_expand:
  114. .. rst-class:: classref-property
  115. :ref:`bool<class_bool>` **expand** = ``false``
  116. .. rst-class:: classref-property-setget
  117. - void **set_expand** **(** :ref:`bool<class_bool>` value **)**
  118. - :ref:`bool<class_bool>` **has_expand** **(** **)**
  119. If ``true``, the video scales to the control size. Otherwise, the control minimum size will be automatically adjusted to match the video stream's dimensions.
  120. .. rst-class:: classref-item-separator
  121. ----
  122. .. _class_VideoStreamPlayer_property_paused:
  123. .. rst-class:: classref-property
  124. :ref:`bool<class_bool>` **paused** = ``false``
  125. .. rst-class:: classref-property-setget
  126. - void **set_paused** **(** :ref:`bool<class_bool>` value **)**
  127. - :ref:`bool<class_bool>` **is_paused** **(** **)**
  128. If ``true``, the video is paused.
  129. .. rst-class:: classref-item-separator
  130. ----
  131. .. _class_VideoStreamPlayer_property_stream:
  132. .. rst-class:: classref-property
  133. :ref:`VideoStream<class_VideoStream>` **stream**
  134. .. rst-class:: classref-property-setget
  135. - void **set_stream** **(** :ref:`VideoStream<class_VideoStream>` value **)**
  136. - :ref:`VideoStream<class_VideoStream>` **get_stream** **(** **)**
  137. The assigned video stream. See description for supported formats.
  138. .. rst-class:: classref-item-separator
  139. ----
  140. .. _class_VideoStreamPlayer_property_stream_position:
  141. .. rst-class:: classref-property
  142. :ref:`float<class_float>` **stream_position**
  143. .. rst-class:: classref-property-setget
  144. - void **set_stream_position** **(** :ref:`float<class_float>` value **)**
  145. - :ref:`float<class_float>` **get_stream_position** **(** **)**
  146. The current position of the stream, in seconds.
  147. \ **Note:** Changing this value won't have any effect as seeking is not implemented yet, except in video formats implemented by a GDExtension add-on.
  148. .. rst-class:: classref-item-separator
  149. ----
  150. .. _class_VideoStreamPlayer_property_volume:
  151. .. rst-class:: classref-property
  152. :ref:`float<class_float>` **volume**
  153. .. rst-class:: classref-property-setget
  154. - void **set_volume** **(** :ref:`float<class_float>` value **)**
  155. - :ref:`float<class_float>` **get_volume** **(** **)**
  156. Audio volume as a linear value.
  157. .. rst-class:: classref-item-separator
  158. ----
  159. .. _class_VideoStreamPlayer_property_volume_db:
  160. .. rst-class:: classref-property
  161. :ref:`float<class_float>` **volume_db** = ``0.0``
  162. .. rst-class:: classref-property-setget
  163. - void **set_volume_db** **(** :ref:`float<class_float>` value **)**
  164. - :ref:`float<class_float>` **get_volume_db** **(** **)**
  165. Audio volume in dB.
  166. .. rst-class:: classref-section-separator
  167. ----
  168. .. rst-class:: classref-descriptions-group
  169. Method Descriptions
  170. -------------------
  171. .. _class_VideoStreamPlayer_method_get_stream_name:
  172. .. rst-class:: classref-method
  173. :ref:`String<class_String>` **get_stream_name** **(** **)** |const|
  174. Returns the video stream's name, or ``"<No Stream>"`` if no video stream is assigned.
  175. .. rst-class:: classref-item-separator
  176. ----
  177. .. _class_VideoStreamPlayer_method_get_video_texture:
  178. .. rst-class:: classref-method
  179. :ref:`Texture2D<class_Texture2D>` **get_video_texture** **(** **)** |const|
  180. Returns the current frame as a :ref:`Texture2D<class_Texture2D>`.
  181. .. rst-class:: classref-item-separator
  182. ----
  183. .. _class_VideoStreamPlayer_method_is_playing:
  184. .. rst-class:: classref-method
  185. :ref:`bool<class_bool>` **is_playing** **(** **)** |const|
  186. Returns ``true`` if the video is playing.
  187. \ **Note:** The video is still considered playing if paused during playback.
  188. .. rst-class:: classref-item-separator
  189. ----
  190. .. _class_VideoStreamPlayer_method_play:
  191. .. rst-class:: classref-method
  192. void **play** **(** **)**
  193. Starts the video playback from the beginning. If the video is paused, this will not unpause the video.
  194. .. rst-class:: classref-item-separator
  195. ----
  196. .. _class_VideoStreamPlayer_method_stop:
  197. .. rst-class:: classref-method
  198. void **stop** **(** **)**
  199. Stops the video playback and sets the stream position to 0.
  200. \ **Note:** Although the stream position will be set to 0, the first frame of the video stream won't become the current frame.
  201. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  202. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  203. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
  204. .. |constructor| replace:: :abbr:`constructor (This method is used to construct a type.)`
  205. .. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`
  206. .. |operator| replace:: :abbr:`operator (This method describes a valid operator to use with this type as left-hand operand.)`
  207. .. |bitfield| replace:: :abbr:`BitField (This value is an integer composed as a bitmask of the following flags.)`