From 8ff733f60dbdaac4a665311e87fe6a24b27c4455 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Mon, 26 Jan 2026 17:41:48 -0600 Subject: feat(dotfiles): add yt-dlp config with modern options Replaces old youtube-dl config with yt-dlp equivalent using updated option names: - --add-metadata -> --embed-metadata - --format best -> --format bestvideo+bestaudio/best Co-Authored-By: Claude Opus 4.5 --- dotfiles/common/.config/yt-dlp/config | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 dotfiles/common/.config/yt-dlp/config (limited to 'dotfiles') diff --git a/dotfiles/common/.config/yt-dlp/config b/dotfiles/common/.config/yt-dlp/config new file mode 100644 index 0000000..6b99261 --- /dev/null +++ b/dotfiles/common/.config/yt-dlp/config @@ -0,0 +1,20 @@ +# yt-dlp config +# Craig Jennings + +# Embed metadata into file +--embed-metadata + +# Best quality video+audio, fallback to best single file +--format bestvideo+bestaudio/best + +# Don't overwrite existing files +--no-overwrites + +# Continue on errors (useful for playlists) +--ignore-errors + +# Best audio quality for audio extraction (0=best, 9=worst) +--audio-quality 0 + +# Output template: ~/videos/channel-title.ext +-o ~/videos/%(channel)s-%(title)s.%(ext)s -- cgit v1.2.3