Stats (downloaded and errored)

This commit is contained in:
DarkCat09 2023-01-27 11:45:14 +04:00
parent 83552731d8
commit 019c8308f4

View file

@ -3,6 +3,8 @@
debug=0
watching=1
links=()
success=0
error=0
# -------
# Helpers
@ -113,7 +115,15 @@ dlwith_piped () {
fi
echo "Downloading with wget"
wget -O "$video_file" "$stream_url"
if wget -O "$video_file" "$stream_url"
then
bold "OK"
success=$(( success + 1 ))
else
bold "Error"
error=$(( error + 1 ))
fi
echo
done
@ -160,7 +170,15 @@ dlwith_ytdlp () {
fi
echo "Downloading with yt-dlp"
yt-dlp -f "$format" -o "$video_file" -P ./files/ "$newlink"
if yt-dlp -f "$format" -o "$video_file" -P ./files/ "$newlink"
then
bold "OK"
success=$(( success + 1 ))
else
bold "Error"
error=$(( error + 1 ))
fi
echo
done
@ -234,6 +252,11 @@ main() {
dlwith_ytdlp
fi
# Show result
bold "Downloaded: $success"
bold "Errors: $error"
echo
# Waiting for the response
echo 'Press Ctrl+C to exit'
while true; do :; done