Hello All,
I have several videos in mov format, can scikit-image open it? What are the functions to extract related video metadata, such as number of frames?
I have been using opencv, but did not get successful to open mov file, here is my code and output
Any suggestions will be appreciated.
wen
cap = cv.VideoCapture('C:\\Users\\dataset\\latest\\a.mov')
print ("Video Properties:")
print("\t Framerate:",cap.get(cv.CAP_PROP_FPS))
print("\t Width: ", cap.get(cv.CAP_PROP_FRAME_WIDTH))
Framerate: 0.0
Width: 0.0**
_______________________________________________