views:

105

answers:

2

Hello,

On the client side of my website i want to be able to allow the user to record a short audio clip, around 20 seconds duration and store this recorded audio on the server. Is there any way to do this using any client side technologies like javascript or flash ?

Thank You.

+1  A: 

I'm sure there is a small flash application that enables users to record audio from their computer, but you will need some kind of server script that takes the recorded audio, and saves it on the server.

Emil Stenström
A: 

See this Stackoverflow question

OMG Ponies
Thanks for the reply . But the solutions suggest using Flash Media Server, which records in FLV format . Any way to record a wav file ?
Flash is the way to go. It's small, there is a free FMS software distribution provided by Adobe (10 connections), and it's what I used for a project where we implemented "direct, in-browser, audio recording and playback".
Michael
OMG Ponies