Searching for an alternative as OpenCV would not provide timestamps for live camera stream (on Windows), which are required in my computer vision a
You can use MoviePy:
import moviepy.editor as mpy vid = mpy.VideoFileClip('e:\\sample.wmv') for timestamp, raw_img in vid.iter_frames(with_times=True): # do stuff