123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8" />
- <base href="../../../" />
- <script src="page.js"></script>
- <link type="text/css" rel="stylesheet" href="page.css" />
- </head>
- <body>
- [page:Object3D] →
- <h1>[name]</h1>
- <p class="desc">
- Create a non-positional ( global ) audio object.<br /><br />
- This uses the [link:https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API Web Audio API].
- </p>
- <h2>Code Example</h2>
- <code>
- // create an AudioListener and add it to the camera
- const listener = new THREE.AudioListener();
- camera.add( listener );
- // create a global audio source
- const sound = new THREE.Audio( listener );
- // load a sound and set it as the Audio object's buffer
- const audioLoader = new THREE.AudioLoader();
- audioLoader.load( 'sounds/ambient.ogg', function( buffer ) {
- sound.setBuffer( buffer );
- sound.setLoop( true );
- sound.setVolume( 0.5 );
- sound.play();
- });
- </code>
- <h2>Examples</h2>
- <p>
- [example:webaudio_sandbox webaudio / sandbox ]<br />
- [example:webaudio_visualizer webaudio / visualizer ]
- </p>
- <h2>Constructor</h2>
- <h3>[name]( [param:AudioListener listener] )</h3>
- <p>
- listener — (required) [page:AudioListener AudioListener] instance.
- </p>
- <h2>Properties</h2>
- <h3>[property:Boolean autoplay]</h3>
- <p>Whether to start playback automatically. Default is *false*.</p>
- <h3>[property:AudioContext context]</h3>
- <p>The [link:https://developer.mozilla.org/en-US/docs/Web/API/AudioContext AudioContext] of the [page:AudioListener listener] given in the constructor.</p>
- <h3>[property:Number detune]</h3>
- <p>Modify pitch, measured in cents. +/- 100 is a semitone. +/- 1200 is an octave. Default is *0*.</p>
- <h3>[property:Array filters]</h3>
- <p>Represents an array of [link:https://developer.mozilla.org/en-US/docs/Web/API/AudioNode AudioNodes]. Can be used to apply a variety of low-order filters to create more complex sound effects.
- In most cases, the array contains instances of [link:https://developer.mozilla.org/en-US/docs/Web/API/BiquadFilterNode BiquadFilterNodes]. Filters are set via [page:Audio.setFilter] or [page:Audio.setFilters].</p>
- <h3>[property:GainNode gain]</h3>
- <p>A [link:https://developer.mozilla.org/en-US/docs/Web/API/GainNode GainNode] created
- using [link:https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/createGain AudioContext.createGain]().</p>
- <h3>[property:Boolean hasPlaybackControl]</h3>
- <p>Whether playback can be controlled using the [page:Audio.play play](),
- [page:Audio.pause pause]() etc. methods. Default is *true*.</p>
- <h3>[property:Boolean isPlaying]</h3>
- <p>Whether the audio is currently playing.</p>
- <h3>[property:AudioListener listener]</h3>
- <p>A reference to the listener object of this audio.</p>
- <h3>[property:Number playbackRate]</h3>
- <p>Speed of playback. Default is *1*.</p>
- <h3>[property:Number offset]</h3>
- <p>An offset to the time within the audio buffer that playback should begin. Same as the *offset* parameter of [link:https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/start AudioBufferSourceNode.start](). Default is *0*.</p>
- <h3>[property:Number duration]</h3>
- <p>Overrides the duration of the audio. Same as the *duration* parameter of [link:https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/start AudioBufferSourceNode.start](). Default is *undefined* to play the whole buffer.</p>
- <h3>[property:String source]</h3>
- <p>An [link:https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode AudioBufferSourceNode] created
- using [link:https://developer.mozilla.org/en-US/docs/Web/API/AudioContext/createBufferSource AudioContext.createBufferSource]().</p>
- <h3>[property:String sourceType]</h3>
- <p>Type of the audio source. Default is string 'empty'.</p>
- <h3>[property:String type]</h3>
- <p>String denoting the type, set to 'Audio'.</p>
- <h2>Methods</h2>
- <h3>[method:Audio connect]()</h3>
- <p>
- Connect to the [page:Audio.source]. This is used internally on initialisation and when
- setting / removing filters.
- </p>
- <h3>[method:Audio disconnect]()</h3>
- <p>
- Disconnect from the [page:Audio.source]. This is used internally when
- setting / removing filters.
- </p>
- <h3>[method:BiquadFilterNode getFilter]()</h3>
- <p>
- Returns the first element of the [page:Audio.filters filters] array.
- </p>
- <h3>[method:Array getFilters]()</h3>
- <p>
- Returns the [page:Audio.filters filters] array.
- </p>
- <h3>[method:Boolean getLoop]()</h3>
- <p>
- Return the value of [link:https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/loop source.loop]
- (whether playback should loop).
- </p>
- <h3>[method:GainNode getOutput]()</h3>
- <p>
- Return the [page:Audio.gain gainNode].
- </p>
- <h3>[method:Float getPlaybackRate]()</h3>
- <p>
- Return the value of [page:Audio.playbackRate playbackRate].
- </p>
- <h3>[method:Float getVolume]( value )</h3>
- <p>
- Return the current volume.
- </p>
- <h3>[method:Audio play]( delay )</h3>
- <p>
- If [page:Audio.hasPlaybackControl hasPlaybackControl] is true, starts playback.
- </p>
- <h3>[method:Audio pause]()</h3>
- <p>
- If [page:Audio.hasPlaybackControl hasPlaybackControl] is true, pauses playback.
- </p>
- <h3>[method:null onEnded]()</h3>
- <p>
- Called automatically when playback finished.
- </p>
- <h3>[method:Audio setBuffer]( audioBuffer )</h3>
- <p>
- Setup the [page:Audio.source source] to the audioBuffer, and sets [page:Audio.sourceType sourceType] to 'buffer'.<br />
- If [page:Audio.autoplay autoplay], also starts playback.
- </p>
- <h3>[method:Audio setFilter]( filter )</h3>
- <p>
- Applies a single filter node to the audio.
- </p>
- <h3>[method:Audio setFilters]( [param:Array value] )</h3>
- <p>
- value - arrays of filters.<br />
- Applies an array of filter nodes to the audio.
- </p>
- <h3>[method:Audio setLoop]( [param:Boolean value] )</h3>
- <p>
- Set [link:https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/loop source.loop] to *value*
- (whether playback should loop).
- </p>
- <h3>[method:Audio setLoopStart]( [param:Float value] )</h3>
- <p>
- Set [link:https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/loopStart source.loopStart] to *value*.
- </p>
- <h3>[method:Audio setLoopEnd]( [param:Float value] )</h3>
- <p>
- Set [link:https://developer.mozilla.org/en-US/docs/Web/API/AudioBufferSourceNode/loopEnd source.loopEnd] to *value*.
- </p>
- <h3>[method:Audio setMediaElementSource]( mediaElement )</h3>
- <p>
- Applies the given object of type [link:https://developer.mozilla.org/en-US/docs/Web/API/HTMLMediaElement HTMLMediaElement] as the source of this audio.<br />
- Also sets [page:Audio.hasPlaybackControl hasPlaybackControl] to false.
- </p>
- <h3>[method:Audio setMediaStreamSource]( mediaStream )</h3>
- <p>
- Applies the given object of type [link:https://developer.mozilla.org/en-US/docs/Web/API/MediaStream MediaStream] as the source of this audio.<br />
- Also sets [page:Audio.hasPlaybackControl hasPlaybackControl] to false.
- </p>
- <h3>[method:Audio setNodeSource]( audioNode )</h3>
- <p>
- Setup the [page:Audio.source source] to the audioBuffer, and sets [page:Audio.sourceType sourceType] to 'audioNode'.<br />
- Also sets [page:Audio.hasPlaybackControl hasPlaybackControl] to false.
- </p>
- <h3>[method:Audio setPlaybackRate]( [param:Float value] )</h3>
- <p>
- If [page:Audio.hasPlaybackControl hasPlaybackControl] is enabled, set the [page:Audio.playbackRate playbackRate] to *value*.
- </p>
- <h3>[method:Audio setVolume]( [param:Float value] )</h3>
- <p>
- Set the volume.
- </p>
- <h3>[method:Audio stop]()</h3>
- <p>
- If [page:Audio.hasPlaybackControl hasPlaybackControl] is enabled, stops playback.
- </p>
- <h2>Source</h2>
- <p>
- [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js]
- </p>
- </body>
- </html>
|