Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ASP.NET: Record Sound From A Web App?

I'm contemplating adding a voice recording to some posts on my site. I'm wondering if there is an ASP.NET library out there that will allow me to:

  1. Press a button to start recording
  2. Record what I'm saying through my comp's built in microphone
  3. Save the file as a .wav or some other popular sound file

As of now, I will be the sole user of this function, but it would still be nice to have in my bag of tricks in case I want to pull it out later for a client.

like image 971
Jason Avatar asked Oct 15 '22 14:10

Jason


People also ask

How do I record audio from an app?

Swipe down from the top of your screen to see the quick settings tiles and tap the screen recorder button. A floating bubble will appear with a record and microphone button. If the latter is crossed out, you're recording internal audio, and if it's not, you get sound straight from your phone's mic.


1 Answers

It is not doable without the help of a plugin. Browsers simply don't support voice recording. You could choose from:

  • Make a SilverLight applet.
  • The flashPlayer can record too.
  • find a java Applet that can do this.
  • Make an activeX Plugin (since you have affinity to asp)
  • use your os provided voice recorder, save the file and upload it. Playback via browser is easy
like image 128
AndreasT Avatar answered Oct 19 '22 02:10

AndreasT