02-ago: [proyecto] vigilancia - voz por edge-tts + casting a teles Google (pychromecast, enciende la tele en standby) + mensaje hablado limpio para Alexa/TVs

This commit is contained in:
minguezsanzjuanjose
2026-08-02 14:00:31 +02:00
parent 8215f21773
commit ec63aaab43
5 changed files with 129 additions and 1 deletions

View File

@@ -42,3 +42,9 @@ DISCORD_TOKEN = os.getenv("DISCORD_TOKEN", "").strip()
DISCORD_IDS = [
x.strip() for x in os.getenv("DISCORD_IDS", "").split(",") if x.strip()
]
GOOGLE_TV_ACTIVO = os.getenv("GOOGLE_TV_ACTIVO", "1") == "1"
GOOGLE_TV_NOMBRES = {
n.strip() for n in os.getenv("GOOGLE_TV_NOMBRES", "").split(",") if n.strip()
}
VOZ_EDGE = os.getenv("VOZ_EDGE", "es-ES-ElviraNeural")
GOOGLE_TV_PUERTO = int(os.getenv("GOOGLE_TV_PUERTO", "8500"))