java Programming Glossary: mediarecorder
how to convert or record .wav file in 16khz 16bit mono little-endian? http://stackoverflow.com/questions/12260476/how-to-convert-or-record-wav-file-in-16khz-16bit-mono-little-endian import android.media.AudioRecord import android.media.MediaRecorder import android.os.Bundle import android.os.Environment import.. private void startRecording recorder new AudioRecord MediaRecorder.AudioSource.MIC RECORDER_SAMPLERATE RECORDER_CHANNELS RECORDER_AUDIO_ENCODING..
How to encode a WAV to a mp3 on a Android device http://stackoverflow.com/questions/3641920/how-to-encode-a-wav-to-a-mp3-on-a-android-device encode this PCM data as a mp3 to save to the sdcard. The MediaRecorder object can encode audio coming from the microphone into various..
Android AudioRecord class - process live mic audio quickly, set up callback function http://stackoverflow.com/questions/4525206/android-audiorecord-class-process-live-mic-audio-quickly-set-up-callback-func than about 500 ms. Android offers another class called MediaRecorder but it doesn't support streaming and I may want to stream live..
Android: sample microphone without recording to get live amplitude/level? http://stackoverflow.com/questions/4777060/android-sample-microphone-without-recording-to-get-live-amplitude-level get the amplitude level of a microphone on Android like so MediaRecorder recorder new MediaRecorder recorder.setAudioSource MediaRecorder.AudioSource.MIC.. a microphone on Android like so MediaRecorder recorder new MediaRecorder recorder.setAudioSource MediaRecorder.AudioSource.MIC Timer.. recorder new MediaRecorder recorder.setAudioSource MediaRecorder.AudioSource.MIC Timer timer new Timer timer.scheduleAtFixedRate..
How to pause/resume a recording created with mediarecorder? http://stackoverflow.com/questions/8007682/how-to-pause-resume-a-recording-created-with-mediarecorder or should i give up on mediarecorder . code private MediaRecorder media_recorder private String file_path null public void startRecording.. void startRecording path file_path path media_recorder new MediaRecorder media_recorder.setAudioSource MediaRecorder.AudioSource.MIC.. new MediaRecorder media_recorder.setAudioSource MediaRecorder.AudioSource.MIC media_recorder.setOutputFormat MediaRecorder.OutputFormat.MPEG_4..
Video processing in Android http://stackoverflow.com/questions/8620560/video-processing-in-android video capture capabilities are wrapped up tightly into the MediaRecorder which controls the process from frame capture all the way to..
|