[READ-ONLY] Mirror of https://github.com/mrgnw/dotfiles. My shell customizations - aliases, functions, and themes.
dotfiles shell zinit zsh
0

Configure Feed

Select the types of activity you want to include in your feed.

Create yt_dlp.zsh

+11
+11
yt_dlp.zsh
··· 1 + export YT_OUTPUT_DIR=$ICLOUD/Downloads 2 + 3 + # Prefer MP4 format with best quality 4 + export YT_DLP_DEFAULT_OPTS="--format 'bv*[ext=mp4]+ba[ext=m4a]/b[ext=mp4]/bv*+ba/b'" 5 + 6 + # Download subtitles, embed them, and set language preferences 7 + export YT_DLP_DEFAULT_OPTS="$YT_DLP_DEFAULT_OPTS --sub-langs 'en.*,-live_chat' --embed-subs" 8 + 9 + # Additional useful defaults 10 + export YT_DLP_DEFAULT_OPTS="$YT_DLP_DEFAULT_OPTS --embed-thumbnail --add-metadata" 11 +