Hello i have a camera ip (http and rtsp) and i wanted to take some capture on it.
I need to have it on android and IOS. I tried to use the capture media plugins and Streaming Media but it don’t realy work.
Any have an idea of a plugins to help me
Thank you
What’s the final source file you are going to play?
m3u8?
I was using something like
<video width="100%" height="auto"
preload="auto"
autoplay="autoplay" controls>
<source [src]="this.iveStreamingDataSanitizedM3u" type="video/mp4" />
</video>
and it was working fine both on Android and iOS but since iOS 15 it doesn’t work anymore, so you must use a trick: press play, go forward and then press play again.
BUT, I can understand that it’s sooo annoying.
I personally moved to a web service called https://www.ipcamlive.com/, they convert your rtsp stream to an Iframe and then you can just copy it in your app like this:
<iframe id="streamingIframe" width="100%" height="auto" frameborder="0" marginheight="0" marginwidth="0"
scrolling="no" allowfullscreen webkitallowfullscreen mozallowfullscreen oallowfullscreen msallowfullscreen
[src]="this.liveStreamingDataSanitizedUrl">
</iframe>
Hi @ciccilleju
Thank you for the answer the format of the final source is mjpeg.
I can’t use the ipcamlive.com because the projet, need for security, keep internal.
I have search some package with npm but they don’t realy working on android.
If you have any suggestion.
I have a http service into the camera witch i can use to bypass the rtsp problem