views:

124

answers:

1

Are there any options for recording audio in a GWT application ?

Options seem to include flex, perhaps a java applet or some other form of flash ?

+2  A: 

Unfortunately it doesn't appear that there is any way to record audio using just JavaScript currently, so it won't be possible using GWT alone (since the GWT compiler only produces JavaScript).

However, Mozilla's Jetpack project includes a proposed Audio API that may make it possible. Keep in mind that this is a cutting-edge feature and will probably not be widely supported for a very long time.

This answer might be helpful, since it's asking a similar question: http://stackoverflow.com/questions/64010/how-does-one-record-audio-from-a-javascript-based-webapp

Jason Hall