Android :: Fusion Recorder - Audio Recorder
Nov 6, 2010
We are a new company that is focused on Android development. We have completed and uploaded our Fusion Recorder application into the Android Market. We've worked hard to make sure that it is a reliable product and that it contains a solid set of features for version one (v.1). We are currently working on the designs for our our Website, facebook, and Twitter pages since posting our application. We look forward to adding features as we move forward.
We are interested in feedback from users and want to make sure our product(s) are as defect free as possible. So, if you do run into an issue, big or small, please shoot us an email at our support email.
Here are a some screen shots that show off the Fusion Recorder User Interface.
Also, if you don't see a feature you like please email that to us so we can add it to our Feature Request database. It may not be the next week we add it (we take testing seriously, which takes time). But we definitely will review such requests, which we understand are valuable.
Also, we were able to test this on a few Android Smartphones, but we are looking forward to seeing if there are any issues on phones we have not tested on. So, if you run into an issue please include, at the least, the Android Smartphone manufacturer, product name, Android OS version number (e.g. Android 2.2).
View 4 Replies
Aug 3, 2010
What would y'all recommend? I see tons of them on AppBrain, but it doesn't seem that any of them do both things, and the few that do have ridiculous time limits o the records like 2-4 minutes.
View 7 Replies
View Related
May 28, 2009
With version 1.5, I keep getting this error
05-29 01:36:39.440: ERROR/AudioRecord-JNI(1280): Error creating AudioRecord instance: initialization check failed.
05-29 01:36:39.450: ERROR/AudioRecord-Java(1280): [android.media.AudioRecord] Error code -20 when initializing native AudioRecord object.
and then:
05-29 01:36:39.630: ERROR/AndroidRuntime(1280): java.lang.IllegalStateException: startRecording() called on an uninitialized AudioRecord.
My code:
ar_test = new AudioRecord(MediaRecorder.AudioSource.MIC, 11025,
AudioFormat.CHANNEL_CONFIGURATION_MONO, AudioFormat.ENCODING_PCM_8BIT, 200000);
ar_test.read(ar_buffer, 0, 150000); ar_test.startRecording();
toneTimer.setTimer(10000); toneTimer.countdownTimer(); ar_test.stop();
View 4 Replies
View Related
Jun 15, 2010
The audio being recorded is horrible. Will there ever be a fix for that because I'm considering taking my EVO back.
View 3 Replies
View Related
Jun 4, 2010
I'm new in Android development and I have the next question/problem. I'm playing around with the Media Recorder class to record just audio from the microphone. I'm following the steps indicated in the official ://developer.android.com/reference/android/media/MediaRecorder.html
So I have a method that initializes and configure the Media Recorder object in order to start recording. Here you have the code:
//initializes audio recorder
//configure the input sources
mrecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
//set the output format
mrecorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
//set the audio encoding
mrecorder.setAudioEncoder(MediaRecorder.AudioEncoder.DEFAULT)
View 1 Replies
View Related
Jun 9, 2010
I'm new in Android development and I have the next question/problem. I'm playing around with the Media Recorder class to record just audio from the microphone. I'm following the steps indicated in the official site:
http://developer.android.com/reference/android/media/MediaRecorder.html
So I have a method that initializes and configure the MediaRecorder object in order to start recording. Here you have the code:
this.mr = new MediaRecorder();
this.mr.setAudioSource(MediaRecorder.AudioSource.MIC);
this.mr.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP);
this.mr.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
this.mr.setOutputFile(this.path + this.fileName);
try { this.mr.prepare();
} catch (IllegalStateException e) { Log.d("Syso", e.toString());
e.printStackTrace();
} catch (IOException e) { Log.d("Syso", e.toString());
e.printStackTrace();
}
When I execute this code in the simulator, thanks to logcat, I can see that the method setAudioSource(MediaRecorder.AudioSource.MIC) gives the next error (with the tag audio_ipunt) when it is called:
ERROR/audio_input(34): unsupported parameter: x-pvmf/media-input-node/cap-config-interface;valtype=key_specific_value
ERROR/audio_input(34): VerifyAndSetParameter failed
And then when the method prepare() is called, I get the another error again:
ERROR/PVOMXEncNode(34): PVMFOMXEncNode-Audio_AMRNB::DoPrepare(): Got Component OMX.PV.amrencnb handle
If I start to record by calling the method start(). I get lots of messages saying:
AudioFlinger(34):RecordThread: buffer overflow
Then after stop and release, I can see that a file has been created, but it doesn't seem that it been well recorded. Anyway, if I try this in a real device I can record with no problems, but I CAN'T play what I just recorded. I guess that the key is in these errors that I've mentioned before.
View 5 Replies
View Related
Aug 22, 2010
I recorded some stuff with me on the drums on the native Voice Recorder App. 1 I can't find the file on my SD card, and 2 If I email it to myself it is in the format .amr which i don't recognize.3. Is there a better voice recorder? Better quality, different format files, editing, or easier to export?
View 3 Replies
View Related
Apr 10, 2010
I'm having a hard time finding an app that functions as a Voice Recorder, but it also attempts to convert your recording into text. This would be very help imfho.
View 1 Replies
View Related
Apr 10, 2009
Would be more useful than AMR / MP4. Also would be compatible with the very handy source code for RingDroid.
View 2 Replies
View Related
Sep 19, 2010
I am looking for an automatic conversation recorder application. What I need the application to do is to constantly 'listen' on the microphone, and as soon somebody around starts speaking (the noise level increases to high) it automatically starts to record the conversation. Once there are no more sounds coming in for e.g. a few minutes, it stops recording.
View 13 Replies
View Related
Oct 10, 2010
Are ther any existing Android application, working similar to the following working steps
1. Automatic receive the call, then
2. Play some sound out to the caller, wait for DTMF response, then
3. Record the caller sound (in the case that they permit, by pressing 1 as DTMF response)
4. Callee can play back the recoreded sound later.If there aren't any, is it possible now for provided Android SDK to develop it.
View 1 Replies
View Related
Jun 8, 2010
Any way to record phone calls beside google voice?
View 11 Replies
View Related
Mar 28, 2010
I have a situation where my MediaRecorder instance causes a segfault. I'm working with a HTC Hero, Android 1.5+APIs. In the log i see (after the segfault announcement) a register dump and then a numbered list #00 libmedia_jni.so to #18 linker, then a stack trace. My Eclipse won't let me copy the log buffer, but I've done three screen captures that sum it up. If you have time to examine, send me a direct e-mail.<pre><code> if (mRecorder == null) mRecorder = new MediaRecorder(); mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC); mRecorder.setVideoSource(MediaRecorder.VideoSource.CAMERA); mRecorder.setOutputFormat(MediaRecorder.OutputFormat.MPEG_4); mRecorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB); mRecorder.setVideoEncoder(MediaRecorder.VideoEncoder.MPEG_4_SP);// mRecorder.setVideoSize(640, 480); // mRecorder.setVideoFrameRate(20); mRecorder.setPreviewDisplay(surfaceHolder.getSurface()); mRecorder.prepare();mRecorder.start(); </code></pre> I've tried other variants, including H263 and 3gp. What else can I do to debug this? Everythin g seems fine up to prepare(). I tried adding the onErrorListener, but it seems to interfere with the MediaPlayer's onErrorListener. I'm using a 4-second beep-count to prepare for auto triggering of the camera, and when I enable the error handler for the MR everything in my handler state machines goes awry.
View 4 Replies
View Related
Aug 5, 2009
I am building a camera app, where photos and videos are continuously being captured and saved to the SD card. The videos are short (few minutes), and their length are preset with setMaxDuration(). When Media Recorder.MEDIA_RECORDER_INFO_MAX_DURATION_REACHED is reached, the video is saved, and a new sequence is initialized with something like: The whole process works fine, while the main activity is in the foreground. But, when I go to another activity (e.g. settings), the video recording works in the background only until max duration is reached. The file is saved, but a new sequence can not be started because prepare() fails. setPreviewDisplay() needs to be there, but it doesn't like not having a proper surface to attach to. I tried to use a dummy Surface, a dummy SurfaceHolder, or reuse the Camera with mMediaRecorder.set Camera(), but nothing works. Is there a way to initialize Media Recorder in the background?
View 2 Replies
View Related
Jan 11, 2010
Could someone tell me where the voice recorder is ? I cant find it anywhere !
View 4 Replies
View Related
Mar 1, 2013
Is there a good free video app that can record video upto 12 hours , to catch a thief, my installed video camera will only let me record up to 30 minutes which is no good for me, my phone is gingerbread, or can i buy a stand alone battery powered video recorder.
View 1 Replies
View Related
Jul 29, 2010
Is there and app out there that will let me choose which contacts I'd like to back up sms and record the calls? Rather than all of them?
View 1 Replies
View Related
Dec 21, 2009
I'm wondering if there are any voice recorders out there that allow you to share recordings via text msg? Anyone know?
View 4 Replies
View Related
Jul 29, 2010
I've searched high and low, but I can't seem to find a voice recorder app with BOTH these features.
1) The app must have a home screen widget that allows me to start and stop recording without launching the app itself.
2) The app should let me dictate into a long single dictation every time I click record, rather than creating a separate voice file each time. The closest app I've found is voice recorder, but it insists on making each recording a separate file, rather than just appending a new recording to the end of the old one. Anyone know of a good app that can do these things?
View 3 Replies
View Related
Jun 3, 2010
Looking for an app that will record both sides of a conversation. I have tried Vrecorder and I do not get any volume. I have a moment with 2.1 installed.
View 29 Replies
View Related
Jul 31, 2010
I did the search and found 3 threads all worthless. I don't care about legalities. I just want a working call recorder for the Motorola Droid. Please3 don't start rambling in this thread about legalities I don't care it's not for use in court only for HOA meetings.
View 4 Replies
View Related
Mar 6, 2009
I just got a new g1 today and was reinstalling my apps. I noticed the video recorder app is no longer on the market. I was able to find the voice client (sound for the video) but not the actual video recorder. Does anyone know why it was pulled by google or does anyone know the dev's site/or have it where I can just download it?
View 2 Replies
View Related
Feb 17, 2010
Does anyone know of an app to record phone calls? If not, I'm going to look into building one. I'd really like to just record all of my phone calls to have copies of them if I ever need to refer back to them.
View 24 Replies
View Related
May 9, 2009
A number of previous posts imply that attempts to apply bespoke image processing on a Camera preview are hamstrung by a buggy API and will in any event run extremely slowly due to the need to manually decode the preview buffer. Can anyone comment on whether it is possible to use the video recorder as an alternative means of achieving this?
View 2 Replies
View Related
May 26, 2009
I've been trying to develop an application for the android 1.5 sdk version that allows the user to simply recorder a video but it has been a long road. I can record audio with the simple example on the android developers website but when I put the VideoSource and the VideoEncoder lines it gives a 100 error that means that the Camera server died. Here is an example of the code.
recorder.setCamera(mCamera); recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
recorder.setVideoSource(MediaRecorder.VideoSource.CAMERA);
recorder.setOutputFormat(MediaRecorder.OutputFormat.THREE_GPP); recorder.setAudioEncoder(MediaRecorder.AudioEncoder.AMR_NB);
recorder.setOutputFile("/sdcard/dcim/Camera/test.3gp");
recorder.setVideoEncoder(MediaRecorder.VideoEncoder.MPEG_4_SP);
recorder.prepare(); recorder.start(); ...
Here is the debug error messages:
05-26 11:37:55.331: INFO/ServiceManager(30): service 'media.audio_flinger' died 05-26 11:37:55.331: INFO/ServiceManager(30): service 'media.player' died 05-26 11:37:55.331: INFO/ServiceManager(30): service 'media.camera' died 05-26 11:37:55.331: WARN/MediaPlayer(690): MediaPlayer server died! 05-26 11:37:55.331: ERROR/MediaPlayer(690): error (100, 0) 05-26 11:37:55.331: WARN/Camera(1462): Camera server died! 05-26 11:37:55.331: WARN/Camera(1462): ICamera died 05-26 11:37:55.341: ERROR/MediaPlayer(690): Error (100,0) 05-26 11:37:55.341: INFO/SONGSEARCH(690): album="The Assassination of Jesse James" 05-26 11:37:55.391: INFO/DEBUG(1485): debuggerd: Apr 21 2009 13:42:23 05-26 11:37:55.401: INFO/ActivityManager(60): Displayed activity org.reccamera.com/.camera: 5276 ms 05-26 11:37:55.421: ERROR/Camera(1462): Error 100 05-26 11:37:55.421: WARN/AudioSystem(60): AudioFlinger server died!
View 2 Replies
View Related
Jan 29, 2010
I have searched these forums and can't find this answer. If I am missing it, please let me know and I apologize.I am trying to get some files I recorded on my Eris using the stock Voice Recorder app that came with the phone. When I look at the list of Voice Recorder files on the phone, at the top of the list, it says a file path:/sdcard/.voicerecorder/voices However, when I plug in the phone and mount the SD Card on my macbook running OSX 10.5, that path does not appear. Can anyone help please? I'd really like to get these files off the card.
View 7 Replies
View Related
Apr 10, 2009
So with Cupcake looming, does anyone know what kinda Frames per second the video recorder will have?
View 2 Replies
View Related
Nov 11, 2009
HTC had a nice voice recording app on the Sprint Hero. It recorded to mp3. The only 2 half decent apps I have found in the market only record to amr. Anyone know of a recorder that records to mp3?
View 1 Replies
View Related
Aug 7, 2013
I am using the default voice recorder. Is it possible to configure that app so, from now on, it will automatically name new files "HelloWorld###" instead of the default file name "AUD###"?
View 1 Replies
View Related
Feb 29, 2012
I've been searching around for awhile for a screen recorder and haven't found any great ones. The best I tried was Screencast, but I couldn't figure out how to get it to record sound as well.
I'm trying to record myself playing a game I developed, so it needs to have very high framerate (Screencast does this well) and also record the game sound.
Using the simulator isn't an option due to the way the game is controlled.
View 9 Replies
View Related