I am recording audio using AudioRecord clas开发者_如何学Pythons.I want to record audio into a particular file in my asset folder or resource folder.I think there is no problem in recording.but while r
From the below codeI can create test.pcm file but I couldn\'t play it in mobile or pc. I have also tired with test.mp3, test.wav and test.raw. I got toast that player doesn\'t support this type of fi
I\'m streaming the mic audio between two devices, everything is working but i have a bad echo. Here what i\'m doing
AudioRecord has methods to get the data as byte[], short[] and ByteBuffer. I can\'t see anything in the documentation which says how many bits per sample开发者_Go百科 are used.
I\'m trying to develop an aplication like iRig for android, so the first step is to capture the mic input and play it at the same time.
Hej, im currently trying 开发者_如何学Goto get AudioRecord to work. Because I need it in a bigger project. But it seems to mess up a lot.
My problem is simple to explain -- I am trying to create a AudioRecord object but it fails to initialize (ie after the constructor, getState returns 0, indicating failure).I am running this from Eclip
I\'m having troubles using AudioRecord. An example using some of the code derived from the splmeter project:
I\'m having this problem only on Motorola Milestone. Code: // init recorder recordInstance = new AudioRecord(MediaRecorder.AudioSource.MIC,
My Android Java Application needs to record audio data into the RAM and process it. This is why I use the class \"AudioRecord\" and not the \"MediaRecorder\" (records only to file).