Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/audionerd/minimidi-data
TRS MIDI device dataset used by minimidi.world
https://github.com/audionerd/minimidi-data
Last synced: about 1 month ago
JSON representation
TRS MIDI device dataset used by minimidi.world
- Host: GitHub
- URL: https://github.com/audionerd/minimidi-data
- Owner: audionerd
- License: unlicense
- Created: 2019-12-16T11:10:51.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2024-01-25T06:08:22.000Z (12 months ago)
- Last Synced: 2024-01-26T06:27:56.936Z (12 months ago)
- Homepage: https://minimidi.world
- Size: 65.4 KB
- Stars: 18
- Watchers: 3
- Forks: 23
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# minimidi data
This is the dataset of TRS MIDI devices used for [minimidi.world](https://minimidi.world).
`devices.ttl` is a file in [Terse RDF Triple Language (Turtle)](https://www.w3.org/TR/turtle) syntax.
When submitting a PR, please try to comment with a link to an official source (manufacturer page url, link to manual with associated page number, etc) that documents the TRS MIDI type (A or B) used by the device.
## Template
```
_:label device:make "Make" .
_:label device:model "Model" .
_:label device:inputs 1 .
_:label device:outputs 1 .
_:label device:thrus 1 .
_:label device:swappable true .
_:label device:typeA true .
_:label device:typeB true .
_:label device:notes "Brief notes about the device" .
_:label device:details "Longer detailed description" .
_:label device:uri "https://example.com" .
_:label device:eurorack true .
```## Terms
`label` - lowercase, dash-delimited, url-friendly ASCII name for the device, usually `make-model` (see https://www.w3.org/TR/turtle/#grammar-production-PN_CHARS_BASE)
`device:make` - make of the device
`device:model` - model of the device
`device:inputs` - how many TRS MIDI inputs? (do not include DIN MIDI inputs)
`device:outputs` - how many TRS MIDI outputs? (do not include DIN MIDI outputs)
`device:thrus` - how many TRS MIDI thrus? (do not include DIN MIDI thrus)
`device:typeA` – does the device support Type A?
`device:typeB` – does the device support Type B?
`device:typeTS` - does the device support Type TS (mono)?
`device:swappable` – can the device be configured for EITHER Type A OR Type B?
`device:notes` – brief notes describing the device
`device:details` – longer details, especially regarding how the device works
`device:uri` – main official internet web page uri of the device
`device:eurorack` – (default: false) for devices available in both eurorack and non-eurorack, is this entry for a eurorack version of the device?