The mediarecorder tag has no wiki summary.
7
votes
2answers
575 views
CamcorderProfile.QUALITY_HIGH resolution produces green flickering video
I haven't found any explanation for this so far. Basically I have a video recording class which works splendidly when setVideoSize() is set to 720 x 480 on my Samsung Galaxy S2.
I want it to record ...
6
votes
2answers
931 views
Problem with android MediaRecorder setVideoSize()
Can android MediaRecorder capture video with resolution higher than 320*240?
When I used MediaRecorder::setVideoSize() to set the video size, the captured video were all at the resolution of 320*240. ...
5
votes
2answers
128 views
When must I re-lock the Camera?
android.hardware.Camera tells me, of lock() and unlock(), that I "probably do not need this method" if I "am not recording video." Well, I am recording video.
unlock() is supposed to be called ...
4
votes
1answer
2k views
Problems with MediaRecorder class to record audio - prepare() gives an exception - Permission denied
I'm new in Android development and I have the next question/problem.
I'm playing around with the MediaRecorder class to record just audio from the microphone. I'm following the steps indicated in ...
3
votes
1answer
451 views
Android - How to start recording video automatically when calling the camera intent
The Android Dev has some easy code describing how to start the camcorder via Intents.
Now this is good if you just want to start up the camera and wait for the user to press the red "REC" button.
...
3
votes
1answer
709 views
How to change framerate when using MediaRecorder Class
I try to record video using MediaRecorder Class.
However I find out that I failed to lower the framerate of the video stream.
I'm using H.264 as my Video Encoder and AAC as my Audio Encoder(yes, it ...
3
votes
1answer
681 views
Android MediaRecorder and setOutputFile
I've read the Android SDK and I've found that the MediaRecorder class can take input from a Camera, Audio or other source and compress it. Through the setOutputFile method you can specify where you ...
3
votes
3answers
1k views
How to use setCamera (MediaRecorder)?
According to Android SDK MediaRecorder.setCamera can be used to recycle the existing camera instance for video capture and preview without resetting the preview. I was not able to find any sample, and ...
3
votes
3answers
2k views
Android: How to initialize MediaRecorder without a valid surface for video preview?
I am building a camera app, where videos are continuously being captured and saved to the SD card. The videos are short (few minutes), and their length are preset with setMaxDuration().
The whole ...
2
votes
1answer
180 views
Accessing video stream from Looxcie device
I'm looking to see if there's a way to get the audio and video streaming in from the bluetooth connection in an android app that I'd create.
http://www.looxcie.com/index.php/companion-apps/looxciecam
...
2
votes
1answer
842 views
Couldn't record with Samsung Galaxy S2 but could record with other phones from mic
However my app couldn't record in Samsung Galaxy S 2 from mic, it has been recording in other phones from mic.
Recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
...
2
votes
6answers
224 views
How to know when MediaRecorder has finished writing data to file
We're using MediaRecorder to record video to a file on the external storage using setOutputFile() before doing the actual recording.
Everything works fine, but the main issue is that as soon as the ...
2
votes
2answers
354 views
Is there pause available in mediarecorder class
Is there a way to pause the recording and start after a while.
2
votes
3answers
413 views
MediaRecorder class starts recording audio after slight delay
I am having an issue with the MediaRecorder class. When I call the start() method, the recorder starts recording(audio) but after some delay (The delay is quite noticeable - approximately 1 second). I ...
2
votes
1answer
1k views
how to change video orientation in MediaRecorder to portrait
When I record video by MediaRecorder, it always records in landscape mode, regardless of real device orientation.
How to force MediaRecorder/Camera use real orientation ?
2
votes
3answers
600 views
Android - What is mediarecorder's maximum maxfilesize?
Android - What is the maximum file size that setMaxFileSize can be set to in respect to Androids mediarecorder? I know it's somewhere between 4147483650 and 5147483650. Why is there a limit in the ...
2
votes
2answers
4k views
MediaRecorder Prepare Failed
I'm new here. I have been trying to create a video capture app using the android emulator without much success. As far as I know and looking through all the samples and code on the internet (this site ...
1
vote
0answers
95 views
android: record audio with MediaPlayer on emulator
I am trying to record audio from the microphone on the Android emulator with this code:
recorder = new MediaRecorder();
recorder.setAudioSource(MediaRecorder.AudioSource.MIC);
...
1
vote
1answer
65 views
Camera Input: Unsupported Parameter
Firstly, please forgive it is already asked one or can be find easily with Google. I am posting this since I do have only limited time. Here is code to record audio and video.
stopPreview();
...
1
vote
1answer
472 views
Video recorded with Android MediaRecorder is corrupted on Samsung Galaxy S2
Good day! I'm learning how to record video with MediaRecorder but recorded video is corrupted when I play it. See this screenshot: http://www.4shared.com/photo/QtmJCHRi/corrupted-video.html. Picture ...
1
vote
0answers
156 views
How to record sound with music playing in background
In my application, i have to record sound with music. When i am clicking on record button , music starts and recording will starting too. User will sing the song and this song will record with music . ...
1
vote
1answer
166 views
Can not use MediaRecorder on Android Emulator. Is the storage location wrong?
I'm trying to record sound using Android Emulator. I know that this question is popular over the internet, I checked many posts, it seems that only one person succeded: Can the Android emulator record ...
1
vote
1answer
151 views
MediaRecorder starts with a 1 sec delay. How do I get rid of the silence?
I am trying to use MediaRecorder in a Service to record sounds. But it creates a 1 sec delay (silence) at the start. how to i get rid of this? I tried using RehearsalAudioRecorder still has no luck. ...
1
vote
0answers
462 views
how to switch between front and back camera when using MediaRecorder android
if anyone has any idea that how to switch between front and back camera when using MediaRecorder . I defing a button for this function, but have no idea how to define the onclickListener.
the total ...
1
vote
1answer
301 views
Android MediaRecorder in streaming
Its possible to "stream" result of MediaRecorder?
The unique method i can see is mediaRecorder.setOutputFile that receives a FileDescriptor. So i can write the result to a File or send via socket to ...
1
vote
1answer
254 views
How to use MediaRecorder to capture video on Android?
I would like to create a short video clip using the MediaRecorder, but I don't know how to use it.
In my manifest file I added these permissions before the application-end-tag:
...
1
vote
1answer
340 views
Problems recording + playback (MediaRecorder + MediaPlayer)
I'm trying to record the users voice and play it back onClick of a button but I'm getting a "WARN/System.err(25236): java.io.IOException: Prepare failed.: status=0x1".
(See "LogCat" below)
I record ...
1
vote
1answer
159 views
How to append to Android MediaRecorder output file
I am wondering if there is a way to tell the MediaRecorder to append to an existing audio file instead of starting it over from the beginning. In other words, I would like to call setOutputFile() ...
1
vote
0answers
451 views
Android MediaRecorder produces corrupt video with green lines
I'm trying to add video recording capability to my app using MediaRecorder in Android, but the resulting video looks corrupt with green lines (audio is fine). The following code is what I use to ...
1
vote
1answer
591 views
why start() method of MediaRecorder throws IllegalStateException?
I am trying to record audio but start() method of MediaRecorder class throws IllegalStateException.
I use following code
MediaRecorder recorder = new MediaRecorder();
...
1
vote
0answers
987 views
Android MediaRecorder is throwing IllegalStateException
I am trying to develop a simple android video recorder. For this I have created a custom SurfaceView with MediaRecoder to handle the recording. Everything builds fine and it also runs fine on the ...
1
vote
1answer
688 views
Camera MediaRecorder / CamcorderProfile
This is my problem, I'm developing a software that uses the camera and records video, everything is working but I cannot spot how to manage the settings, for example I've got a Samsung galaxy S that ...
1
vote
1answer
129 views
Can sound be turned off in MediaRecorder of the Android API?
I would like to write a program that records video but not sound.
Can anyone help me on how to not record the sound while recording the video using MediaRecorder?
1
vote
1answer
2k views
stream a MediaRecorder file while recording
I am trying to get a video stream from point A (2.1 android phone) to point B (my server) in real time. How would I do it? Detailed below are my attempts (a little long, but concise!)
The goal is ...
1
vote
0answers
122 views
Any MediaRecorder Call = The application has stopped unexpectedly
I am having problems with MediaRecorder. I can create a new MediaRecorder without error however as soon as I call one of the member functions to initialise the object such as setAudioSource I get "The ...
1
vote
1answer
297 views
MediaRecorder Silence at Beginning of Recording (Delay?)
My MediaRecorder is setup to record audio from the mic. This works ... except that the first .65 seconds is completely dead air - its as if the first .65 second the record button was pressed but the ...
1
vote
2answers
619 views
android mediarecorder exception
I try to use the MediaRecorder class to record a video but I get an exception : failed to get Camera parameters. Prepare failed.
Here's my code :
camera = Camera.open();
recorder = ...
0
votes
3answers
29 views
Android - How to record simple soundbite?
EDIT: When I click the record button a second time ( to stop recording ) it force closes the app. The specific code for that event:
else if(isrec) {
recorder.stop();
...
0
votes
1answer
26 views
change the MediaRecorder source in android
Is it possible to change the source for android MediaRecorder?
I would like to record with a video stream or file instead of camera source,
the most likely method I found is ...
0
votes
0answers
13 views
stop MediaRecorder from been able to record
I want to develop application that will have an exclusive access to the MediaRecorder namely I want to be able to stop the media recorder from been able to record. So for example if some application ...
0
votes
1answer
28 views
Continous audio recording and analyzis
I would like to write an app the records audio continuously and analyze it in real time. I already know how to record file once and play it back, but I don't know how to make it continuous. I suppose ...
0
votes
0answers
69 views
MediaRecorder - code stopped working after firmware upgrade
I have a samsung galaxy tab that was running on android 2.2. I developed an simple program to record the audio and video seperately. It was working fine on my galaxy tab. But, everything changed after ...
0
votes
0answers
34 views
how to set H264 profile in android recorder?
I would like to set the H264 encoder's profile, such as Baseline profile / Main profile / Extension profile.
But I can not find an api in MediaRecorder to do it.
The most likely api is ...
0
votes
1answer
34 views
MediaRecorder issue - throws FileNotFoundException when I try to write to sdcard
Here is the exact exception that's thrown:
java.io.FileNotFoundException: /mnt/sdcard/example.mp4 (Permission denied)
I literally copied and pasted example code from here. In addition, I also added ...
0
votes
0answers
61 views
MediaRecorder.stop() hanging with Android 4.0 (ICS)
When calling stop() within my Video Capture activity, on occasion, the software will hang and will not come back to life. Only triggering an ANR by hitting "Back" will allow me to kill the activity.
...
0
votes
0answers
15 views
Run two media or audiorecorder instances simultaneously on android?
For each phone conversation i need to record one audiofile with up AND downlink and one audiofile with only uplink.
Is it possible create two objects from MediaRecorder at the same time?
Thank you
0
votes
1answer
161 views
Captured video on Android won't rotate to portrait
I'm attempting to stream video using MediaRecorder on Android with the screen fixed to portrait mode (android:screenOrientation="portrait"). The camera hardware is naturally aligned to landscape mode. ...
0
votes
1answer
70 views
Pause/resume feature in MediaRecorder
I found many questions regarding the missing pause/resume feature in the MediaRecorder class. But then I saw the Camera app in Samsung galaxy S GT-i9000. It provides the feature to pause/resume video ...
0
votes
1answer
143 views
Get decibel values whilst recording sound?
Is there a way of getting the decibel value of sound whilst it's being recorded? I'm using MediaRecorder to record the sound at the moment
I can't use any applications on the Marketplace as I can't ...
0
votes
1answer
54 views
How to output elementary streams with android media recorder?
I want to output elementary video streams with media recorder in android for the purpose of streaming with live555. In essence, I want to get media recorder to output an MPEG-4 Video Elementary Stream ...