Receiving video stream from an IP camera on android

前端 未结 2 1917
清歌不尽
清歌不尽 2021-02-08 21:12

I have an IP camera which is streaming video in MJPEG format. Now my aim is to receive it and display it in my own custom android app. For this I have three programming alternat

2条回答
  •  甜味超标
    2021-02-08 21:49

    Use gstreamer for it.

    I have used gstreamer at beagleboard which has 1GHz processor for taking image from 2 cameras in 30 fps with very low CPU processing power.

    Gstreamer able to merge images, add strings, change formats. And presents you what you want easily in stream. The only thing you need to do is adding black boxes each other.

    You can add blackboxes with both dynamically and statically.

    If you are not going to change your stream depends on input at your program I suggest to use static one. But I am not sure if it works at android..

提交回复
热议问题