blob: 6416a15e53d4e1e2ffc356faff60eed89b042cc6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
inp="$(ytlink)"
>&2 printf "inp: %s\n" "$inp"
# notify-send "ytclipo" "downloading <i>$inp</i>" || :
yt-dlp "$inp" \
--restrict-filenames \
--embed-chapters \
-f "b" \
-S "res:1080" \
-P "$HOME/vids/youtube/" \
-o "%(channel)s/%(title)s.%(ext)s"
# notify-send "ytclipo" "finished downloading." || :
|