0

VIVOTEK IP カメラを使用しています。私はそれをOPENCVとインターフェースしようとしています。Internet Explorer は、ユーザー名とパスワードを入力すると、この URL に適切なビデオを表示します。

コードは以下のとおりです

const std::string videoStreamAddress ="http://192.168.100.128/main.html";

//i have also tried "http://username:pasword@192.168.100.128/main.html" but the same
//result 
//and also tried ""http://192.168.100.128" i.e without "main.html"

if(!vcap.open(videoStreamAddress))
{

    std::cout << "Error opening video stream or file" << std::endl;


    }

次のエラーが発生しました

 warning: Error openong file <../../modules/highgui/src/cap_ffmpeg_impl.hpp:529>
 Error opening video stream or file 

何が問題なのですか?

4

1 に答える 1