--- id: pyfmodex version: "0.7.2" license: MIT license_treatment: permissive maintenance: dormant --- # pyfmodex — Python bindings to the Fmod Ex library. License: permissive · Maintenance: dormant · Downloads: 142.2K/mo ## What it is and what it does Pyfmodex is a ctypes-based Python wrapper around the FMOD Engine audio library, a cross-platform audio middleware used in games and interactive applications. It lets you load audio files (MP3, WAV, OGG, and others supported by FMOD), play them, and control playback programmatically—volume, pitch, effects, and more—from Python code. The package requires you to download and install the FMOD Engine library separately from fmod.com (free but requires account registration), then point pyfmodex to it via environment variables or system paths. Once set up, you instantiate a System object, initialize it, create sounds from files, and play them on channels. It supports Windows, macOS, and Linux and declares support for Python 3.6 through 3.12. Use it for: - Build interactive audio applications or games in Python that need low-latency sound playback and real-time audio control. - Prototype audio-driven tools or experiments that rely on FMOD's cross-platform audio engine. - Add sound effects and music playback to Python desktop applications or game frameworks. - Integrate FMOD's advanced audio features (effects, 3D positioning, streaming) into Python projects. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Pyfmodex provides Python bindings to the FMOD Engine audio library using ctypes, enabling you to load, play, and control audio programmatically from Python. Yes, if you need FMOD Engine integration in Python and are comfortable managing the external FMOD library dependency. The package is stable (MIT licensed, no known vulnerabilities, supports modern Python versions), but dormant maintenance (889 days since last release) means you should verify compatibility with your FMOD version and Python environment before committing to it in production. ## Install pip install pyfmodex uv add pyfmodex poetry add pyfmodex ## Installing pyfmodex Before you install: Installation requires the FMOD Engine library to be present on your system before installing pyfmodex itself. The package is dormant (last commit August 2024, no release for 889 days), but carries no runtime dependencies and installs as a pure Python wheel with low friction. License in practice: MIT license is permissive; you may use, modify, and distribute this package freely in commercial or private projects with minimal restrictions. Quickstart: import pyfmodex system = pyfmodex.System() system.init() sound = system.create_sound("somefile.mp3") channel = sound.play() while channel.is_playing: pass The FMOD Engine library must be installed and discoverable on your system (via LD_LIBRARY_PATH on Linux, or set PYFMODEX_DLL_PATH / PYFMODEX_STUDIO_DLL_PATH environment variables). Requires Python 3.6 or later. Verify before relying: - Whether the package works reliably with Python 3.10, 3.11, and 3.12 despite dormant maintenance status. - Current compatibility with modern FMOD Engine versions and whether breaking changes have occurred. - Whether the ctypes binding approach has known limitations or performance characteristics compared to alternatives. ## Package facts - License: MIT (permissive) - Python support: supports_current - Install friction: low - Maintenance: dormant - Downloads: 142.2K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags python fmod audio bindings, fmod engine python wrapper, audio playback python ctypes, sound file playback python, fmod python library, audio control python, audio-bindings, ctypes-wrapper, fmod-engine [View on SkillFed](https://skillfed.io/packages/pyfmodex) · [View on PyPI](https://pypi.org/project/pyfmodex/)