1

I'm trying to access a RTSP video stream from an IP camera using OpenCV and Java. I can access the stream using VLC player with the following format: rtsp://192.168.1.10:554/rtsp_live0 but when I try to use OpenCV the video stream seems to always be closed.

The code I'm using... (simplified)

VideoCapture capture = new VideoCapture();
capture.open("rtsp://192.168.1.10:554/rtsp_live0");
while(!capture.isOpened())
    System.out.print("Not opened :( \r");

I have a Mustcam H806P and found the stream URI from this website: http://www.ispyconnect.com/man.aspx?n=ipcamera

What am I doing wrong?

CS Student
  • 1,613
  • 6
  • 24
  • 40

1 Answers1

4

I'm reporting Alexander Smorkalov answer on answers.opencv.org

OpenCV uses ffmpeg library for video I/O. Try to get video stream with console ffmpeg tool. The address must be the same.

See also here OpenCV - how to capture rtsp video stream

Community
  • 1
  • 1
Miki
  • 40,887
  • 13
  • 123
  • 202
  • Using ffmpeg I was able to get the video stream and save it. I'm starting to think its something to do with me not properly linking the ffmpeg libraries. – CS Student Jul 05 '15 at 09:32