jet
jet
`js-synthesizer.worklet.js` can only be used in Audio Worklet. It cannot be loaded via `` (and is not necessary).
> I am still unable to access `AudioWorkletGlobalScope`. `AudioWorkletGlobalScope` can be used only in scripts loaded to Audio Worklet. If you want to add codes working in Audio Worklet, you...
Sorry for inconvenience, but since the base library FluidSynth does not have feature for **pausing** player (only provides play/stop/seek), js-synthesizer does not have `pausePlayer`. So, please use `stopPlayer`/`seekPlayer`/`playPlayer` as you...
Sorry for the late response. I did not try to build as a static library because of LGPL, so I don't have any idea now. But it is welcome to...
> I don't have any idea now. I found the idea for building the static library, and I pushed 4c1e007. Please pull the branch and try following commands: ```sh mkdir...
Thanks for the report. I did not build sources under the `doc` directory before, but I investigated and found that fluidsynth-emscripten should be built as a static library (related: #1)....
> How can I reproduce a soundfont with fluidsynth_simple.js You can call `main` manually with using [`Module.noInitialRun`](https://emscripten.org/docs/api_reference/module.html#Module.noInitialRun) and `callMain`: ```html var Module = { noInitialRun: true }; function myMain() {...
> fluidsynth.h is missing when i build the static lib how did you build simple demo ? I used commands commented in https://github.com/jet2jet/fluidsynth-emscripten/issues/4#issuecomment-817105737. I retried and `fluidsynth_simple` had been generated...
Sorry for the late response. What event type (EventHandler) do you want? I can add events to CLRHost, but I couldn't think of events because CLRHost itself does not have...
I debugged and found that the following line generates an exception (`t->current` is null): https://github.com/libarchive/libarchive/blob/136ce81b3da2f9368d1b0e494d5bd7e684a433b7/libarchive/archive_read_disk_windows.c#L2188 When using wildcards, the following code will not store `t->current`, and it would be the...