Liking cljdoc? Tell your friends :D
ClojureScript only.

web.audio.MediaStreamAudioDestinationNode

Inherits properties from its parent, web.audio.AudioNode.

Inherits properties from its parent, `web.audio.AudioNode`.
raw docstring

constructorcljs

(constructor & args)

Constructor.

The MediaStreamAudioDestinationNode() constructor of the Web Audio API creates a new web.audio.MediaStreamAudioDestinationNode object instance.

Inherits parameters from the web.audio.AudioNodeOptions dictionary.

context An web.audio.AudioContext representing the audio context you want the node to be associated with. options Optional An AudioNodeOptions dictionary object defining the properties you want the MediaStreamAudioDestinationNode to have.

See also: https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode

Constructor.

The MediaStreamAudioDestinationNode() constructor of the Web Audio API creates a new `web.audio.MediaStreamAudioDestinationNode` object instance.

Inherits parameters from the `web.audio.AudioNodeOptions` dictionary.


context
An `web.audio.AudioContext` representing the audio context you want the node to be associated with.
options Optional
An AudioNodeOptions dictionary object defining the properties you want the MediaStreamAudioDestinationNode to have.

See also: `https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioDestinationNode/MediaStreamAudioDestinationNode`
sourceraw docstring

set-stream!cljs

(set-stream! this val)

Property.

A web.streams.MediaStream.

var audioCtx = new AudioContext(); var destination = audioCtx.createMediaStreamDestination(); var myStream = destination.stream;

See also: https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioDestinationNode/stream

Property.

A `web.streams.MediaStream`.

`var audioCtx = new AudioContext();
var destination = audioCtx.createMediaStreamDestination();
var myStream = destination.stream;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioDestinationNode/stream`
sourceraw docstring

streamcljs

(stream this)

Property.

A web.streams.MediaStream.

var audioCtx = new AudioContext(); var destination = audioCtx.createMediaStreamDestination(); var myStream = destination.stream;

See also: https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioDestinationNode/stream

Property.

A `web.streams.MediaStream`.

`var audioCtx = new AudioContext();
var destination = audioCtx.createMediaStreamDestination();
var myStream = destination.stream;`

See also: `https://developer.mozilla.org/en-US/docs/Web/API/MediaStreamAudioDestinationNode/stream`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close