Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 901 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 901 Bytes

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