Ask Your Question

Anas Abdullah's profile - activity

2016-12-13 03:59:11 -0600 answered a question Reading video stream from IP camera in OpenCV Java

After 3 to 4 weeks of hardwork,I found a 100% working solution for this

First of All you have to load the ffmpeg's dll file Dynamically i-e Using

System.loadLibrary("[NAME OF YOUR DLL FILE]")

You can find the required dll file in opencv/build/x64/vc11/bin The name of DLL in my case is "opencv_ffmpeg2413_64.dll" copy the file to default path of the Project and use

`System.loadLibrary("opencv_ffmpeg2413_64");`//You May have different File Name Depending on the Version of OpenCV Installed on your Computer

Then You can Simply use

VideoCapture ipcamera = new VideoCapture("[RTSP URL OF THE IP Camera]")//I used this Demo Link (rtsp://184.72.239.149/vod/mp4:BigBuckBunny_175k.mov)