0

I would like to know if it's possible with jquery to get sound produced by input of the audio card like softwares such as cubase and other.

Thanks in advance.

empiric
  • 7,449
  • 6
  • 35
  • 44
Namnam
  • 11
  • 1
  • 1
    The [Web Audio API](https://developer.mozilla.org/en-US/docs/Web/API/Web_Audio_API) might contain useful information about this. For everything else, the question appears to be too broad and unspecific – empiric Jun 18 '18 at 15:09

1 Answers1

0

I'm not sure if jQuery has a way to do this, but javascript does have a way to access the microphone. If that's possible, then I don't see why it couldn't be possible to mimic your sound card input as a microphone and capture that data into the browser.

See this answer for more information here about how to mimic an input device.

Matt D
  • 387
  • 1
  • 4
  • 14