diff --git a/README.md b/README.md index 64c66a9..6e6ebf8 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,8 @@ * Move the `streamupload` directory to a place that is accessible to the web server, like: `mv streamupload /var/www` and `cd` to that place. Now the output of `pwd` is the value for `$repopath`. +* do `mkdir "$repopath/uploadpage/streams"` and + `chmod 777 "$repopath/uploadpage/streams"`. * Copy `_vars` to `vars`, `_mailhash` to `mailhash` and `_countdown` to `countdown` and set the variables in `vars` (webserver, SMTP-server), `mailhash` (usernames, emails and bcrypt-password-hashes) and `countdown` diff --git a/stream b/stream index 24755dd..d7f2f93 100755 --- a/stream +++ b/stream @@ -20,7 +20,7 @@ esac # Stream, log it, and remove all files if successful set -o pipefail # to get ffmpeg's returncode -ffmpeg -re -y -i "$in" -c:v copy -c:a copy -f flv "$rtmp" |tail -n 20 >"$in.log" && +ffmpeg -re -y -i "$in" -c:v copy -c:a copy -f flv "$rtmp" 2>&1 |tail -n 20 >"$in.log" && rm "$in.log" "$in" "${in%.mp4}" || echo "Error while streaming $1" >>"$log" diff --git a/uploadpage/streams/.gitkeep b/uploadpage/streams/.gitkeep deleted file mode 100755 index e69de29..0000000