class_audiostreamsample.rst 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. .. Generated automatically by doc/tools/makerst.py in Godot's source tree.
  2. .. DO NOT EDIT THIS FILE, but the AudioStreamSample.xml source instead.
  3. .. The source is found in doc/classes or modules/<name>/doc_classes.
  4. .. _class_AudioStreamSample:
  5. AudioStreamSample
  6. =================
  7. **Inherits:** :ref:`AudioStream<class_AudioStream>` **<** :ref:`Resource<class_Resource>` **<** :ref:`Reference<class_Reference>` **<** :ref:`Object<class_Object>`
  8. **Category:** Core
  9. Brief Description
  10. -----------------
  11. Stores audio data loaded from WAV files.
  12. Properties
  13. ----------
  14. +--------------------------------------------------+----------------------------------------------------------------+-------------------+
  15. | :ref:`PoolByteArray<class_PoolByteArray>` | :ref:`data<class_AudioStreamSample_property_data>` | PoolByteArray( ) |
  16. +--------------------------------------------------+----------------------------------------------------------------+-------------------+
  17. | :ref:`Format<enum_AudioStreamSample_Format>` | :ref:`format<class_AudioStreamSample_property_format>` | 0 |
  18. +--------------------------------------------------+----------------------------------------------------------------+-------------------+
  19. | :ref:`int<class_int>` | :ref:`loop_begin<class_AudioStreamSample_property_loop_begin>` | 0 |
  20. +--------------------------------------------------+----------------------------------------------------------------+-------------------+
  21. | :ref:`int<class_int>` | :ref:`loop_end<class_AudioStreamSample_property_loop_end>` | 0 |
  22. +--------------------------------------------------+----------------------------------------------------------------+-------------------+
  23. | :ref:`LoopMode<enum_AudioStreamSample_LoopMode>` | :ref:`loop_mode<class_AudioStreamSample_property_loop_mode>` | 0 |
  24. +--------------------------------------------------+----------------------------------------------------------------+-------------------+
  25. | :ref:`int<class_int>` | :ref:`mix_rate<class_AudioStreamSample_property_mix_rate>` | 44100 |
  26. +--------------------------------------------------+----------------------------------------------------------------+-------------------+
  27. | :ref:`bool<class_bool>` | :ref:`stereo<class_AudioStreamSample_property_stereo>` | false |
  28. +--------------------------------------------------+----------------------------------------------------------------+-------------------+
  29. Methods
  30. -------
  31. +---------------------------------------+-------------------------------------------------------------------------------------------------------------+
  32. | :ref:`Error<enum_@GlobalScope_Error>` | :ref:`save_to_wav<class_AudioStreamSample_method_save_to_wav>` **(** :ref:`String<class_String>` path **)** |
  33. +---------------------------------------+-------------------------------------------------------------------------------------------------------------+
  34. Enumerations
  35. ------------
  36. .. _enum_AudioStreamSample_Format:
  37. .. _class_AudioStreamSample_constant_FORMAT_8_BITS:
  38. .. _class_AudioStreamSample_constant_FORMAT_16_BITS:
  39. .. _class_AudioStreamSample_constant_FORMAT_IMA_ADPCM:
  40. enum **Format**:
  41. - **FORMAT_8_BITS** = **0** --- 8-bit audio codec.
  42. - **FORMAT_16_BITS** = **1** --- 16-bit audio codec.
  43. - **FORMAT_IMA_ADPCM** = **2** --- Audio is compressed using IMA ADPCM.
  44. .. _enum_AudioStreamSample_LoopMode:
  45. .. _class_AudioStreamSample_constant_LOOP_DISABLED:
  46. .. _class_AudioStreamSample_constant_LOOP_FORWARD:
  47. .. _class_AudioStreamSample_constant_LOOP_PING_PONG:
  48. .. _class_AudioStreamSample_constant_LOOP_BACKWARD:
  49. enum **LoopMode**:
  50. - **LOOP_DISABLED** = **0** --- Audio does not loop.
  51. - **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.
  52. - **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.
  53. - **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.
  54. Description
  55. -----------
  56. 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.
  57. This class can also be used to store dynamically-generated PCM audio data.
  58. Property Descriptions
  59. ---------------------
  60. .. _class_AudioStreamSample_property_data:
  61. - :ref:`PoolByteArray<class_PoolByteArray>` **data**
  62. +-----------+-------------------+
  63. | *Default* | PoolByteArray( ) |
  64. +-----------+-------------------+
  65. | *Setter* | set_data(value) |
  66. +-----------+-------------------+
  67. | *Getter* | get_data() |
  68. +-----------+-------------------+
  69. Contains the audio data in bytes.
  70. .. _class_AudioStreamSample_property_format:
  71. - :ref:`Format<enum_AudioStreamSample_Format>` **format**
  72. +-----------+-------------------+
  73. | *Default* | 0 |
  74. +-----------+-------------------+
  75. | *Setter* | set_format(value) |
  76. +-----------+-------------------+
  77. | *Getter* | get_format() |
  78. +-----------+-------------------+
  79. Audio format. See ``FORMAT_*`` constants for values.
  80. .. _class_AudioStreamSample_property_loop_begin:
  81. - :ref:`int<class_int>` **loop_begin**
  82. +-----------+-----------------------+
  83. | *Default* | 0 |
  84. +-----------+-----------------------+
  85. | *Setter* | set_loop_begin(value) |
  86. +-----------+-----------------------+
  87. | *Getter* | get_loop_begin() |
  88. +-----------+-----------------------+
  89. Loop start in bytes.
  90. .. _class_AudioStreamSample_property_loop_end:
  91. - :ref:`int<class_int>` **loop_end**
  92. +-----------+---------------------+
  93. | *Default* | 0 |
  94. +-----------+---------------------+
  95. | *Setter* | set_loop_end(value) |
  96. +-----------+---------------------+
  97. | *Getter* | get_loop_end() |
  98. +-----------+---------------------+
  99. Loop end in bytes.
  100. .. _class_AudioStreamSample_property_loop_mode:
  101. - :ref:`LoopMode<enum_AudioStreamSample_LoopMode>` **loop_mode**
  102. +-----------+----------------------+
  103. | *Default* | 0 |
  104. +-----------+----------------------+
  105. | *Setter* | set_loop_mode(value) |
  106. +-----------+----------------------+
  107. | *Getter* | get_loop_mode() |
  108. +-----------+----------------------+
  109. Loop mode. See ``LOOP_*`` constants for values.
  110. .. _class_AudioStreamSample_property_mix_rate:
  111. - :ref:`int<class_int>` **mix_rate**
  112. +-----------+---------------------+
  113. | *Default* | 44100 |
  114. +-----------+---------------------+
  115. | *Setter* | set_mix_rate(value) |
  116. +-----------+---------------------+
  117. | *Getter* | get_mix_rate() |
  118. +-----------+---------------------+
  119. The sample rate for mixing this audio.
  120. .. _class_AudioStreamSample_property_stereo:
  121. - :ref:`bool<class_bool>` **stereo**
  122. +-----------+-------------------+
  123. | *Default* | false |
  124. +-----------+-------------------+
  125. | *Setter* | set_stereo(value) |
  126. +-----------+-------------------+
  127. | *Getter* | is_stereo() |
  128. +-----------+-------------------+
  129. If ``true``, audio is stereo.
  130. Method Descriptions
  131. -------------------
  132. .. _class_AudioStreamSample_method_save_to_wav:
  133. - :ref:`Error<enum_@GlobalScope_Error>` **save_to_wav** **(** :ref:`String<class_String>` path **)**
  134. Saves the AudioStreamSample as a WAV file to ``path``. Samples with IMA ADPCM format can't be saved.
  135. **Note:** A ``.wav`` extension is automatically appended to ``path`` if it is missing.