I wrote this Windows app, where I use this code:
VideoCapture cap(videopath.c_str());
if(!cap.isOpened()){
cerr << "Unsupported video format!" << endl;
return -1;
}
I supply an example .avi file with this app, and so far it worked on every single machine(win7, winXP, 32bit, 64bit). But suddenly there is one client who claims he's getting "Unsupported video format!" error with the exactly same .avi file which worked on every other machine so far. He's using win7. What do you think is the problem? Is this some codec issue?
Thank you for any advice. With regards, JP