Can't get opencv to work with FFMPEG to open the buff file on the test
machine. I've given up on trying to figure out why. Testing out video
capture without explicitly specifying FFMPEG to see how that works out.
This commit is contained in:
Maurice ONeal 2022-12-11 16:10:04 -05:00
parent 2bd600bd51
commit 89129ad3f4
2 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ using namespace cv;
using namespace std;
using namespace std::filesystem;
#define APP_VER "1.5.t5"
#define APP_VER "1.5.t6"
#define APP_NAME "Motion Watch"
struct shared_t

View File

@ -79,7 +79,7 @@ bool moDetect(const string &buffFile, Mat &vidThumb, shared_t *share)
{
auto mod = false;
VideoCapture capture(buffFile.c_str(), CAP_FFMPEG);
VideoCapture capture(buffFile.c_str());
if (capture.isOpened())
{