如何在Python中播放视频中的声音(cv2)

问题描述 投票:0回答:1

我在用python播放一个mp4文件,但是视频的声音没有出来,我找了一下有没有什么办法可以播放声音,但是我什么也找不到。有人知道如何播放声音吗?

我张贴的代码,显示de视频。

import cv2
import numpy as np

# Create a VideoCapture object and read from input file
# If the input is the camera, pass 0 instead of the video file name
cap = cv2.VideoCapture('video.mp4')

# 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()

cv2不允许播放声音,这似乎没有用。我使用Python 3的方式。谢谢。

答案:OpenCV是一个计算机视觉库。 OpenCV 是一个计算机视觉库,它不支持音频。它不支持音频。如果你想播放声音,你可以尝试使用 ffpyplayer. - 感谢>>>yushulx。

python audio video cv2
1个回答
0
投票

你可以使用Pyglet来播放视频以及它的音频......希望这有助于......。

import pyglet
vid_path='vid1.mp4' # Name of the video
window=pyglet.window.Window()
player = pyglet.media.Player()
source = pyglet.media.StreamingSource()
MediaLoad = pyglet.media.load(vid_path)

player.queue(MediaLoad)
player.play()

@window.event
def on_draw():
    if player.source and player.source.video_format:
        player.get_texture().blit(50,50)


pyglet.app.run()
© www.soinside.com 2019 - 2024. All rights reserved.