Link to home
Start Free TrialLog in
Avatar of wizardintraining
wizardintraining

asked on

audio recording through web application

I need to write a program that allows users to record audio through a web interface, then stores it on a server.



I got started in Java making an applet but I'm learning that recording audio through an applet is problematic/notpossible.

Is that correct?

If so what languages handle this kind of thing best? Specifically for the web interface.

I basically need to take in these audio recordings through the web app and then store them.
ASKER CERTIFIED SOLUTION
Avatar of CEHJ
CEHJ
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of wizardintraining
wizardintraining

ASKER

So what do I need to import into my applet to use audio recording methods?
:)

Anything from javax.sound.sampled.* (for which you'll find Oracle/Sun tutorials online) or specialist 3rd party APIs
Ok thank you