Hi BabasahebMane
Could you explain the issue you are facing in more detail?
Ideally, if you can describe the exact steps taken, or perhaps, send a video.

Thanks,
Jaka

I have Robothub link using which I can see live stream in browser but as I am using it to access from Python code I am unable to use it.

import cv2

# Define the URL of the live streamurl = "https://robothub.luxonis.com/public-access/app-streams/**********"
# Create a VideoCapture object to read the streamcap = cv2.VideoCapture(url)
while True:    # Read a frame from the stream    ret, frame = cap.read()
    if not ret:        print("Failed to retrieve frame")        break
    # Display the frame    cv2.imshow("Live Stream", frame)
    # Check for 'q' key press to exit the loop    if cv2.waitKey(1) & 0xFF == ord('q'):        break
# Release the VideoCapture and close all OpenCV windowscap.release()cv2.destroyAllWindows()

    Hi BabasahebMane
    You cannot access the stream because the url doesn't point directly to the stream. The preview is not meant to be played that way.

    If you wish to use the stream directly with opencv, you will have to expose it yourself.

    Thanks,
    Jaka

      BabasahebMane the stream isnt just simple HLS, we use WebRTC & custom data channel format

      you can't access the video feed from python - at least not our video feed

      to do what you are trying to do - you need to develop your own HLS streaming backend (which we don't provide any advice for)

      if I may ask - what are you trying to achieve? usually any opencv work / work with the video is done directly in the RobotHub application and then these modified frames are streamed (either via our streaming solution or your own)