add dj exclusion list

This commit is contained in:
Ben Harris 2020-07-15 22:52:13 +00:00
parent b954d0e411
commit 0df120c2bf
2 changed files with 19 additions and 16 deletions

1
webhook/exclude-djs.txt Normal file
View File

@ -0,0 +1 @@
alrs

View File

@ -6,6 +6,7 @@ if ($json["live"]["is_live"]) {
// start recording
$streamer = $json["live"]["streamer_name"];
if (!in_array($streamer, file("exclude-djs.txt")) {
$current_pid = intval(file_get_contents("ffmpeg.pid"));
// posix_kill with 0 signal tells you if the process is running
if ($current_pid != "" && posix_kill($current_pid, 0)) die();
@ -24,6 +25,7 @@ if ($json["live"]["is_live"]) {
echo $pid;
file_put_contents("ffmpeg.pid", $pid);
}
} else {
// stop recording
$pid = file_get_contents("ffmpeg.pid");