whitphx/streamlit-webrtc

can streamlit-webrtc use rtsp camera?

Kerry678231 opened this issue · 1 comments

can streamlit-webrtc use rtsp camera? and how to config it?

Yes, this example may help:

"url": "rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov",

def create_player():
if "local_file_path" in media_file_info:
return MediaPlayer(str(media_file_info["local_file_path"]))
else:
return MediaPlayer(media_file_info["url"])

player_factory=create_player,