Files
snow/charts/meelo/ytdlp/ytdlp-sync.sh

15 lines
484 B
Bash

#!/usr/bin/env bash
yt-dlp "$LIVES_URL" -o "$LIVES_OUT/%(title)s.%(ext)s" \
--embed-thumbnail --embed-metadata --embed-chapters \
--download-archive "$LIVES_OUT/ytdlp-archive.txt" \
--cookies /app/secrets/cookies.txt \
--cache-dir "$(pwd)"
yt-dlp "$URL" -o "$OUT/%(artist)s - %(title)s.%(ext)s" \
--extract-audio \
--embed-thumbnail --embed-metadata --embed-chapters \
--download-archive "$OUT/ytdlp-archive.txt" \
--cookies /app/secrets/cookies.txt \
--cache-dir "$(pwd)"