{"id":37165914,"url":"https://github.com/bdogan/go-atem","last_synced_at":"2026-01-14T19:39:52.123Z","repository":{"id":57524306,"uuid":"156069760","full_name":"bdogan/go-atem","owner":"bdogan","description":" BlackMagicDesign ATEM switcher protocol implementation. Written in go.","archived":false,"fork":false,"pushed_at":"2018-11-19T02:28:53.000Z","size":80,"stargazers_count":13,"open_issues_count":3,"forks_count":4,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-06-20T11:11:04.720Z","etag":null,"topics":["atem","go","golang","iot"],"latest_commit_sha":null,"homepage":"","language":"Go","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/bdogan.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}},"created_at":"2018-11-04T10:12:55.000Z","updated_at":"2021-05-20T22:28:46.000Z","dependencies_parsed_at":"2022-09-26T18:11:14.298Z","dependency_job_id":null,"html_url":"https://github.com/bdogan/go-atem","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/bdogan/go-atem","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bdogan%2Fgo-atem","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bdogan%2Fgo-atem/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bdogan%2Fgo-atem/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bdogan%2Fgo-atem/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bdogan","download_url":"https://codeload.github.com/bdogan/go-atem/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bdogan%2Fgo-atem/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28432671,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T18:57:19.464Z","status":"ssl_error","status_checked_at":"2026-01-14T18:52:48.501Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":["atem","go","golang","iot"],"created_at":"2026-01-14T19:39:51.420Z","updated_at":"2026-01-14T19:39:52.117Z","avatar_url":"https://github.com/bdogan.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ATEM\n\nBlackMagicDesign ATEM switcher protocol implementation. Written in go.\n\n## Installation\n```sh\ngo get -u github.com/bdogan/go-atem\n```\n\n## Usage\nATEM client requires IP address to connect device\n\n```go\npackage main\n\nimport (\n\t\"log\"\n\t\n\t\"github.com/bdogan/go-atem\"\n)\n\ntype app struct {\n\tatemClient atem.Atem\n}\n\nfunc (at *app) onAtemConnected()  {\n\tlog.Printf(\"ATEM connected at %s. UID:%d\\n\", atemClient.Ip, at.atemClient.UID)\n\tlog.Printf(\"Product ID: %s, Protocol Version: %s\\n\", at.atemClient.ProductId.String(), at.atemClient.ProtocolVersion.String())\n}\n\nfunc (at *app) onAtemClosed()  {\n\tlog.Println(\"Connection closed\")\n}\n\nfunc main() {\n\n\t// Create Application\n\tapp := app{\n\t\tatemClient: atem.Create(\"192.168.0.2\", true),\n\t}\n\n\t// Set connected handler\n\tapp.atemClient.On(\"connected\", app.onAtemConnected)\n\n\t// Set closed handler\n\tapp.atemClient.On(\"closed\", app.onAtemClosed)\n\n\t// Make connection\n\tapp.atemClient.Connect()\n\n}\n```\n\n## Reference\n\n* [BlackMagic ATEM Switcher Protocol @kasperskaarhoj](https://www.skaarhoj.com/fileadmin/BMDPROTOCOL.html)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbdogan%2Fgo-atem","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbdogan%2Fgo-atem","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbdogan%2Fgo-atem/lists"}