https://github.com/astrocorp/obs-countdown
Cuenta atrás para OBS Studio
https://github.com/astrocorp/obs-countdown
Last synced: about 1 year ago
JSON representation
Cuenta atrás para OBS Studio
- Host: GitHub
- URL: https://github.com/astrocorp/obs-countdown
- Owner: AstroCorp
- License: mit
- Created: 2021-10-23T15:19:21.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-10-23T17:54:10.000Z (over 4 years ago)
- Last Synced: 2025-02-15T14:34:21.284Z (over 1 year ago)
- Language: JavaScript
- Size: 344 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# OBS Countdown
Cuenta atrás para OBS Studio
## Instrucciones
1. Añadir navegador a la escena
2. Abrir preferencias del navegador añadido
3. Definir URL para abrir el index.html del contador
4. Añadir parámetro "seconds" a la url para definir duración de la cuenta atrás
5. Aplicar css al texto del contador
6. Sustituir ttf para modificar la fuente usada
## Configuración de ejemplo:

```
file:///B:/Documentos/Proyectos/OBS-Countdown/index.html?seconds=40
```
```
#time {
font-size: 128px;
background: #C89A6A;
background: linear-gradient(to bottom, #C89A6A 0%, #C09366 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
filter: drop-shadow(0px 3px 6px #000000CC);
}
```