class_audiostreamsample.rst 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219
  1. :github_url: hide
  2. .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
  3. .. DO NOT EDIT THIS FILE, but the AudioStreamSample.xml source instead.
  4. .. The source is found in doc/classes or modules/<name>/doc_classes.
  5. .. _class_AudioStreamSample:
  6. AudioStreamSample
  7. =================
  8. **Inherits:** :ref:`AudioStream<class_AudioStream>` **<** :ref:`Resource<class_Resource>` **<** :ref:`Reference<class_Reference>` **<** :ref:`Object<class_Object>`
  9. Stores audio data loaded from WAV files.
  10. Description
  11. -----------
  12. AudioStreamSample stores sound samples loaded from WAV files. To play the stored sound, use an :ref:`AudioStreamPlayer<class_AudioStreamPlayer>` (for non-positional audio) or :ref:`AudioStreamPlayer2D<class_AudioStreamPlayer2D>`/:ref:`AudioStreamPlayer3D<class_AudioStreamPlayer3D>` (for positional audio). The sound can be looped.
  13. This class can also be used to store dynamically-generated PCM audio data.
  14. Properties
  15. ----------
  16. +--------------------------------------------------+----------------------------------------------------------------+-----------------------+
  17. | :ref:`PoolByteArray<class_PoolByteArray>` | :ref:`data<class_AudioStreamSample_property_data>` | ``PoolByteArray( )`` |
  18. +--------------------------------------------------+----------------------------------------------------------------+-----------------------+
  19. | :ref:`Format<enum_AudioStreamSample_Format>` | :ref:`format<class_AudioStreamSample_property_format>` | ``0`` |
  20. +--------------------------------------------------+----------------------------------------------------------------+-----------------------+
  21. | :ref:`int<class_int>` | :ref:`loop_begin<class_AudioStreamSample_property_loop_begin>` | ``0`` |
  22. +--------------------------------------------------+----------------------------------------------------------------+-----------------------+
  23. | :ref:`int<class_int>` | :ref:`loop_end<class_AudioStreamSample_property_loop_end>` | ``0`` |
  24. +--------------------------------------------------+----------------------------------------------------------------+-----------------------+
  25. | :ref:`LoopMode<enum_AudioStreamSample_LoopMode>` | :ref:`loop_mode<class_AudioStreamSample_property_loop_mode>` | ``0`` |
  26. +--------------------------------------------------+----------------------------------------------------------------+-----------------------+
  27. | :ref:`int<class_int>` | :ref:`mix_rate<class_AudioStreamSample_property_mix_rate>` | ``44100`` |
  28. +--------------------------------------------------+----------------------------------------------------------------+-----------------------+
  29. | :ref:`bool<class_bool>` | :ref:`stereo<class_AudioStreamSample_property_stereo>` | ``false`` |
  30. +--------------------------------------------------+----------------------------------------------------------------+-----------------------+
  31. Methods
  32. -------
  33. +---------------------------------------+-------------------------------------------------------------------------------------------------------------+
  34. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`save_to_wav<class_AudioStreamSample_method_save_to_wav>` **(** :ref:`String<class_String>` path **)** |
  35. +---------------------------------------+-------------------------------------------------------------------------------------------------------------+
  36. Enumerations
  37. ------------
  38. .. _enum_AudioStreamSample_Format:
  39. .. _class_AudioStreamSample_constant_FORMAT_8_BITS:
  40. .. _class_AudioStreamSample_constant_FORMAT_16_BITS:
  41. .. _class_AudioStreamSample_constant_FORMAT_IMA_ADPCM:
  42. enum **Format**:
  43. - **FORMAT_8_BITS** = **0** --- 8-bit audio codec.
  44. - **FORMAT_16_BITS** = **1** --- 16-bit audio codec.
  45. - **FORMAT_IMA_ADPCM** = **2** --- Audio is compressed using IMA ADPCM.
  46. ----
  47. .. _enum_AudioStreamSample_LoopMode:
  48. .. _class_AudioStreamSample_constant_LOOP_DISABLED:
  49. .. _class_AudioStreamSample_constant_LOOP_FORWARD:
  50. .. _class_AudioStreamSample_constant_LOOP_PING_PONG:
  51. .. _class_AudioStreamSample_constant_LOOP_BACKWARD:
  52. enum **LoopMode**:
  53. - **LOOP_DISABLED** = **0** --- Audio does not loop.
  54. - **LOOP_FORWARD** = **1** --- Audio loops the data between :ref:`loop_begin<class_AudioStreamSample_property_loop_begin>` and :ref:`loop_end<class_AudioStreamSample_property_loop_end>`, playing forward only.
  55. - **LOOP_PING_PONG** = **2** --- Audio loops the data between :ref:`loop_begin<class_AudioStreamSample_property_loop_begin>` and :ref:`loop_end<class_AudioStreamSample_property_loop_end>`, playing back and forth.
  56. - **LOOP_BACKWARD** = **3** --- Audio loops the data between :ref:`loop_begin<class_AudioStreamSample_property_loop_begin>` and :ref:`loop_end<class_AudioStreamSample_property_loop_end>`, playing backward only.
  57. Property Descriptions
  58. ---------------------
  59. .. _class_AudioStreamSample_property_data:
  60. - :ref:`PoolByteArray<class_PoolByteArray>` **data**
  61. +-----------+-----------------------+
  62. | *Default* | ``PoolByteArray( )`` |
  63. +-----------+-----------------------+
  64. | *Setter* | set_data(value) |
  65. +-----------+-----------------------+
  66. | *Getter* | get_data() |
  67. +-----------+-----------------------+
  68. Contains the audio data in bytes.
  69. **Note:** This property expects signed PCM8 data. To convert unsigned PCM8 to signed PCM8, subtract 128 from each byte.
  70. ----
  71. .. _class_AudioStreamSample_property_format:
  72. - :ref:`Format<enum_AudioStreamSample_Format>` **format**
  73. +-----------+-------------------+
  74. | *Default* | ``0`` |
  75. +-----------+-------------------+
  76. | *Setter* | set_format(value) |
  77. +-----------+-------------------+
  78. | *Getter* | get_format() |
  79. +-----------+-------------------+
  80. Audio format. See :ref:`Format<enum_AudioStreamSample_Format>` constants for values.
  81. ----
  82. .. _class_AudioStreamSample_property_loop_begin:
  83. - :ref:`int<class_int>` **loop_begin**
  84. +-----------+-----------------------+
  85. | *Default* | ``0`` |
  86. +-----------+-----------------------+
  87. | *Setter* | set_loop_begin(value) |
  88. +-----------+-----------------------+
  89. | *Getter* | get_loop_begin() |
  90. +-----------+-----------------------+
  91. The loop start point (in number of samples, relative to the beginning of the sample). This information will be imported automatically from the WAV file if present.
  92. ----
  93. .. _class_AudioStreamSample_property_loop_end:
  94. - :ref:`int<class_int>` **loop_end**
  95. +-----------+---------------------+
  96. | *Default* | ``0`` |
  97. +-----------+---------------------+
  98. | *Setter* | set_loop_end(value) |
  99. +-----------+---------------------+
  100. | *Getter* | get_loop_end() |
  101. +-----------+---------------------+
  102. The loop end point (in number of samples, relative to the beginning of the sample). This information will be imported automatically from the WAV file if present.
  103. ----
  104. .. _class_AudioStreamSample_property_loop_mode:
  105. - :ref:`LoopMode<enum_AudioStreamSample_LoopMode>` **loop_mode**
  106. +-----------+----------------------+
  107. | *Default* | ``0`` |
  108. +-----------+----------------------+
  109. | *Setter* | set_loop_mode(value) |
  110. +-----------+----------------------+
  111. | *Getter* | get_loop_mode() |
  112. +-----------+----------------------+
  113. The loop mode. This information will be imported automatically from the WAV file if present. See :ref:`LoopMode<enum_AudioStreamSample_LoopMode>` constants for values.
  114. ----
  115. .. _class_AudioStreamSample_property_mix_rate:
  116. - :ref:`int<class_int>` **mix_rate**
  117. +-----------+---------------------+
  118. | *Default* | ``44100`` |
  119. +-----------+---------------------+
  120. | *Setter* | set_mix_rate(value) |
  121. +-----------+---------------------+
  122. | *Getter* | get_mix_rate() |
  123. +-----------+---------------------+
  124. The sample rate for mixing this audio.
  125. ----
  126. .. _class_AudioStreamSample_property_stereo:
  127. - :ref:`bool<class_bool>` **stereo**
  128. +-----------+-------------------+
  129. | *Default* | ``false`` |
  130. +-----------+-------------------+
  131. | *Setter* | set_stereo(value) |
  132. +-----------+-------------------+
  133. | *Getter* | is_stereo() |
  134. +-----------+-------------------+
  135. If ``true``, audio is stereo.
  136. Method Descriptions
  137. -------------------
  138. .. _class_AudioStreamSample_method_save_to_wav:
  139. - :ref:`Error<enum_@GlobalScope_Error>` **save_to_wav** **(** :ref:`String<class_String>` path **)**
  140. Saves the AudioStreamSample as a WAV file to ``path``. Samples with IMA ADPCM format can't be saved.
  141. **Note:** A ``.wav`` extension is automatically appended to ``path`` if it is missing.
  142. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  143. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  144. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`