So I am trying to use my Android as a webcam. My code is working perfectly for API <= 22. I am using ParcelFileDescriptor
's createPipe()
method to create pipe for reading and writing.
In short, my writing to the pipe looks like following:
ParcelFileDescriptor[] parcelFileDescriptors = ParcelFileDescriptor.createPipe();
ParcelFileDescriptor mParcelWrite =new ParcelFileDescriptor(mParcelFileDescriptors[1]);
MediaRecorder mMediaRecorder = new MediaRecorder();
mMediaRecorder.setOutputFile(mParcelWrite.getFileDescriptor());
..
..// Other settings.
mMediaRecorder.start();
When I run this, I get the following exception,
E/MediaRecorder: start failed: -2147483648
W/System.err: java.lang.RuntimeException: start failed. W/System.err: at android.media.MediaRecorder.start(Native Method)
W/System.err: at com.ksy.recordlib.service.recoder.RecoderVideoSource.prepare(RecoderVideoSource.java:105)
W/System.err: at com.ksy.recordlib.service.recoder.RecoderVideoSource.run(RecoderVideoSource.java:173)
W/System.err: at java.lang.Thread.run(Thread.java:818)
I got to know, that in API 23, they made a change which prevented MediaRecorder
to work with File descriptors that are not seekable.
ParcelFileDescriptor
when used with createPipe()
doesn't seem to be seekable.
My question is, How can I make it seekable? Is there any alternative to it? Thanks.
I have been investigating this for a week. There is a hidden format in the output formats you can set which is
mMediaRecorder.setOutputFormat(8);
From the documentation
public static final int OUTPUT_FORMAT_MPEG2TS = 8;**
However it does not still work on Marshmallow or Nougat. I made it work for kit kat. Let me know if this helps.