LittleLito666 发表于 2020-5-27 11:52:26

python如何放歌

求助~python如何放歌?
其实我知道可以用pygame,但本人在pygame方面就是一个白痴,而且用pygame也不太合适

永恒的蓝色梦想 发表于 2020-5-27 11:54:18

import winsound

Twilight6 发表于 2020-5-27 11:54:53

之前我有去搜索过看看这个行不行帮助到你~

Python三种播放音频的方法

heidern0612 发表于 2020-5-27 11:55:28

方法1:

import os

os.system('xx.mp3')


方法2:
from playsound import playsound

playsound('xx.mp3')

LittleLito666 发表于 2020-5-27 11:56:47

各位,我先试试

永恒的蓝色梦想 发表于 2020-5-27 12:03:05

heidern0612 发表于 2020-5-27 11:55
方法1:




playsound 是个什么模块

heidern0612 发表于 2020-5-27 12:21:24

永恒的蓝色梦想 发表于 2020-5-27 12:03
playsound 是个什么模块

戳我前进

LittleLito666 发表于 2020-5-27 12:51:45

heidern0612 发表于 2020-5-27 12:21
戳我前进

from AppKit   import NSSound
ModuleNotFoundError: No module named 'AppKit'
这是什么情况?

heidern0612 发表于 2020-5-27 13:12:24

LittleLito666 发表于 2020-5-27 12:51
from AppKit   import NSSound
ModuleNotFoundError: No module named 'AppKit'
这是什么情况?

pip安装第三方模块。

zwhe 发表于 2020-5-29 17:02:24

{:10_256:}

Pythonnewers 发表于 2020-5-29 17:40:55

看看
页: [1]
查看完整版本: python如何放歌