youtube-urls-feed/scripts/allow-user-videos.sh
Eliezer Croitoru 99d6f00aac Periodic update
2024-08-30 05:52:40 +03:00

13 lines
365 B
Bash
Executable File

#!/usr/bin/env bash
USER_ID="$1"
echo "${USER_ID}" |egrep "^([a-zA-Z0-9@]+)$" >/dev/null
if [ "$?" -eq "0" ]
then
CHANNEL_URL="https://www.youtube.com/${USER_ID}/videos"
yt-dlp --netrc --netrc-location /root/.netrc --verbose --flat-playlist --print id "${CHANNEL_URL}" | tee "allowed-channels/${USER_ID}.txt"
else
echo "Missing a valid channel URL" >&2
fi