{"id":22090872,"url":"https://github.com/ninovanhooff/midi-master","last_synced_at":"2025-10-11T23:30:53.480Z","repository":{"id":88993462,"uuid":"517008861","full_name":"ninovanhooff/MIDI-Master","owner":"ninovanhooff","description":"MIDI Mastering tool for playdate","archived":false,"fork":false,"pushed_at":"2023-12-02T21:05:45.000Z","size":1688,"stargazers_count":6,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-05T01:23:17.160Z","etag":null,"topics":["playdate","playdate-console"],"latest_commit_sha":null,"homepage":"","language":"Lua","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ninovanhooff.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2022-07-23T09:04:51.000Z","updated_at":"2024-08-29T01:43:53.000Z","dependencies_parsed_at":"2023-06-13T11:45:19.419Z","dependency_job_id":null,"html_url":"https://github.com/ninovanhooff/MIDI-Master","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/ninovanhooff/MIDI-Master","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ninovanhooff%2FMIDI-Master","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ninovanhooff%2FMIDI-Master/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ninovanhooff%2FMIDI-Master/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ninovanhooff%2FMIDI-Master/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ninovanhooff","download_url":"https://codeload.github.com/ninovanhooff/MIDI-Master/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ninovanhooff%2FMIDI-Master/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279009392,"owners_count":26084580,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["playdate","playdate-console"],"created_at":"2024-12-01T02:17:42.330Z","updated_at":"2025-10-11T23:30:53.168Z","avatar_url":"https://github.com/ninovanhooff.png","language":"Lua","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MIDI Master (Playdate)\n\nA tool for mastering MIDI files. Masters can be played back as background music in a Playdate Lua SDK game.\n\n[![IMAGE ALT TEXT HERE](https://img.youtube.com/vi/X_TIjVMSLE8/0.jpg)](https://www.youtube.com/watch?v=X_TIjVMSLE8)\n\nClick the image for a demo video on Youtube.\n\nThe resulting songs can be integrated into a Playdate game using the [Master Player](https://github.com/ninovanhooff/master-player) component\n\nMasters are saved in the Data folder.\nThis folder is created when you first save a master. On Mac, the location of that folder is `~/Developer/PlaydateSDK/Disk/Data/com.ninovanhooff.midimaster`\n\n## Differences between Simulator and hardware playback\n\nThere may be differences in playback between Simulator and hardware devices, this also includes \ncases where songs sound better on hardware. Testing on hardware is always recommended.\n\n## Add your own songs\n\n### Using the MIDI Master pdx\n\nOpen the pdx folder (Mac: right-click the pdx and select \"Show package contents\").\nAdd your songs to the \"songs\" folder inside the pdx.\n\n### When compiling MIDI Master from source\n\nAdd your songs to the Source/songs folder. Then compile the project.\nIn a terminal, navigate to the folder where this READMe.md file is located and execute (mac command):\n\n`pdc Source midi_master.pdx \u0026\u0026 open midi_master.pdx`\n\n## Controls\n\n### Playdate controls\n\n- dpad left/right: select parameter to adjust (volume, instrument, attack decay, sustain, release ...)\n- dpad up/down: select channel a.k.a. track a.k.a instrument\n- select dpad up to select the song title and press A to save the current master and load the next song\n- A: increase selected parameter value\n- B: Decrease selected parameter value\n- Crank: scrobble song (rewind / fast forward)\n\n### Keyboard controls\n\nKeyboard controls can be used in simulator or when using the simulator to control the device.\n\nSee the bottom part of [ViewModel.lua](https://github.com/ninovanhooff/MIDI-Master/blob/main/Source/editor/EditorViewModel.lua)\nfor the mappings\n\n## Add your own sampled instruments (for Developers)\n\nMIDI Master comes with a few bundled sampled instruments. These are included as [Toyboxes](https://github.com/toyboxpy/toybox.py).\nTo add your own instrument, create a Toybox out of it.\n\nSteps to add your own instrument to MIDI Master:\n\n- Create your own instrument as a Toybox./ See these examples: [Choir Ah](https://github.com/ninovanhooff/master-player-choir-ah), [Drums Electric](https://github.com/ninovanhooff/master-player-drums-electric).\n- Download the MIDI Master source code\n- Download [Toybox](https://github.com/toyboxpy/toybox.py)\n- Use Toybox to add your instrument to MIDI Master\n- open [main.lua](https://github.com/ninovanhooff/MIDI-Master/blob/main/Source/main.lua) and add your instrument using the `masterplayer.addInstrument()` function\n- compile MIDI Master\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fninovanhooff%2Fmidi-master","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fninovanhooff%2Fmidi-master","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fninovanhooff%2Fmidi-master/lists"}