-
-
Notifications
You must be signed in to change notification settings - Fork 14
Notifications
agnostos edited this page Sep 24, 2025
·
2 revisions
| Setting | Description | Default | Example |
|---|---|---|---|
| enabled | Enable notifications | false | true/false |
| system_notify | Show system notifications | true | true/false |
| discord_webhook | Discord webhook URL | "" | "https://discord.com/api/webhooks/..." |
| discord_mention_id | Discord user/role ID to mention | "" | "123456789012345678" |
| telegram_bot_token | Telegram bot token | "" | "1234567890:ABCDEF..." |
| telegram_chat_id | Telegram chat ID | "" | "123456789" |
| notify_on_live_start | Send notification when stream starts | true | true/false |
| notify_on_live_end | Send notification when stream ends | false | true/false |
| send_contact_sheet_on_live_end | Attach the contact sheet as a thumbnail to the stream end notification. Requires notify_on_live_end and generate_contact_sheet (in live_settings) to be enabled. |
false |
true/false |
To set up Discord notifications:
- Create a webhook in your Discord server (Server Settings → Integrations → Webhooks)
- Copy the webhook URL to
discord_webhook - For the
discord_mention_idfield:- For user mentions: Simply add the user ID (e.g., "123456789012345678")
- For role mentions: Prefix the role ID with "role:" (e.g., "role:123456789012345678")
To get a user or role ID:
- Enable Developer Mode in Discord (User Settings → App Settings → Advanced → Developer Mode)
- Right-click on a user or role and select "Copy ID"
To set up Telegram notifications:
- Create a bot using BotFather and get the token
- Add the bot to your chat or group
- Get your chat ID (you can use userinfobot or send a message to your bot and check
https://api.telegram.org/bot<YOUR_BOT_TOKEN>/getUpdates) - Add the bot token to
telegram_bot_tokenand chat ID totelegram_chat_id
If you have generate_contact_sheet enabled in your [live_settings], you can set send_contact_sheet_on_live_end to true to attach the generated .jpg file as a visual thumbnail to your Discord or Telegram notification when a stream ends.
This provides a quick visual summary of the recorded stream directly in your notification.