PiPup
PiPup copied to clipboard
Please add support for RTSP
Hi Rogro,
i love the idea of the program and it is nice to have support for RTSP so we cam stream ip camera to it.
thanks
That would be excellent!
yes. That will be great!
would love that also!
yeah! RTSP support will be great!
My PR which enables Javascript in the WebView (https://github.com/rogro82/PiPup/pull/34) in conjunction with something like https://github.com/mpromonet/webrtc-streamer allows you to achieve nearly zero latency streaming of an RTSP stream.
Just set media.web
instead of media.video
and point it to the URL of your webrtc-streamer frontend.
Alternatively you could point the URL to a Home Assistant dashboard to show that instead.
My PR which enables Javascript in the WebView (#34) in conjunction with something like https://github.com/mpromonet/webrtc-streamer allows you to achieve nearly zero latency streaming of an RTSP stream.
Just set
media.web
instead ofmedia.video
and point it to the URL of your webrtc-streamer frontend.Alternatively you could point the URL to a Home Assistant dashboard to show that instead.
Hello madjam002,
Thanks for your comment. Is there any pre-built apk file that I can use to install?
@Diamond2 Not at the moment, you'll need to clone and build it. I was hoping it would be merged soon but I'm not sure if this project is maintained anymore as there are a few PRs that are open.
@madjam002 any chance of an Apk to try out? EDIT: compiled it myself - it's now working perfectly with my nest doorbell stream. Thanks.
@madjam002 any chance of an Apk to try out? EDIT: compiled it myself - it's now working perfectly with my nest doorbell stream. Thanks.
Hey @tungmeister can you help me out with the APK?
APK available here
APK available here
The APK you created works great! I'm now able to stream my WebRTC URL to my Android TV. I'm just having the issue of the live feed buffering like crazy during the showing of the video. Any idea how I could fix this? Does it have something to do with the WebRTC feed?
APK available here
The APK you created works great! I'm now able to stream my WebRTC URL to my Android TV. I'm just having the issue of the live feed buffering like crazy during the showing of the video. Any idea how I could fix this? Does it have something to do with the WebRTC feed?
Ya, add "&webrtc=false" to the URL. I was having the same issue with buffering, and find that forcing mse mode worked better.
APK available here
The APK you created works great! I'm now able to stream my WebRTC URL to my Android TV. I'm just having the issue of the live feed buffering like crazy during the showing of the video. Any idea how I could fix this? Does it have something to do with the WebRTC feed?
Ya, add "&webrtc=false" to the URL. I was having the same issue with buffering, and find that forcing mse mode worked better.
Thanks. Disabling this does appear to make thing a little better but this stream is still buffering. Can I find other URL agruments somewhere to test around with? Perhaps there is a way to lower the stream quality?
This is my current URL:
https://*private*.duckdns.org:8123/webrtc/embed?url=voordeur1&webrtc=false
APK available here
The APK you created works great! I'm now able to stream my WebRTC URL to my Android TV. I'm just having the issue of the live feed buffering like crazy during the showing of the video. Any idea how I could fix this? Does it have something to do with the WebRTC feed?
Ya, add "&webrtc=false" to the URL. I was having the same issue with buffering, and find that forcing mse mode worked better.
Thanks. Disabling this does appear to make thing a little better but this stream is still buffering. Can I find other URL agruments somewhere to test around with? Perhaps there is a way to lower the stream quality?
This is my current URL:
https://*private*.duckdns.org:8123/webrtc/embed?url=voordeur1&webrtc=false
Maybe it was the other option mse=false, you can see all the params on the GitHub readme it's a direct copy of the card configuration parameters.
Hi Rogro,
i love the idea of the program and it is nice to have support for RTSP so we cam stream ip camera to it.
thanks
@mvanhelmont I know this is an extremely old post and the issue has been resolved, but I believe you were trying to get this to work with a nest doorbell, yeah? I saw somewhere that you compiled this yourself and got the nest doorbell live feed working with pipup... How? Any insight is greatly appreciated (sorry if I'm missing something already mentioned)
Would also like to know how you got this working with a Nest doorbell.
Hi, By default it seems the audio is muted when playing the webrtc. Does anyone know if it is possible to unmute it ?
Hi, By default it seems the audio is muted when playing the webrtc. Does anyone know if it is possible to unmute it ?
Try this? the "muted: false" variable in the webrtc.create_link may help.
alias: Display doorbell PIP Popup on TV
mode: single
variables:
link_id: "{% for _ in range(40) %}{{ range(10)|random }}{% endfor %}"
sequence:
- service: webrtc.create_link
data:
link_id: "{{ link_id }}"
entity: camera.cameraname
open_limit: 0
time_to_live: 60
muted: false
- service: rest_command.pipup_url_on_tv
data:
title: Front
position: 2
width: 640
url: https://publicHAAddress/webrtc/embed?url={{ link_id }}