I am trying to the change the encoding bit rate of the video recording on Android using MediaRecorder.setVideoEncodingBitRate(int).
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 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
I use a MediaRecorder to start record audio, and at the same start a TimerTask scheduleAtFixedRate(doRecordingTimer, 0, 1000); and a Handler to update UI showing the time has passed.
I try to record video using MediaRecorder Class. However I find out that I failed to lower the framerate of the video stream.
I am trying to record audio but the start() method of MediaRecorder class throws an IllegalStateException.
I\'m recording videos with MediaRecorder, but it appears that whatever setting I use, the framerate is appalling (~ 1fps)
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 sett开发者_开发知识库ings, for example I\'ve got a Sams
I would like to write a program that records video but not sound. Can an开发者_如何转开发yone help me on how to not record the sound while recording the video using MediaRecorder?This is indeed possi
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!)