From 5266a7a25fdf1d9a6935216031ec706c6a21b028 Mon Sep 17 00:00:00 2001 From: kev Date: Wed, 11 Sep 2024 18:17:40 +0800 Subject: [PATCH] update owncast --- owncast/README.md | 19 ++++++++++++++++++- owncast/docker-compose.yml | 2 +- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/owncast/README.md b/owncast/README.md index 85d53a4..271383f 100644 --- a/owncast/README.md +++ b/owncast/README.md @@ -12,7 +12,7 @@ version: "3.8" services: owncast: image: owncast/owncast:0.1.3 - command: /app/owncast -backupdir=/app/data -database=/app/data/database.db + command: /app/owncast ports: - "1935:1935" - "8080:8080" @@ -42,4 +42,21 @@ OBS is a pretty good piece of free software that will get you streaming from you - Start the server. - Press “Start Streaming” (OBS) or “Go Live” (Streamlabs) on OBS. +## Recommended Mobile Apps + +- Android: https://play.google.com/store/apps/details?id=com.streamlabs&hl=en_US +- iOS: https://apps.apple.com/us/app/streamlabs-live-streaming-app/id1294578643 + +## 3rd-party Integrations + +- https://owncast.online/thirdparty/apis/ +- http://127.0.0.1:8080/admin/access-tokens/ + +```bash +$ API_URL=http://127.0.0.1:8080/api/integrations +$ API_TOKEN=****** +$ curl -X POST -H "Content-Type: application/json" -H "Authorization: Bearer $API_TOKEN" -d '{"body": "I am a system message!"}' $API_URL/chat/system +{"message":"sent","success":true} +``` + [1]: https://owncast.online/ diff --git a/owncast/docker-compose.yml b/owncast/docker-compose.yml index 1b273a9..65c3b87 100644 --- a/owncast/docker-compose.yml +++ b/owncast/docker-compose.yml @@ -2,7 +2,7 @@ version: "3.8" services: owncast: image: owncast/owncast:0.1.3 - command: /app/owncast -backupdir=/app/data -database=/app/data/database.db + command: /app/owncast ports: - "1935:1935" - "8080:8080"