These bindings allow you, the developer, to use the feature rich fmod ex sound library in python. You can use almost any feature which is provided in fmod ex.
The development has been movet to github for mainly accessibility and sourceforge interface complexities reasons. The new repositori is Here." I promise that there will not be any change in repository url if things will not go wrong there too.
Now, when you want to use this library, it's time to show you some basic usage. Following script plays two of the standard windows sound files.
import pyfmodex
This script uses default output and default sound cart, but these settings may be changet before calling System.init() by setting the output and driver properties respectively.
system = pyfmodex.System()
system.init()
snd1 = system.create_sound(r"c:\windows\media\notify.wav")
snd2 = system.create_sound(r"c:\windows\media\town.mid")
snd1.play()
snd2.play()