为了账号安全,请及时绑定邮箱和手机立即绑定

下面这段代码播放的视频没有声音,怎样才能连声音也一起播放呢?

下面这段代码播放的视频没有声音,怎样才能连声音也一起播放呢?

qq_莫非 2019-09-19 19:58:24
import cv2 import numpy as np cap = cv2.VideoCapture('E:/电影/神偷奶爸2.rmvb') # Check if camera opened successfully if (cap.isOpened() == False):     print("Error opening video stream or file") # Read until video is completed while (cap.isOpened()):     # Capture frame-by-frame     ret, frame = cap.read()     if ret == True:         # Display the resulting frame         cv2.imshow('Frame', frame)         # Press Q on keyboard to  exit         if cv2.waitKey(25) & 0xFF == ord('q'):             break     # Break the loop     else:         break # When everything done, release the video capture object cap.release() # Closes all the frames cv2.destroyAllWindows()
查看完整描述
  • 1 回答
  • 0 关注
  • 1165 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信