youtube-urls-feed/scripts/allow-user-videos.sh
Eliezer Croitoru 214d11a70a 2
2024-08-18 08:01:36 +03:00

13 lines
320 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 -v --flat-playlist --print id "${CHANNEL_URL}" | tee "allowed-channels/${USER_ID}.txt"
else
echo "Missing a valid channel URL" >&2
fi