Skip to content

eodowd/ds2sfz

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ds2sfz

dsconverter is a decent sampler conversion tool for the .sfz format, it allows you to convert dspreset files to sfz for import to other applications or just to port to more formats. If you plan to build this on mac os python 3.7 is best and use a virtual venv with pycharm community

IMAGE ALT TEXT HERE

requirements

pip install git+git://github.com/eodowd/flask-desktop.git
pip install pyinstaller 

Creating an .exe (windows 10)

pyinstaller -w -F --add-data "templates;templates" --add-data "static;static" --icon=static/icon.ico --name=dsconverter main.py

Creating an .app (mac os big sur)

pyinstaller -w -F --windowed --onedir --add-data "templates:templates" --add-data "static:static" --icon=static/icon.ico --name=dsconverter main.py