Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Python 中的 OpenCV 处理视频。我想根据视频中的发现做一些自动笔记。我知道我可以计算帧数以获取帧数,但是有没有一些简单的方法可以获取该视频中帧所在的时间(对于将在媒体播放器中观看视频的人)?
我正在按如下方式访问框架:
video = cv2.VideoCapture(video_path) ret, self.image = video.read()