How to Archive a YouTube Playlist

Download

Retry, notify, and trap too

set -Eexo pipefail
export http_proxy="http://127.0.0.1:25345"
export https_proxy="http://127.0.0.1:25345"
start="${3}"
end="${4}"
dest="${2}"
mkdir -p "${start}-${end}"
cd "${start}-${end}"
for ((i=start; i<=end; i++)); do
  yt-dlp -N 4 --downloader axel --playlist-items "$i" "$1"
  rename 's/.+p(\d+) (.+) \[.+mp4/sprintf("%03d - %s.mp4", ($1\/2)+0.5, $2)/e' *
  rclone move . "$dest" --include="*.mp4" -P
done
echo "Please input url"
read url
echo "Please input dest"
read dest
echo "Please input the start"
read start
echo "Please input the end"
read end
seq $start $end | parallel --tmux -mj 4 "bash task.sh '$url' '$dest' {1} {-1} ; notify.sh 'Upload {1} - {-1} to $dest Complete' ; sleep $((24*3600))"
bash task.sh "$url" "$dest" $start $end ; notify.sh "Upload $start - $end to $dest Complete"

Rename

rename -n 's/.+p (\d+) .+\.mkv/sprintf("%02d.mkv", $1)/e' *

Upload

set -Eexo pipefail
echo "source:"
read source
echo "Identifier:"
read identifier
for i in {1..12} ; do
  rclone copy "$source" "ia:$identifier" --progress --transfers 3 --internetarchive-front-endpoint="https://proxy.esperoj.workers.dev/https://archive.org"
# --internetarchive-wait-archive=1800
  sleep 1800
done

Add to database

echo "Identifier:"
read identifier
esperoj ingest_audiobook "$identifier"