{"id":26539770,"url":"https://github.com/squiddy/godot-ios-midi","last_synced_at":"2026-05-18T00:35:11.966Z","repository":{"id":283357806,"uuid":"951492381","full_name":"squiddy/godot-ios-midi","owner":"squiddy","description":"MIDI plugin for Godot on iOS","archived":false,"fork":false,"pushed_at":"2025-04-05T08:35:22.000Z","size":5,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-30T14:29:14.261Z","etag":null,"topics":["godot","godot-plugin","ios","midi"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/squiddy.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-03-19T19:05:38.000Z","updated_at":"2025-04-05T08:35:25.000Z","dependencies_parsed_at":"2025-03-19T20:46:50.624Z","dependency_job_id":null,"html_url":"https://github.com/squiddy/godot-ios-midi","commit_stats":null,"previous_names":["squiddy/godot-ios-midi"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/squiddy/godot-ios-midi","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/squiddy%2Fgodot-ios-midi","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/squiddy%2Fgodot-ios-midi/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/squiddy%2Fgodot-ios-midi/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/squiddy%2Fgodot-ios-midi/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/squiddy","download_url":"https://codeload.github.com/squiddy/godot-ios-midi/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/squiddy%2Fgodot-ios-midi/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33160524,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T22:39:12.733Z","status":"ssl_error","status_checked_at":"2026-05-17T22:39:10.741Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["godot","godot-plugin","ios","midi"],"created_at":"2025-03-22T00:18:56.045Z","updated_at":"2026-05-18T00:35:11.951Z","avatar_url":"https://github.com/squiddy.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"#  MIDI plugin for Godot on iOS\n\nI hacked this together after discovering that the MIDI support in Godot is not\navailable on iOS. This plugin uses the CoreMIDI framework to receive MIDI\nevents.\n\n## Build\n\n1. Install `uv` from https://docs.astral.sh/uv/\n2. Install `xcode` and command line tools\n3. Build godot headers by running `make godot-headers`\n3. Run `make`\n4. Copy `bin/godot_ios_midi.a` and `src/godot_ios_midi.gdip` to your Godot project's `ios/plugins` directory\n5. Enable plugin on export\n\n## Usage\n\n```csharp\npublic override void _Ready()\n{\n    if (Engine.HasSingleton(\"MidiIOS\"))\n    {\n        var plugin = Engine.GetSingleton(\"MidiIOS\");\n        plugin.Connect(\n            \"midi_event\",\n            Callable.From(\n                (Godot.Collections.Dictionary eventData) =\u003e OnMidiEvent(eventData)\n            )\n        );\n    }\n}\n\npublic void OnMidiEvent(Godot.Collections.Dictionary eventData)\n{\n    byte[] midiBytes = (byte[])eventData[\"data\"];\n    var timestamp = (double)eventData[\"timestamp\"];\n\n    GD.Print(\n        $\"MIDI Event Received - Timestamp: {timestamp}, Data: {BitConverter.ToString(midiBytes)}\n    );\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsquiddy%2Fgodot-ios-midi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsquiddy%2Fgodot-ios-midi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsquiddy%2Fgodot-ios-midi/lists"}