class_audioeffectrecord.rst 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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 AudioEffectRecord.xml source instead.
  4. .. The source is found in doc/classes or modules/<name>/doc_classes.
  5. .. _class_AudioEffectRecord:
  6. AudioEffectRecord
  7. =================
  8. **Inherits:** :ref:`AudioEffect<class_AudioEffect>` **<** :ref:`Resource<class_Resource>` **<** :ref:`Reference<class_Reference>` **<** :ref:`Object<class_Object>`
  9. Audio effect used for recording sound from a microphone.
  10. Description
  11. -----------
  12. Allows the user to record sound from a microphone. It sets and gets the format in which the audio file will be recorded (8-bit, 16-bit, or compressed). It checks whether or not the recording is active, and if it is, records the sound. It then returns the recorded sample.
  13. Tutorials
  14. ---------
  15. - :doc:`../tutorials/audio/recording_with_microphone`
  16. - `Audio Mic Record Demo <https://godotengine.org/asset-library/asset/527>`_
  17. Properties
  18. ----------
  19. +----------------------------------------------+--------------------------------------------------------+-------+
  20. | :ref:`Format<enum_AudioStreamSample_Format>` | :ref:`format<class_AudioEffectRecord_property_format>` | ``1`` |
  21. +----------------------------------------------+--------------------------------------------------------+-------+
  22. Methods
  23. -------
  24. +---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------+
  25. | :ref:`AudioStreamSample<class_AudioStreamSample>` | :ref:`get_recording<class_AudioEffectRecord_method_get_recording>` **(** **)** |const| |
  26. +---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------+
  27. | :ref:`bool<class_bool>` | :ref:`is_recording_active<class_AudioEffectRecord_method_is_recording_active>` **(** **)** |const| |
  28. +---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------+
  29. | void | :ref:`set_recording_active<class_AudioEffectRecord_method_set_recording_active>` **(** :ref:`bool<class_bool>` record **)** |
  30. +---------------------------------------------------+-----------------------------------------------------------------------------------------------------------------------------+
  31. Property Descriptions
  32. ---------------------
  33. .. _class_AudioEffectRecord_property_format:
  34. - :ref:`Format<enum_AudioStreamSample_Format>` **format**
  35. +-----------+-------------------+
  36. | *Default* | ``1`` |
  37. +-----------+-------------------+
  38. | *Setter* | set_format(value) |
  39. +-----------+-------------------+
  40. | *Getter* | get_format() |
  41. +-----------+-------------------+
  42. Specifies the format in which the sample will be recorded. See :ref:`Format<enum_AudioStreamSample_Format>` for available formats.
  43. Method Descriptions
  44. -------------------
  45. .. _class_AudioEffectRecord_method_get_recording:
  46. - :ref:`AudioStreamSample<class_AudioStreamSample>` **get_recording** **(** **)** |const|
  47. Returns the recorded sample.
  48. ----
  49. .. _class_AudioEffectRecord_method_is_recording_active:
  50. - :ref:`bool<class_bool>` **is_recording_active** **(** **)** |const|
  51. Returns whether the recording is active or not.
  52. ----
  53. .. _class_AudioEffectRecord_method_set_recording_active:
  54. - void **set_recording_active** **(** :ref:`bool<class_bool>` record **)**
  55. If ``true``, the sound will be recorded. Note that restarting the recording will remove the previously recorded sample.
  56. .. |virtual| replace:: :abbr:`virtual (This method should typically be overridden by the user to have any effect.)`
  57. .. |const| replace:: :abbr:`const (This method has no side effects. It doesn't modify any of the instance's member variables.)`
  58. .. |vararg| replace:: :abbr:`vararg (This method accepts any number of arguments after the ones described here.)`