You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You'll notice that there's no way to tell what dpcm samples are mapped to what notes. In this 0cc file, C#3 is keyed to a dpcm sample, but there's no way to tell this looking at the JSON.
I've verified that this information isn't encoded anywhere else in the json output by editing the key mapping in two different ways and diffing the resulting files (identical).
To resolve this, either a new field must be added to the entries in .instruments[].dpcm_map[], or else .instruments[].dpcm_map must be changed from a list to an object keyed by note.
The text was updated successfully, but these errors were encountered:
Edit: Pull Request
Here's an example from
.instruments[0]
in a json export from a simple 0cc file containing only a dpcm channel.You'll notice that there's no way to tell what dpcm samples are mapped to what notes. In this 0cc file,
C#3
is keyed to a dpcm sample, but there's no way to tell this looking at the JSON.I've verified that this information isn't encoded anywhere else in the json output by editing the key mapping in two different ways and diffing the resulting files (identical).
To resolve this, either a new field must be added to the entries in
.instruments[].dpcm_map[]
, or else.instruments[].dpcm_map
must be changed from a list to an object keyed by note.The text was updated successfully, but these errors were encountered: