Reputation: 21032
I've found things that let you record audio in a browser and then save it to a server. Is there anything out there that lets you do streaming recording -- that is, sending the audio in chunks to a server rather than waiting until after the entire recording has been done?
I'm wondering this because I'd like to record a long-ish (15-20 min) length audio recording and I want to avoid the risk of something going wrong after the recording, or facing an audio file that is too large to easily upload.
On the client/browser end ideally we're talking Flash (obviously as soon as there is any kind of support in HTML5 we'll switch to that) and then on the server end pretty much anything that will run on a Linux box, although something in Python would be preferred.
Upvotes: 1
Views: 1138
Reputation: 288298
getUserMedia
allows this and live streaming to the server. However, support is sparse, and you'll need a wrapper to get the current beta versions of Chrome to support it. Other than that, only Opera Betas support it at the moment.
Upvotes: 1