Streaming .asf on android

I have a FOSCAM FI8918W that returns a live video + audio stream in .asf format. I want to create an Android application that transfers this video to an Android phone. I just don’t know how and where to start. I have done a lot for this, but to no avail. Any help is appreciated.

A similar question was asked here 2 years ago, but did not receive significant answers (link - ASF Streaming on Android? ).

considers

+4
source share
1 answer

Generic Android (AOSP) supports a very limited set of codecs and containers - see http://developer.android.com/guide/appendix/media-formats.html

Some devices support additional codecs / containers, but as a non-standard extension. ASF with MJPEG stream is not supported by AOSP.

But this should not be too difficult to implement in user mode - this is a camera, so you do not need to worry about the position of the stream (for searching and rewinding), and MJPEG is simply decoded and displayed. Just read the stream and show it as a sequence of frames.

+1
source

Source: https://habr.com/ru/post/1498464/


All Articles