@@ -34,36 +34,47 @@ References:
3434- [ Amazon Polly Description of Limits/Price] ( https://aws.amazon.com/polly/pricing/ )
3535- [ Setting up a user and how to use IAM] ( https://docs.aws.amazon.com/signer/latest/developerguide/iam-setup.html )
3636
37+ ### Twitch
38+ In order to use this to interface with twitch, you will need to create an application on [ Twitch's Dev Console] ( https://dev.twitch.tv/console )
39+ ![ Twitch Dev Console Landing Page] ( github/resources/twitch_application_registration_landing_page.png )
40+
41+ ![ Twitch Dev Console 'register your application' page] ( github/resources/twitch_application_registration.png )
42+
43+ Once you have created an application, you will be given a client ID and a Client Secret, you will place these in your ` tts-config.conf `
3744### Default configuration
3845
3946``` HOCON
40- aws-region = "US_EAST_1"
41- default-voice = "Kimberly"
42- aws-access-id = ""
43- aws-access-secret = ""
47+ aws-region= "US_EAST_1"
48+ aws-access-id= ""
49+ aws-secret-key= ""
50+ connect-to-twitch= false
51+ twitch-channel= ""
52+ twitch-app-client-id= ""
53+ twitch-app-client-secret= ""
4454replace-text {
45- "**" = "<prosody volume=\"x-loud\" pitch=\"low\" rate=\"slow\">"
46- "/*" = "</prosody>"
47- "*/" = "</prosody>"
48- "~~" = "<amazon:effect name=\"whispered\">"
49- "/~" = "</amazon:effect>"
50- "~/" = "</amazon:effect>"
51- "__" = "<emphasis level=\"strong\">"
52- "/_" = "</emphasis>"
53- "_/" = "</emphasis>"
54- "++" = "<prosody volume=\"x-loud\" rate=\"x-fast\" pitch=\"x-high\">"
55- "/+" = "</prosody>"
56- "+/" = "</prosody>"
57- "!!" = "<say-as interpret-as=\"expletive\">"
58- "/!" = "</say-as>"
59- "!/" = "</say-as>"
60- " - " = "<break time=\"300ms\"/>"
61- "<3" = "heart emoji"
55+ "**"= "<prosody volume=\"x-loud\" pitch=\"low\" rate=\"slow\">"
56+ "/*"= "</prosody>"
57+ "*/"= "</prosody>"
58+ "~~"= "<amazon:effect name=\"whispered\">"
59+ "/~"= "</amazon:effect>"
60+ "~/"= "</amazon:effect>"
61+ "__"= "<emphasis level=\"strong\">"
62+ "/_"= "</emphasis>"
63+ "_/"= "</emphasis>"
64+ "++"= "<prosody volume=\"x-loud\" rate=\"x-fast\" pitch=\"x-high\">"
65+ "/+"= "</prosody>"
66+ "+/"= "</prosody>"
67+ "!!"= "<say-as interpret-as=\"expletive\">"
68+ "/!"= "</say-as>"
69+ "!/"= "</say-as>"
70+ " - "= "<break time=\"300ms\"/>"
71+ "<3"= "heart emoji"
6272}
73+ default-voice= "Brian"
6374voice-prefixes {
64- "Sal:" = "Salli"
65- "Kim:" = "Kimberly"
66- "Bri:" = "Brian"
75+ "Sal:"= "Salli"
76+ "Kim:"= "Kimberly"
77+ "Bri:"= "Brian"
6778}
6879```
6980
0 commit comments