This commit is contained in:
lulzette 2020-02-22 12:28:28 +03:00
parent 77fe8ad53b
commit d34ab6c572
2 changed files with 18 additions and 1 deletions

17
README.md Normal file
View File

@ -0,0 +1,17 @@
# Что это?
Скрипт который проверяет и начинает запись live стримов
# Как юзать?
* Поставить youtube-dl, python-twitch-client (TODO: создать requirements.txt для автоматической установки)
`pip3 install python-twitch-client youtube-dl`
* Переименовать файл conf_python.py.template в conf_python.py и добавить свой ключ (Можно получить на https://dev.twitch.tv/console)
* Переименовать файл list.sh.template в list.sh, добавить стримеров в параметре list (через пробел), изменить путь для сохранения стримов в path
* Добавить cron.sh в crontab, ну и офк убедиться что cron.service запущен (systemd timer не подойдет ибо он убивает child процессы после завершения работы родителя)
`*/5 * * * * /opt/twitch-downloader/cron.sh`

View File

@ -1,6 +1,6 @@
#!/usr/bin/python3
#################
# return 0 if streamer is live (continue exec while in bash), 1 if not
# return 0 if streamer is live (continue execution while in bash), 1 if not
#################
import sys
import conf_python