We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b2bf5c commit 9a3ded2Copy full SHA for 9a3ded2
src/audioin.js
@@ -55,7 +55,10 @@ class AudioIn {
55
* @property {GainNode} input
56
*/
57
this.input = p5sound.audiocontext.createGain();
58
+
59
/**
60
+ * Get audio from an input, i.e. your computer's microphone.
61
+ *
62
* @property {GainNode} output
63
64
this.output = p5sound.audiocontext.createGain();
@@ -64,10 +67,12 @@ class AudioIn {
67
* @property {MediaStream|null} stream
65
68
66
69
this.stream = null;
70
71
72
* @property {MediaStreamAudioSourceNode|null} mediaStream
73
74
this.mediaStream = null;
75
76
77
* @property {Number|null} currentSource
78
0 commit comments