I just installed OpenCV on my Anaconda, and I tested it with the following code:
import cv2
cap = cv2.VideoCapture('MyMovie.avi')
print(cap.isOpened())
The result always show false
, but capturing cam and picture works well.
My OpenCV version is 2.4.11 could anyone help out with this?