34 lines
1.3 KiB
Text
34 lines
1.3 KiB
Text
/* Load config from another file at any point by doing:
|
|
import "filename.kdl"
|
|
*/
|
|
|
|
|
|
secrets {
|
|
/* Some features require authorization! Its recommended to place these in a
|
|
seperate file and import them!!!!!!
|
|
|
|
For twitch, you can generate credentials via https://ovtk.skeh.site/twitch_auth
|
|
and paste them in the tag below */
|
|
Twitch {
|
|
|
|
}
|
|
/* For YouTube, you need to download a client-secrets.json file and place it
|
|
somewhere safe - see https://seo-michael.co.uk/how-to-create-your-own-youtube-api-key-id-and-secret
|
|
Then, uncomment below, replacing the path to where you put your file */
|
|
YoutubeLive {
|
|
// client_secrets_path r"C:\path\To\Client\Secrets\File.json"
|
|
}
|
|
}
|
|
|
|
/* Uncomment (and fill in options) for Twitch
|
|
channel_name: The name of the channel you wish to monitor (doesnt have to be yours)
|
|
name (optional): The name of this chat (to differenciate when monitoring multiple) */
|
|
// chat "Twitch" channel_name=""
|
|
|
|
/* Uncomment for YoutubeLive */
|
|
// chat "YoutubeLive"
|
|
|
|
/* Silly testing chat (useful for testing scroll / bursts in a chat display)
|
|
max_messages_per_chunk: The upper bound of messages to create per burst
|
|
max_delay: The upper bound of how long to wait between chunks */
|
|
// chat "FakeChat" max_messages_per_chunk=3 max_delay=10
|