Hello all,
I have upgraded audio-recorder for Ubuntu 12.10 and Fedora 18.
It now uses Gstreamer 1.0!
Get ready-made packages for Quantal from:
https://launchpad.net/~osmoma/+archive/audio-recorder
Source code:
https://launchpad.net/audio-recorder
Test and love it.
InCall Recorder (1.0)-Free
Overview:
Our advantages over other apps:
Two in one: Mp3 format calls Recording and high-quality tape recorder.
Choose when to start recording, save battery power and reduce size of the audio file.
I am recording an audio file on my broadcast but I am not getting any error but my recorder.stop() is never called heres my code:
String file_name= "recording";
audiofile = File.createTempFile(file_name, ".3gp", sampleDir);
String path=Environment.getExternalStorageDirectory().getAbsolutePath();
//recorder = null;
int audioSource = MediaRecorder.AudioSource.VOICE
I have installed Sound Recorder to record sounds played by my computer.
sudo apt-add-repository ppa:osmoma/audio-recorder
sudo apt-get update
sudo apt-get install audio-recorder
I want it to create separate files after several seconds of silence.
It has a lot of possible settings especially by activating the "timer".
But stopping after silence and restarting recording if sound is played w
Hi every one needed a voice recorder because its now a days a major need for anybody. You need sometime a voice recorder and your mobile android voice recorder not good . Do not feel worry i have a voice recorder today. Amazing application for android mobile phones. Do not miss it .
Does anyone know how to record audio from the internet? I'm trying to use Sound Recorder, but I get so much static on the recording, that it is unusable. I've tried to mute some of the inputs with the Gnome ALSA Mixer, but that hasn't seemed to work. Sound recorder worked fine under 11.10, but since the upgrade to 12.04, I have been unable to get any clean recordings.
Simple Voice Recorder
Current Version: 1.2
Simple Voice Recorder is a obviously simple and easy to use audio & voice recorder.
In my code i can't set camcoder profile
private void initRecoreder() {
File dir = new File(Environment.getExternalStorageDirectory().getPath()
+ "/Registrator/Video/");
recorder.setProfile(CamcorderProfile.get(CamcorderProfile.QUALITY_HIGH));
recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
recorder.setMaxDuration(900000);// 15 min
if (!dir.exists()
I am developing a GPS app in which User can tap anywhere onscreen to record an audio snippet that then gets attached to a track as it logs. I'm using media recorder to do this right inside my app, as opposed to issuing an implicit intent. This way, User can operate "eyes-free", as follows.