Skip to content
forked from tyrylu/pyfmodex

Python bindings for fmod ex sound library.

Notifications You must be signed in to change notification settings

echelon/pyfmodex

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is pyfmodex a fmod ex binding using ctypes.
For installation, first make sure that you have the fmod ex library for you platform somewhere on your path, so python will be able to find it.
Next, on linux as root or via sudo, execute: setup.py install. You might be required to add python as first think of this command.
Usage
To verify, if everythink works, open python interactive interpreter and try importing pyfmodex:
import pyfmodex
If there is no error, good. It worked. Playing a sound isn't hard:
system = pyfmodex.System()
system.init()
sound = system.create_sound("somefile.mp3")
sound.play()
Of course, somefile.mp3 must be replaced with somethink that actually exists. Here, i used the default parameters and not used features like 3d positioning.

About

Python bindings for fmod ex sound library.

Resources

Stars

Watchers

Forks

Packages

No packages published