Spaces:
Sleeping
Sleeping
File size: 745 Bytes
9ad57a5 92e81f9 b71952c 9ad57a5 b71952c 9ad57a5 b71952c 92e81f9 b71952c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import streamlit as st
from streamlit_webrtc import webrtc_streamer, WebRtcMode
import av
st.title("Webcam Display Streamlit App")
# Define the callback for transforming frames (without applying any filters)
def transform(frame: av.VideoFrame):
img = frame.to_ndarray(format="bgr24") # Convert to NumPy array (BGR format)
# Simply return the image without applying any filters
return av.VideoFrame.from_ndarray(img, format="bgr24")
# Display the video stream
webrtc_streamer(
key="streamer",
video_frame_callback=transform, # The transform function is only used to process frames
sendback_audio=False, # We don't need audio in this case
mode=WebRtcMode.SENDRECV, # Use WebRtcMode enum instead of string
)
|