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
Currently on sites like tone hunt captures are organised in groups for example 6 captures of different control settings for a single amp, but there is no metadata standard for that. If UIs are to use that information they need it in a standard form.
For Beebo/Hector I am currently using this format, I am happy to change this before it is more widely distributed.
It's just a JSON file, so we can add additional stuff but this covers most of what we need for the Beebo / Hector UI so it might be handy for others. I'm also including an amp.jpeg in the directory, along with the metadata.json
The text was updated successfully, but these errors were encountered:
As you're already aware, .nam files are readable as JSON files, and I'm happy to keep it that way since it's ncie and conducive to easy customization, including what you've done above.
But beyond this, with #419, I'm including an other_metadata kwarg to .export(). If you've got your own trainer code that you want to fill this in automatically, you can do so by adding additional extensions to the ones demonstrated in #420.
I'm not quite at a place where I'm keen to implement your spec into this repo per se. If I add much more complexity to the trainer, it will likely be as a separate package (i.e. spin off the train module), and this package will retain the more "core" code.
Currently on sites like tone hunt captures are organised in groups for example 6 captures of different control settings for a single amp, but there is no metadata standard for that. If UIs are to use that information they need it in a standard form.
For Beebo/Hector I am currently using this format, I am happy to change this before it is more widely distributed.
{'amp_brand': 'Laney',
'amp_model': 'VC30',
'amp_year': '2003',
'captured_by': 'Poly Effects'
'control_names': ['channel', 'drive knob'],
'controls': [['normal', 'drive'], ['low', 'mid', 'high']],
'file_names': ['Laney-VC30-channel-normal-drive_knob-low.nam',
'Laney-VC30-channel-normal-drive_knob-mid.nam',
'Laney-VC30-channel-normal-drive_knob-high.nam',
'Laney-VC30-channel-drive-drive_knob-mid.nam'],
'includes_cab': False,
'long_description': 'Small Laney combo, sounds a bit voxish.',
'num_controls': 2,
'tags': ['combo', ' guitar']}
It's just a JSON file, so we can add additional stuff but this covers most of what we need for the Beebo / Hector UI so it might be handy for others. I'm also including an amp.jpeg in the directory, along with the metadata.json
The text was updated successfully, but these errors were encountered: