sfztools / sfizz-webaudio

sfizz as a WebAudio library
MIT License
17 stars 4 forks source link

Could I use my own .sfz files? #6

Open czfandyslash opened 2 years ago

czfandyslash commented 2 years ago

I wonder how to upload or link my own .sfz files in that webapp instead of using the default 'saw' sound. :)

redtide commented 1 year ago

In the README:

Right now only generators and embedded sample files are supported.

embedded means using the <sample> header. I guess you mean your sfz files using sample files, which are not supported because

Compared the main sfizz branch, the background loader is deactivated and all files are loaded in memory (since WebAssembly through browsers only allows access to a virtual file system)

which means it can't access to your sample files (client side) and there is no upload files feature (not server side).