{"id":50131220,"url":"https://github.com/keijiro/KlakSyphon","last_synced_at":"2026-05-29T20:00:33.626Z","repository":{"id":45820824,"uuid":"130218425","full_name":"keijiro/KlakSyphon","owner":"keijiro","description":"Syphon plugin for Unity","archived":false,"fork":false,"pushed_at":"2025-11-16T14:34:29.000Z","size":863,"stargazers_count":261,"open_issues_count":2,"forks_count":24,"subscribers_count":18,"default_branch":"master","last_synced_at":"2026-05-29T09:35:49.608Z","etag":null,"topics":["graphics","plugin","syphon","unity","unity3d"],"latest_commit_sha":null,"homepage":"","language":"Objective-C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/keijiro.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2018-04-19T13:17:42.000Z","updated_at":"2026-04-28T21:54:53.000Z","dependencies_parsed_at":"2023-11-25T08:22:51.940Z","dependency_job_id":"91bfaf88-9eb9-4ced-a680-f652d285ab3e","html_url":"https://github.com/keijiro/KlakSyphon","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/keijiro/KlakSyphon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keijiro%2FKlakSyphon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keijiro%2FKlakSyphon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keijiro%2FKlakSyphon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keijiro%2FKlakSyphon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/keijiro","download_url":"https://codeload.github.com/keijiro/KlakSyphon/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/keijiro%2FKlakSyphon/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33668186,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-05-29T02:00:06.066Z","response_time":107,"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":["graphics","plugin","syphon","unity","unity3d"],"created_at":"2026-05-23T21:00:29.567Z","updated_at":"2026-05-29T20:00:33.620Z","avatar_url":"https://github.com/keijiro.png","language":"Objective-C","funding_links":[],"categories":["Objective-C","Game Development"],"sub_categories":["Unity Engine: Resources"],"readme":"# KlakSyphon\n\n![screenshot](https://i.imgur.com/eputm6Am.jpg)\n\n**KlakSyphon** is a Unity plugin that lets Unity send and receive video streams\nthrough the [Syphon] system.\n\n[Syphon]: http://syphon.v002.info\n\n## System Requirements\n\n- Unity 2022.3 or later\n- macOS system with Metal graphics API support\n\n## How to Install\n\nInstall the KlakSyphon package (`jp.keijiro.klak.syphon`) from the \"Keijiro\"\nscoped registry in Package Manager. Follow [these instructions] to add the\nregistry to your project.\n\n[these instructions]:\n  https://gist.github.com/keijiro/f8c7e8ff29bfe63d86b888901b82644c\n\n## Syphon Server Component\n\n![Syphon Server](https://github.com/user-attachments/assets/87d76625-72c2-4764-9c76-d522bb815b42)\n\nUse the **Syphon Server** component to send a video stream. It provides three\ncapture methods:\n\n- **Game View**: Captures the content of the Game View.\n- **Camera**: Captures a specified camera.\n- **Texture**: Captures a 2D texture or a Render Texture.\n\nThe Camera capture method is available only on URP and HDRP—you can't use it on\nthe built-in render pipeline.\n\nThe **KeepAlpha** property controls whether the alpha channel is preserved or\ncleared. Enable [alpha output] when using HDRP. On URP, select the Texture\ncapture method to output alpha.\n\n[alpha output]:\n  https://docs.unity3d.com/Packages/com.unity.render-pipelines.high-definition@12.0/manual/Alpha-Output.html\n\n## Syphon Client Component\n\n![Syphon Client](https://github.com/user-attachments/assets/0cf494ef-6df9-4dbc-899e-a6874fcf6093)\n\nUse the **Syphon Client** component to receive a video stream. It stores\nincoming frames in the Target Texture and overrides the material property set\nin the Target Renderer.\n\nYou can also access the received texture via the `SyphonClient.Texture`\nproperty.\n\n## Scripting Interface\n\nEnumerate available Syphon servers with the `SyphonServerDirectory` class; see\nthe [SourceSelector example] for details.\n\n[SourceSelector example]:\n  https://github.com/keijiro/KlakSyphon/blob/main/Assets/Scripts/SourceSelector.cs\n\nYou can create Syphon servers or clients at runtime, but you must assign the\n`SyphonResources` asset (which holds references to package assets) after\ninstantiation.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeijiro%2FKlakSyphon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkeijiro%2FKlakSyphon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkeijiro%2FKlakSyphon/lists"}