virtualx-engine-docs/_sources/classes/class_audiostreamsample.rst.txt
2024-10-23 09:41:33 -07:00

295 lines
11 KiB
ReStructuredText

:github_url: hide
.. DO NOT EDIT THIS FILE!!!
.. Generated automatically from Godot engine sources.
.. Generator: https://github.com/godotengine/godot/tree/3.6/doc/tools/make_rst.py.
.. XML source: https://github.com/godotengine/godot/tree/3.6/doc/classes/AudioStreamSample.xml.
.. _class_AudioStreamSample:
AudioStreamSample
=================
**Inherits:** :ref:`AudioStream<class_AudioStream>` **<** :ref:`Resource<class_Resource>` **<** :ref:`Reference<class_Reference>` **<** :ref:`Object<class_Object>`
Stores audio data loaded from WAV files.
.. rst-class:: classref-introduction-group
Description
-----------
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.
This class can also be used to store dynamically-generated PCM audio data. See also :ref:`AudioStreamGenerator<class_AudioStreamGenerator>` for procedural audio generation.
.. rst-class:: classref-reftable-group
Properties
----------
.. table::
:widths: auto
+--------------------------------------------------+----------------------------------------------------------------+-----------------------+
| :ref:`PoolByteArray<class_PoolByteArray>` | :ref:`data<class_AudioStreamSample_property_data>` | ``PoolByteArray( )`` |
+--------------------------------------------------+----------------------------------------------------------------+-----------------------+
| :ref:`Format<enum_AudioStreamSample_Format>` | :ref:`format<class_AudioStreamSample_property_format>` | ``0`` |
+--------------------------------------------------+----------------------------------------------------------------+-----------------------+
| :ref:`int<class_int>` | :ref:`loop_begin<class_AudioStreamSample_property_loop_begin>` | ``0`` |
+--------------------------------------------------+----------------------------------------------------------------+-----------------------+
| :ref:`int<class_int>` | :ref:`loop_end<class_AudioStreamSample_property_loop_end>` | ``0`` |
+--------------------------------------------------+----------------------------------------------------------------+-----------------------+
| :ref:`LoopMode<enum_AudioStreamSample_LoopMode>` | :ref:`loop_mode<class_AudioStreamSample_property_loop_mode>` | ``0`` |
+--------------------------------------------------+----------------------------------------------------------------+-----------------------+
| :ref:`int<class_int>` | :ref:`mix_rate<class_AudioStreamSample_property_mix_rate>` | ``44100`` |
+--------------------------------------------------+----------------------------------------------------------------+-----------------------+
| :ref:`bool<class_bool>` | :ref:`stereo<class_AudioStreamSample_property_stereo>` | ``false`` |
+--------------------------------------------------+----------------------------------------------------------------+-----------------------+
.. rst-class:: classref-reftable-group
Methods
-------
.. table::
:widths: auto
+---------------------------------------+-------------------------------------------------------------------------------------------------------------+
| :ref:`Error<enum_@GlobalScope_Error>` | :ref:`save_to_wav<class_AudioStreamSample_method_save_to_wav>` **(** :ref:`String<class_String>` path **)** |
+---------------------------------------+-------------------------------------------------------------------------------------------------------------+
.. rst-class:: classref-section-separator
----
.. rst-class:: classref-descriptions-group
Enumerations
------------
.. _enum_AudioStreamSample_Format:
.. rst-class:: classref-enumeration
enum **Format**:
.. _class_AudioStreamSample_constant_FORMAT_8_BITS:
.. rst-class:: classref-enumeration-constant
:ref:`Format<enum_AudioStreamSample_Format>` **FORMAT_8_BITS** = ``0``
8-bit audio codec.
.. _class_AudioStreamSample_constant_FORMAT_16_BITS:
.. rst-class:: classref-enumeration-constant
:ref:`Format<enum_AudioStreamSample_Format>` **FORMAT_16_BITS** = ``1``
16-bit audio codec.
.. _class_AudioStreamSample_constant_FORMAT_IMA_ADPCM:
.. rst-class:: classref-enumeration-constant
:ref:`Format<enum_AudioStreamSample_Format>` **FORMAT_IMA_ADPCM** = ``2``
Audio is compressed using IMA ADPCM.
.. rst-class:: classref-item-separator
----
.. _enum_AudioStreamSample_LoopMode:
.. rst-class:: classref-enumeration
enum **LoopMode**:
.. _class_AudioStreamSample_constant_LOOP_DISABLED:
.. rst-class:: classref-enumeration-constant
:ref:`LoopMode<enum_AudioStreamSample_LoopMode>` **LOOP_DISABLED** = ``0``
Audio does not loop.
.. _class_AudioStreamSample_constant_LOOP_FORWARD:
.. rst-class:: classref-enumeration-constant
:ref:`LoopMode<enum_AudioStreamSample_LoopMode>` **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.
.. _class_AudioStreamSample_constant_LOOP_PING_PONG:
.. rst-class:: classref-enumeration-constant
:ref:`LoopMode<enum_AudioStreamSample_LoopMode>` **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.
.. _class_AudioStreamSample_constant_LOOP_BACKWARD:
.. rst-class:: classref-enumeration-constant
:ref:`LoopMode<enum_AudioStreamSample_LoopMode>` **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.
.. rst-class:: classref-section-separator
----
.. rst-class:: classref-descriptions-group
Property Descriptions
---------------------
.. _class_AudioStreamSample_property_data:
.. rst-class:: classref-property
:ref:`PoolByteArray<class_PoolByteArray>` **data** = ``PoolByteArray( )``
.. rst-class:: classref-property-setget
- void **set_data** **(** :ref:`PoolByteArray<class_PoolByteArray>` value **)**
- :ref:`PoolByteArray<class_PoolByteArray>` **get_data** **(** **)**
Contains the audio data in bytes.
\ **Note:** This property expects signed PCM8 data. To convert unsigned PCM8 to signed PCM8, subtract 128 from each byte.
.. rst-class:: classref-item-separator
----
.. _class_AudioStreamSample_property_format:
.. rst-class:: classref-property
:ref:`Format<enum_AudioStreamSample_Format>` **format** = ``0``
.. rst-class:: classref-property-setget
- void **set_format** **(** :ref:`Format<enum_AudioStreamSample_Format>` value **)**
- :ref:`Format<enum_AudioStreamSample_Format>` **get_format** **(** **)**
Audio format. See :ref:`Format<enum_AudioStreamSample_Format>` constants for values.
.. rst-class:: classref-item-separator
----
.. _class_AudioStreamSample_property_loop_begin:
.. rst-class:: classref-property
:ref:`int<class_int>` **loop_begin** = ``0``
.. rst-class:: classref-property-setget
- void **set_loop_begin** **(** :ref:`int<class_int>` value **)**
- :ref:`int<class_int>` **get_loop_begin** **(** **)**
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.
.. rst-class:: classref-item-separator
----
.. _class_AudioStreamSample_property_loop_end:
.. rst-class:: classref-property
:ref:`int<class_int>` **loop_end** = ``0``
.. rst-class:: classref-property-setget
- void **set_loop_end** **(** :ref:`int<class_int>` value **)**
- :ref:`int<class_int>` **get_loop_end** **(** **)**
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.
.. rst-class:: classref-item-separator
----
.. _class_AudioStreamSample_property_loop_mode:
.. rst-class:: classref-property
:ref:`LoopMode<enum_AudioStreamSample_LoopMode>` **loop_mode** = ``0``
.. rst-class:: classref-property-setget
- void **set_loop_mode** **(** :ref:`LoopMode<enum_AudioStreamSample_LoopMode>` value **)**
- :ref:`LoopMode<enum_AudioStreamSample_LoopMode>` **get_loop_mode** **(** **)**
The loop mode. This information will be imported automatically from the WAV file if present. See :ref:`LoopMode<enum_AudioStreamSample_LoopMode>` constants for values.
.. rst-class:: classref-item-separator
----
.. _class_AudioStreamSample_property_mix_rate:
.. rst-class:: classref-property
:ref:`int<class_int>` **mix_rate** = ``44100``
.. rst-class:: classref-property-setget
- void **set_mix_rate** **(** :ref:`int<class_int>` value **)**
- :ref:`int<class_int>` **get_mix_rate** **(** **)**
The sample rate for mixing this audio. Higher values require more storage space, but result in better quality.
In games, common sample rates in use are ``11025``, ``16000``, ``22050``, ``32000``, ``44100``, and ``48000``.
According to the `Nyquist-Shannon sampling theorem <https://en.wikipedia.org/wiki/Nyquist%E2%80%93Shannon_sampling_theorem>`__, there is no quality difference to human hearing when going past 40,000 Hz (since most humans can only hear up to ~20,000 Hz, often less). If you are using lower-pitched sounds such as voices, lower sample rates such as ``32000`` or ``22050`` may be usable with no loss in quality.
.. rst-class:: classref-item-separator
----
.. _class_AudioStreamSample_property_stereo:
.. rst-class:: classref-property
:ref:`bool<class_bool>` **stereo** = ``false``
.. rst-class:: classref-property-setget
- void **set_stereo** **(** :ref:`bool<class_bool>` value **)**
- :ref:`bool<class_bool>` **is_stereo** **(** **)**
If ``true``, audio is stereo.
.. rst-class:: classref-section-separator
----
.. rst-class:: classref-descriptions-group
Method Descriptions
-------------------
.. _class_AudioStreamSample_method_save_to_wav:
.. rst-class:: classref-method
:ref:`Error<enum_@GlobalScope_Error>` **save_to_wav** **(** :ref:`String<class_String>` path **)**
Saves the AudioStreamSample as a WAV file to ``path``. Samples with IMA ADPCM format can't be saved.
\ **Note:** A ``.wav`` extension is automatically appended to ``path`` if it is missing.
.. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
.. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
.. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`
.. |static| replace:: :abbr:`static (This method doesn't need an instance to be called, so it can be called directly using the class name.)`