Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FEATURE] RTSP stream decoding support #169

Open
gbau1 opened this issue Jun 10, 2024 · 0 comments
Open

[FEATURE] RTSP stream decoding support #169

gbau1 opened this issue Jun 10, 2024 · 0 comments
Labels
feature request New feature or request

Comments

@gbau1
Copy link

gbau1 commented Jun 10, 2024

Is your feature request related to a problem? Please describe.
Need to add support to parse a video stream that is provided using the RTSP protocol.

Describe the solution you'd like
A solution similar to OpenCV like this:


  vcap = cv.VideoCapture("rtsp://192.168.1.2:8080/out.h264")

  while(1):
  
      ret, frame = vcap.read()
      cv.imshow('VIDEO', frame)
      cv.waitKey(1)

Describe alternatives you've considered
OpenCV is the alternative

Additional context
You can find the documentation for the feature in openCV here:
(https://docs.opencv.org/4.x/d8/dfe/classcv_1_1VideoCapture.html)
(look for "URL")

@gbau1 gbau1 added the feature request New feature or request label Jun 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature request New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant