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

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

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

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 关注
  • 1538 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号