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 file (an .m4e file) or an H.264 Video Elementary Stream file (an .264 file). Is it possible to do that with media recorder on android? Or is there any other way to get it work?

link|improve this question

80% accept rate
feedback

1 Answer

From the MediaRecorder APIs I see that you have to call the setOutputFormat() before calling prepare(), this limits you to select one of the available options - 3GP/MP4. Hence you can use your own parser to operate on the dump from the mediarecorder, which can give you elementary streams.

link|improve this answer
Do you know about any library that will do that? – Jomoos Dec 22 '11 at 6:03
I can think of FFmpeg player which is an open source player and there is lots of info available online and stackoverflow to use it. You can have a look at the link, stackoverflow.com/questions/4725773/ffmpeg-on-android – Deepak Dec 22 '11 at 6:16
This link too might help, stackoverflow.com/questions/5899044/… – Deepak Dec 22 '11 at 6:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.