is there a way to check if an instance of cv2.VideoCapture has sound
import cv2
cap = cv2.VideoCapture("example.mp4")
how would i check if cap has sound?
I am trying to get a boolean value which tells me wether the video-file has sound or not.