{"id":18451955,"url":"https://github.com/andreykaipov/goobs","last_synced_at":"2026-02-16T20:21:42.165Z","repository":{"id":37639816,"uuid":"361210338","full_name":"andreykaipov/goobs","owner":"andreykaipov","description":"Go client library for OBS Studio","archived":false,"fork":false,"pushed_at":"2025-06-20T00:02:31.000Z","size":3226,"stargazers_count":153,"open_issues_count":1,"forks_count":24,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-06-20T01:18:36.040Z","etag":null,"topics":["go","go-client","obs-studio","obs-websocket","obs-websocket-go","openbroadcaster","openbroadcastersoftware","websockets"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/andreykaipov.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,"zenodo":null}},"created_at":"2021-04-24T16:23:15.000Z","updated_at":"2025-06-09T07:58:21.000Z","dependencies_parsed_at":"2023-12-19T07:25:53.515Z","dependency_job_id":"5477a2c9-9095-436d-829b-7f1435c264f7","html_url":"https://github.com/andreykaipov/goobs","commit_stats":null,"previous_names":[],"tags_count":40,"template":false,"template_full_name":null,"purl":"pkg:github/andreykaipov/goobs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreykaipov%2Fgoobs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreykaipov%2Fgoobs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreykaipov%2Fgoobs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreykaipov%2Fgoobs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andreykaipov","download_url":"https://codeload.github.com/andreykaipov/goobs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andreykaipov%2Fgoobs/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261367509,"owners_count":23147852,"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","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":["go","go-client","obs-studio","obs-websocket","obs-websocket-go","openbroadcaster","openbroadcastersoftware","websockets"],"created_at":"2024-11-06T07:29:49.618Z","updated_at":"2026-02-16T20:21:42.145Z","avatar_url":"https://github.com/andreykaipov.png","language":"Go","funding_links":[],"categories":["Go"],"sub_categories":[],"readme":"# goobs\n\n[![Protocol Version][protocol-img]][protocol-url]\n[![Documentation][doc-img]][doc-url]\n[![Build Status][build-img]][build-url]\n[![Go Report][goreport-img]][goreport-url]\n\n[protocol-img]: https://img.shields.io/badge/obs--websocket-v5.6.3-blue?logo=obs-studio\u0026style=flat-square\n[protocol-url]: https://github.com/obsproject/obs-websocket/blob/5.6.3/docs/generated/protocol.md\n[doc-img]: https://img.shields.io/badge/pkg.go.dev-reference-blue?logo=go\u0026logoColor=white\u0026style=flat-square\n[doc-url]: https://pkg.go.dev/github.com/andreykaipov/goobs\n[build-img]: https://img.shields.io/github/actions/workflow/status/andreykaipov/goobs/ci.yml?logo=github\u0026style=flat-square\u0026branch=main\n[build-url]: https://github.com/andreykaipov/goobs/actions/workflows/ci.yml\n[goreport-img]: https://goreportcard.com/badge/github.com/andreykaipov/goobs?logo=go\u0026logoColor=white\u0026style=flat-square\n[goreport-url]: https://goreportcard.com/report/github.com/andreykaipov/goobs\n\nInteract with OBS Studio from Go!\n\n## installation\n\nTo use this library in your project, add it as a module after you've initialized your own:\n\n```console\n❯ go mod init github.com/beautifulperson/my-cool-obs-thing\n❯ go get github.com/andreykaipov/goobs\n```\n\n## usage\n\nThe following example connects to the server and prints out some versions.\n\nCheck out the [docs](./docs/README.md) for more info, or just jump right into the [other examples](./_examples)!\n\n[//]: # (snippet-1-begin)\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\n\t\"github.com/andreykaipov/goobs\"\n)\n\nfunc main() {\n\tclient, err := goobs.New(\"localhost:4455\", goobs.WithPassword(\"goodpassword\"))\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\tdefer client.Disconnect()\n\n\tversion, err := client.General.GetVersion()\n\tif err != nil {\n\t\tpanic(err)\n\t}\n\n\tfmt.Printf(\"OBS Studio version: %s\\n\", version.ObsVersion)\n\tfmt.Printf(\"Server protocol version: %s\\n\", version.ObsWebSocketVersion)\n\tfmt.Printf(\"Client protocol version: %s\\n\", goobs.ProtocolVersion)\n\tfmt.Printf(\"Client library version: %s\\n\", goobs.LibraryVersion)\n}\n```\n[//]: # (snippet-1-end)\n\nThe corresponding output:\n\n[//]: # (snippet-2-begin)\n```console\n❯ go run _examples/basic/main.go\nOBS Studio version: 32.1.0\nServer protocol version: 5.6.3\nClient protocol version: 5.6.3\nClient library version: 1.7.1\n```\n[//]: # (snippet-2-end)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandreykaipov%2Fgoobs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandreykaipov%2Fgoobs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandreykaipov%2Fgoobs/lists"}