Hello everyone !

I have an issue since some days. Let me explain : I am trying to create a video processing software. Everything works good, except now when I want to deploy this application statically . Now when I compile in static, I can no longer open the imagges and videos yet opened well before ... This is my simplify code:

Qt Code:
  1. VideoCapture capture(url);
  2.  
  3. if (!capture.isOpened())
  4. {
  5. qDebug()<<"Problem opening video";
  6. qDebug() << QString::fromStdString(url);
  7. }
To copy to clipboard, switch view to plain text mode 

The video does not open and there are no errors . I just have my qDebug () which tells me that the video does not open ... If anyone has a solution I'm interested.

Thanks in advance