微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

在 MouseOver 的右侧或左侧扬声器上播放声音

如何解决在 MouseOver 的右侧或左侧扬声器上播放声音

我正在尝试使用 PyQt5 在 python 中制作小程序。 该程序将有两个按钮,中间有一个标签。当鼠标移过标签时,我想调用一个 def,以更改按钮的颜色并从特定扬声器(左或右)播放声音

我按照一些帖子尝试了 pygame,但没有。声音在两个声道中播放。

import time
import pygame

pygame.mixer.init(44100,-16,2,2048)
channel1 = pygame.mixer.Channel(0) # argument must be int
channel2 = pygame.mixer.Channel(1)
print('OkkK')

soundobj = pygame.mixer.sound('Aloe Blacc - Wake Me Up.wav')
channel2.play(soundobj)
soundobj.set_volume(0.2)

time.sleep(6) # wait and let the sound play for 6 second
soundobj.stop()

有没有办法解决这个问题并选择左右扬声器?

另外,有没有办法在标签调用 def,On Mouse Over a label?

解决方法

一般使用 pygame 时,更喜欢调用 pygame.init() 来初始化所有 pygame 模块,而不是单独键入 pygame. module .init()。它将节省您的时间和代码行数。


然后,要在pygame中播放声音文件,我一般使用pygame.mixer.Sound来获取文件,然后调用声音对象的play()函数。

所以下面导入一个声音文件,然后根据鼠标X位置进行播放和平移

import pygame
from pygame.locals import *

pygame.init() # init all the modules

sound = pygame.sound.Sound('Aloe Blacc - Wake Me Up.wav')) # import the sound file

sound_played = False
# sound has not been played,so calling set_volume() will return an error

screen = pygame.display.set_mode((640,480)) # make a screen

running = True
while running: # main loop
    for event in pygame.event.get():
        if event.type == QUIT:
            running = False
        elif event.type == MOUSEBUTTONDOWN: # play the sound file
            channel = sound.play()
            sound_played = True
            # start setting the volume now,from this moment where channel is defined

    # calculate the pan
    pan = pygame.mouse.get_pos()[0] / pygame.display.get_surface().get_size()[0]
    left = pan
    right = 1 - pan

    # pan the sound if the sound has been started to play
    if sound_played:
        channel.set_volume(left,right)

    pygame.display.flip()

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。