Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to record .wav format file in android

Tags:

android

I would like to record .wav files using android. is there any way to do this?

like image 754
Shekhar Avatar asked Mar 09 '11 12:03

Shekhar


1 Answers

After a quick google I found out that there is a direct support for wave recording. Most common wave format is PCM. The android.media.AudioRecord supports PCM output. You only need to write this to a file then.

  • AudioRecord

After the file you then create you must program your own convertor to wave (or look for an online library for that).

If you like an app that is ready to go and record in wave you can download this app:

  • uk.ac.cam.cl.dtg.android.audionetworking.hertz

Extra link:

  • Subject: [android-developers] Re: How to record audio in WAV format?
like image 65
SynerCoder Avatar answered Oct 18 '22 19:10

SynerCoder