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)
How do I sample audio from microphone in javascript, for microphone animation?
I am recording audio from microphone in a browser using MediaStream Recording API. I would like to provide user with a visual feedback of a pulsating microphone icon. Something like this, only tied to...
Irina Rapoport
Votes: 0
Answers: 0
Audio onended not functioning
The audio plays when the user interacts with the window however when the audio ends it doesnt log 'audio ended'
let audio = new Audio();
window.onclick = () => {
if (audio.paused) pickMusic(...
DrakoHyena
Votes: 0
Answers: 1
Convert Blob audio file to mp3 type in typescript
I'm trying to convert a blob audio file to .mp3 type which is generated from MediaRecorder it is returning with webm type and I have tried other types in MimeType(attribute in MediaRecorder to set the...
I. Albuquerque
Votes: 0
Answers: 0
How do I stream an audio file to nodejs while it's still being recorded?
I am using MediaStream Recording API to record audio in the browser, like this (courtesy https://github.com/bryanjenningz/record-audio):
const recordAudio = () =>
new Promise(async r...
Irina Rapoport
Votes: 0
Answers: 1