I’ve been working on this for hours, and I’ve tried everything from break
in an if
statement to making an index variable. I can’t seem to find a way to stop the sound/music from playing. My goal is to press ‘Q’ and stop the function and while
loop to start another while
loop.
JavaScript
x
27
27
1
import keyboard
2
import time
3
from playsound import playsound
4
5
#this handles the name that is displayed and makes it easier to input
6
def Song(type,opt):
7
time = 1
8
print(opt)
9
playsound(type)
10
11
print('''Enter Your Music Selection:
12
O) Overworld
13
F) Fighting
14
B) Boss-Strong Enemy
15
V) Victory
16
I) Inside-Taven-Shop
17
D) Dungion
18
L) Lose-Death
19
''')
20
21
while True:
22
while keyboard.is_pressed('O'):
23
Song('MusicStuff/test0.wav','Overworld Theme')
24
25
while keyboard.is_pressed('F'):
26
Song('MusicStuff/TrashLine.wav','Fighting Theme')
27
Advertisement
Answer
Playsound consists of a single function which only plays sound, and does nothing else. That is why you are not able to “stop” the function.
If you want more interactivity you have to use a different library. You can use pyaudio.
Check out this post.