I have got Streamlit webrtc running on localhost, but when I put it on to Streamlit Cloud I see this:
Here is my code:
import streamlit as st
from streamlit_webrtc import VideoTransformerBase, webrtc_streamer, VideoHTMLAttributes
def main():
st.title(“Video Feed”)
webrtc_streamer(key=“example”, video_html_attrs=VideoHTMLAttributes(autoPlay=True, controls=False, style={“width”: “100%”}, muted=True))
if name == “main”:
main()
Here are the logs: