Answer by khd for OpenCV 2.4 VideoCapture not working on Windows
For anaconda environment copy opencv_ffmpeg249_64.dll from C:\Python27\rename its version according to your opencv correct versionand past it toC:\Users\KHALID\Anaconda2\Library\bin
View ArticleAnswer by user1947921 for OpenCV 2.4 VideoCapture not working on Windows
I had the same issue with python 2.7 and opencv 2.4.10. I copied the opencv_ffmpeg2410_64.dll file from C:\Applications\opencv\build\x64\vc10\bin into the python path (mine is at...
View ArticleAnswer by user for OpenCV 2.4 VideoCapture not working on Windows
At first I use windows8.1 32bit and opencv 2.4.10.I faced same problem to use file test1.wmv which was made by Logicool C270.I tried to use other file test2.mov which was made by Digital Camera ( Canon...
View ArticleAnswer by masewo for OpenCV 2.4 VideoCapture not working on Windows
For OpenCV 3.0.0 on 64 bit environment copy opencv_ffmpeg_64.dll and rename it to opencv_ffmpeg300_64.dll.Also add this path to your PATH environment variable to get it work with OpenCV under Java.
View ArticleAnswer by user3738775 for OpenCV 2.4 VideoCapture not working on Windows
For 64 bit versions, rename opencv_ffmpeg_64.dll to opencv_ffmpeg249_64.dll Change 249 to your opencv version.
View ArticleAnswer by bw4sz for OpenCV 2.4 VideoCapture not working on Windows
Update: This is still true for OpenCV 2.4.9, copy all the files, and rename the dll opencv_ffmpeg249.dll
View ArticleAnswer by SanD for OpenCV 2.4 VideoCapture not working on Windows
I first tried copying, then changing the Path environment of windows.. it didn't work until i changed the name to opencv_ffmpeg245.dll for my openCV version 2.4.5 and python 2.7. (notice **245.dll is...
View ArticleAnswer by emem for OpenCV 2.4 VideoCapture not working on Windows
Copying opencv_ffmpeg.dll wasn't enough for me - I had to rename it to opencv_ffmpeg246.dll, when I used OpenCV 2.4.6 with Python 2.7.5
View ArticleAnswer by cgohlke for OpenCV 2.4 VideoCapture not working on Windows
Add C:\OpenCV\3rdparty\ffmpeg\ to the Windows PATH environment variable or copy opencv_ffmpeg.dll from that directory to C:\Python27\ or to a directory that is in the PATH. Alternatively, use the...
View ArticleOpenCV 2.4 VideoCapture not working on Windows
I'm using Python bindings to OpenCV 2.4 installed with following instructions.My problem is similar to this one, but I need Windows machine solution.Problem: when I try to use cap =...
View Article