├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG ├── CONTRIBUTORS.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── TODO.md ├── __init__.py ├── fluidsynth.py ├── pyproject.toml ├── test ├── 1080-c01.mid ├── __init__.py ├── example.sf2 ├── modulatorTest.py ├── sequencerTest.py ├── test1.py ├── test2.py ├── test3.py ├── test4.py ├── test5.py ├── test6.py └── test7.py └── tests ├── __init__.py └── test_pyfluidsynth.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/TODO.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fluidsynth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/fluidsynth.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test/1080-c01.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/test/1080-c01.mid -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/example.sf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/test/example.sf2 -------------------------------------------------------------------------------- /test/modulatorTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/test/modulatorTest.py -------------------------------------------------------------------------------- /test/sequencerTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/test/sequencerTest.py -------------------------------------------------------------------------------- /test/test1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/test/test1.py -------------------------------------------------------------------------------- /test/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/test/test2.py -------------------------------------------------------------------------------- /test/test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/test/test3.py -------------------------------------------------------------------------------- /test/test4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/test/test4.py -------------------------------------------------------------------------------- /test/test5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/test/test5.py -------------------------------------------------------------------------------- /test/test6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/test/test6.py -------------------------------------------------------------------------------- /test/test7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/test/test7.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_pyfluidsynth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nwhitehead/pyfluidsynth/HEAD/tests/test_pyfluidsynth.py --------------------------------------------------------------------------------