from livewires import games
# load sound file
missile_sound = games.load_sound("missile.wav")
games.music.load('theme.mid')
games.music.play()
missile_sound.play()
I try pygame, midi2audio, mido, pyFluidSynth, fluidsynth, i have installed VLC and plugins, and i can listen the midi files in the system, but cannot in python. Program is launching, and nothing happens (no errors). The wav format works, but midi not. I have no idea what can i do. Maybe this post is duplicated, but i cannot found answer for this question. 'theme.mid' i m convert this file in wav, and its work. but i want work with midi files. Thank you.