Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Audio capturing with HTML5 [closed]

I've tried to see if there's a way to record audio with HTML5 to no avail. I tried using this example but it didn't work. I'm guessing he really meant it when he said that it is not supported by any browser yet.

Am I missing something? perhaps it is already possible? What are my options to record audio on a browser-based application?

Open Source only please :)

like image 998
Asaf Avatar asked Nov 19 '10 16:11

Asaf


People also ask

Which of the following audio formats is not supported by HTML 5?

The current HTML5 draft specification does not specify which audio formats browsers should support in the audio tag. But most commonly used audio formats are ogg, mp3 and wav. Your browser does not support the element.

How do you input audio in HTML?

The <source> element allows you to specify alternative audio files which the browser may choose from. The browser will use the first recognized format. The text between the <audio> and </audio> tags will only be displayed in browsers that do not support the <audio> element.


1 Answers

You might wanna have a look at HTML Media Capture and its API.

Ericsson labs already achieved this, see: here (Note: Note that the device element and the related APIs are not available in any browser yet, and the APIs may change before this happens.) But it gives you a rough idea about how it's done.

I am currently working on something like this myself, see: here.

like image 69
Wouter Dorgelo Avatar answered Sep 28 '22 07:09

Wouter Dorgelo