better jq invocation

This commit is contained in:
Alexander Bocken 2021-06-27 16:05:56 +02:00
parent 8aaeb0ae31
commit 08a6cdc508
Signed by: Alexander
GPG Key ID: 1D237BE83F9B05E8

4
ripper
View File

@ -88,8 +88,8 @@ for channel_id in $IDs; do
echo "Is https://youtube.com/channel/$channel_id still up?" echo "Is https://youtube.com/channel/$channel_id still up?"
else else
#Only try to download videos, not sheduled livestreams #Only try to download videos, not sheduled livestreams
echo "$json" | jq '.items[] | select(.snippet.liveBroadcastContent != "upcoming") | .id.videoId' | echo "$json" | jq '.items[] | select(.snippet.liveBroadcastContent != "upcoming") | select(.id.videoId != null) |.id.videoId' |
tr -d '"' | grep -v '^null$'| tr -d '"' |
sed 's/^/https:\/\/www\.youtube\.com\/watch\?v=/' | sed 's/^/https:\/\/www\.youtube\.com\/watch\?v=/' |
grep -vf "$BLACKLIST" >> /tmp/todownload$$ grep -vf "$BLACKLIST" >> /tmp/todownload$$
fi fi