alpha
Login
or
Join now
xcc.es
/
dotfiles
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/mrgnw/dotfiles. My shell customizations - aliases, functions, and themes.
dotfiles
shell
zinit
zsh
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Create yt_dlp.zsh
author
Morgan
date
1 year ago
(Mar 22, 2025, 1:18 PM +0100)
commit
f3a777d4
f3a777d4443e34772919acffddd3f4bf43935c27
parent
96cba3d1
96cba3d1c3185dc6344df13a3fa657e00a06cb69
+11
1 changed file
Expand all
Collapse all
Unified
Split
yt_dlp.zsh
+11
yt_dlp.zsh
View file
Reviewed
···
1
1
+
export YT_OUTPUT_DIR=$ICLOUD/Downloads
2
2
+
3
3
+
# Prefer MP4 format with best quality
4
4
+
export YT_DLP_DEFAULT_OPTS="--format 'bv*[ext=mp4]+ba[ext=m4a]/b[ext=mp4]/bv*+ba/b'"
5
5
+
6
6
+
# Download subtitles, embed them, and set language preferences
7
7
+
export YT_DLP_DEFAULT_OPTS="$YT_DLP_DEFAULT_OPTS --sub-langs 'en.*,-live_chat' --embed-subs"
8
8
+
9
9
+
# Additional useful defaults
10
10
+
export YT_DLP_DEFAULT_OPTS="$YT_DLP_DEFAULT_OPTS --embed-thumbnail --add-metadata"
11
11
+