python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Web Audio. How to get currenly playing audio stream?
I want to create a browser extension and I need to read audio stream from the page player. There is no audio tag in the page. But music is playing, so how can I read this music stream using JS?
FlashlightED
Votes: 0
Answers: 0
How to get the sample rate of a microphone/input device using Javascript?
When you create a new AudioContext it sets the sample rate to the default output device. This is expected default behavior. Does anyone know if there is there any way to get the sample rate of the inp...
avoliva
Votes: 0
Answers: 1
Cannot get HTML audio element to play on Chrome Android (no progress unless muted)
I'm posting this in case others have a similar problem.
I have a web app that uses the <audio> element. When the user clicks a button, I set the src attribute on the <audio> element to a U...
codedread
Votes: 0
Answers: 1
How can I play an audio file at specified times in JavaScript AudioContext?
How can I play an audio file at specified times in JavaScript AudioContext ?
const context = new AudioContext();
const source = context.createBufferSource();
const audioBuffer = await fetc...
Hossein Daneshfar
Votes: 0
Answers: 1