I have dataset of around 15000 videos. I want to extract frames from videos into numpy array. I tried both opencv and skvideo.
But the problem with opencv is that it is too slow for large videos as it iterates frame by frame and problem with skvideo is that even though it is very fast in reading videos but it is not stable as it throws various run time error for many videos.
Can you please suggest any other python library for extracting frames of a video into numpy array.