questions on loading video files in mov format
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**
Hi wen, Have you seen this documentation page - https://scikit-image.org/docs/dev/user_guide/video.html ? `scikit-image` itself does not provide functionality for video I/O. From my experience, `moviepy` is the best from that list, but I recommend to try several alternatives. Regards, Egor On Thu, 19 Sep 2019 at 20:39, wine lover <winecoding@gmail.com> wrote:
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**
_______________________________________________ scikit-image mailing list -- scikit-image@python.org To unsubscribe send an email to scikit-image-leave@python.org
participants (2)
-
Egor Panfilov
-
wine lover