2017-09-12 22:42:36 +02:00
<?xml version="1.0" encoding="UTF-8" ?>
2023-07-05 22:07:03 +02:00
<class name= "AudioStream" inherits= "Resource" version= "4.2" xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation= "../class.xsd" >
2017-09-12 22:42:36 +02:00
<brief_description >
Base class for audio streams.
</brief_description>
<description >
2022-07-28 20:34:41 +02:00
Base class for audio streams. Audio streams are used for sound effects and music playback, and support WAV (via [AudioStreamWAV]) and Ogg (via [AudioStreamOggVorbis]) file formats.
2017-09-12 22:42:36 +02:00
</description>
<tutorials >
2021-11-15 10:43:07 +01:00
<link title= "Audio streams" > $DOCS_URL/tutorials/audio/audio_streams.html</link>
2020-10-01 10:34:47 +02:00
<link title= "Audio Generator Demo" > https://godotengine.org/asset-library/asset/526</link>
<link title= "Audio Mic Record Demo" > https://godotengine.org/asset-library/asset/527</link>
<link title= "Audio Spectrum Demo" > https://godotengine.org/asset-library/asset/528</link>
2017-09-12 22:42:36 +02:00
</tutorials>
<methods >
2022-07-21 01:00:58 +02:00
<method name= "_get_beat_count" qualifiers= "virtual const" >
<return type= "int" />
<description >
</description>
</method>
<method name= "_get_bpm" qualifiers= "virtual const" >
<return type= "float" />
<description >
</description>
</method>
2021-08-23 19:53:27 +02:00
<method name= "_get_length" qualifiers= "virtual const" >
<return type= "float" />
<description >
</description>
</method>
<method name= "_get_stream_name" qualifiers= "virtual const" >
<return type= "String" />
<description >
</description>
</method>
2022-07-21 01:00:58 +02:00
<method name= "_instantiate_playback" qualifiers= "virtual const" >
2021-08-23 19:53:27 +02:00
<return type= "AudioStreamPlayback" />
<description >
</description>
</method>
2021-08-28 06:51:03 +02:00
<method name= "_is_monophonic" qualifiers= "virtual const" >
<return type= "bool" />
<description >
</description>
</method>
2018-02-19 10:47:16 +01:00
<method name= "get_length" qualifiers= "const" >
2021-07-30 15:28:05 +02:00
<return type= "float" />
2018-02-19 10:47:16 +01:00
<description >
2018-07-31 21:20:27 +02:00
Returns the length of the audio stream in seconds.
2018-02-19 10:47:16 +01:00
</description>
</method>
2022-07-21 01:00:58 +02:00
<method name= "instantiate_playback" >
2022-02-11 06:01:04 +01:00
<return type= "AudioStreamPlayback" />
<description >
2022-07-21 01:00:58 +02:00
Returns an AudioStreamPlayback. Useful for when you want to extend [method _instantiate_playback] but call [method instantiate_playback] from an internally held AudioStream subresource. An example of this can be found in the source files for [code]AudioStreamRandomPitch::instantiate_playback[/code].
2022-02-11 06:01:04 +01:00
</description>
</method>
2021-08-28 06:51:03 +02:00
<method name= "is_monophonic" qualifiers= "const" >
<return type= "bool" />
<description >
Returns true if this audio stream only supports monophonic playback, or false if the audio stream supports polyphony.
</description>
</method>
2017-09-12 22:42:36 +02:00
</methods>
</class>