123456789101112131415161718192021222324252627282930313233 |
- # try:
- # import simpleaudio
- # bell = simpleaudio.WaveObject.from_wave_file("bell.wav")
- # def play_bell():
- # bell.play()
- # running = simpleaudio.WaveObject.from_wave_file("running.wav")
- # running.audio_data *= 200 # repeat sample
- # playing = None
-
- # def play_running():
- # global playing
- # if playing is None:
- # playing = running.play()
- # def stop_running():
- # global playing
- # if playing is not None:
- # playing.stop()
- # playing = None
- # except ImportError:
- print("Audio disabled. Install python package 'simpleaudio' for a fully immersive experience :)")
- def play_bell():
- pass
- def play_running():
- pass
- def stop_running():
- pass
|