Ask Your Question

eran's profile - activity

2013-10-29 06:03:52 -0600 commented question VideoCapture from file

The Python27 folder is written in PATH variable

2013-10-29 05:31:44 -0600 commented question VideoCapture from file

I've copied opencv_ffmpeg.dll to the Python27 folder. Is that what you mean?

2013-10-29 04:44:50 -0600 asked a question VideoCapture from file

Hi,

I'm kinda new to opencv, and cant figure out what i'm doing wrong while opening a video file with VideoCapture functionality.

I only use this simple code:

import cv2
cap = cv2.VideoCapture()
cap.open("Field.avi")
print cap.isOpened()

I tried installing k-lite's most updated codec pack, and several more. Still, I get 'False'. Needless to say, the video is in the same folder as the py file.

The video works on the media player.

Thanks!