Is there any to tell what the meaning of video capture properties that aren't defined in the official documentation? For example,
import cv2
cap = cv2.VideoCapture(filename)
Video properties can be polled with either:
cap.get(cv2.CAP_PROP_FPS) or cap.get(5)
The opencv documentation defines all the props up to 51. But there are metadata properties at index 55, 68, 69 and 70 but they don't have a corresponding definition in the documentation. Are they defined somewhere else? Perhaps in an mp4 or h.264 spec?
There are more than 200... here a how to list them
Output
It could be useful to sort them per ID or put them in a dictionary form