Initial commit: overlay + sender pages for StreamLabs browser source
Express + Socket.IO backend with Google login on the sender page, a transparent overlay page for OBS/StreamLabs Browser Source, and TTS voice-over via the edge-tts Python CLI (same engine as t2sTelegramBot). Dockerized for deployment. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
commit
7882db1f37
12 changed files with 1930 additions and 0 deletions
15
.env.example
Normal file
15
.env.example
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
PORT=3000
|
||||
|
||||
# OAuth 2.0 Client ID (Web application) from https://console.cloud.google.com/apis/credentials
|
||||
# Authorized JavaScript origins must include the origin you open sender.html from,
|
||||
# e.g. http://localhost:3000 for local dev.
|
||||
GOOGLE_CLIENT_ID=
|
||||
|
||||
# Random long string, used to sign the session cookie. Generate with:
|
||||
# node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
|
||||
SESSION_SECRET=
|
||||
|
||||
# Microsoft Edge Read Aloud voice used for TTS (free, no API key needed).
|
||||
# Same engine as t2sTelegramBot uses. List of voices: `npx edge-tts-node --list-voices` (if available)
|
||||
# or see https://github.com/Migushthe2nd/MsEdgeTTS
|
||||
TTS_VOICE=ru-RU-DmitryNeural
|
||||
Loading…
Add table
Add a link
Reference in a new issue