mirror of
https://github.com/zoriya/snow.git
synced 2025-12-06 07:16:19 +00:00
15 lines
484 B
Bash
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)"
|