Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Recording Audio via the Web for an Intranet Solution

What is the best (cheapest, most open) way to record audio via a web page. Then keep that recording as MP3 format and make it available via a unique ID / URL.

I guess Flash-based plug-in would be best. I'm thinking of something that works like Odeo, but this would be for Intranet-only usage. I can't rely and public URLs or Services.

I'm looking for something I can cobble together from existing components (Open Source) projects.

like image 593
BuddyJoe Avatar asked Mar 16 '09 19:03

BuddyJoe


2 Answers

You need a service server side to record audio, this could be hosted on one of you network's machines (unless you are doing it via AIR locally for each computer).

FMS by Adobe provides the option for recording and playing streams.

But first thing, you should have a look on Red5, which is an alternative free service :

http://www.red5.org/

There are samples on their website and you can find some on google as well. here is one :

http://fms.denniehoopingarner.com/

Here's a quick tutorial about recording locally with AIR:

http://seeing-is-believing.blogspot.com/2008/05/capture-and-write-audio-stream-with.html

like image 84
Theo.T Avatar answered Nov 15 '22 07:11

Theo.T


Here's a tutorial on using the microphone in Flash:

http://www.kirupa.com/developer/actionscript/microphone.htm

Documentation the Flash Microphone object:

http://www.adobe.com/support/flash/action_scripts/actionscript_dictionary/actionscript_dictionary479.html

like image 36
Keltex Avatar answered Nov 15 '22 08:11

Keltex