I\'m working on a custom video recording class, and I\'m having some issues getting the camera preview to display when the Activity first appears. I\'m calling this function inside the surfaceCreated
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. If
For my project I am using MediaRecorder to record video. This code is working on most of the devices, but in HTC Desire (with Android 2.3), when I call recorder.start(); it\'s throwing ERROR/Camera(2
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.
I am using MediaRecorder and a SurfaceView to create a custom video camera app. After the user has clicked a stop button, I\'d like to show the user a preview of the video (maybe the first or last fra
We\'re using MediaRecorder to record video to a file on the external storage using setOutputFile() before doing the actual recording.
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 t
Record.java public void onClick(View v) { mRecorder = new MediaRecorder(); mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
mFilename = Environment.getExternalStorageDirectory().getAbsolutePath(); mFilename += \"/audiorecorder.3gp\";
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.