-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Invalid output from WAM export (GUI Builder) #82
Comments
@micbuffa, @Fr0stbyteR any idea here ? |
@micbuffa Did you rename |
This will be fixed this week-end. I'm working on it. |
Ah, sorry, the bug you noticed is not the one I was thinking of....
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I noticed when exporting using GUI Builder in Faust, nothing acutally shows up:
I downloaded the ZIP and realized the issue lies in
index.js
. The generated code expects two files nameddspMeta.json
anddspModule.wasm
(lines 76/77):These files are however named in accordance to the DSP file. In my case, in the IDE I named my file
miditut.dsp
, and so the actual metadata and module are namedmiditut.json
andmiditut.wasm
:Sure enough if I change the references in
index.js
tomiditut.json
andmiditut.wasm
respectively, it all loads correctly:The text was updated successfully, but these errors were encountered: