updated README
This commit is contained in:
parent
70127c6918
commit
bde3e58618
56
README
56
README
@ -4,42 +4,66 @@ viewing and interacting with YouTube videos.
|
|||||||
Dependencies:
|
Dependencies:
|
||||||
- curl(1)
|
- curl(1)
|
||||||
- jq(1)
|
- jq(1)
|
||||||
- mpv(1)
|
|
||||||
- yt-dlp(1)
|
- yt-dlp(1)
|
||||||
|
|
||||||
Variables:
|
Environment Variables:
|
||||||
|
$DEBUG
|
||||||
|
- Set this variable to get debug output to stderr
|
||||||
|
|
||||||
|
$PLAYER
|
||||||
|
- Set this variable to a video player that can utilize yt-dlp to playback
|
||||||
|
videos from YouTube
|
||||||
|
|
||||||
$YTPICK
|
$YTPICK
|
||||||
- Set this variable to a dmenu-compatible picker for use with the pick
|
- Set this variable to a dmenu-compatible picker for use with the pick
|
||||||
subcommand.
|
subcommand
|
||||||
|
|
||||||
|
$YT_PL_DIR
|
||||||
|
- Set this variable to the directory where playlists should be stored; defaults
|
||||||
|
to $XDG_DATA_HOME/yt
|
||||||
|
|
||||||
|
|
||||||
Usage:
|
Usage:
|
||||||
yt add | archive | cache | clone | music | pick | play | queue | verify
|
yt add | archive | cache | clone | list | localsearch | new | pick | play | queue | search | sync | verify
|
||||||
|
|
||||||
add uri file
|
add uri playlist
|
||||||
- Adds a video by URI to a playlist
|
- Adds a video by URI to a playlist
|
||||||
|
|
||||||
archive uri...
|
archive uri...
|
||||||
- Archives a video on the Wayback Machine
|
- Archives videos on the Wayback Machine
|
||||||
|
|
||||||
cache uri...
|
cache video...
|
||||||
- Caches a video title
|
- Caches video titles
|
||||||
|
|
||||||
clone uri file
|
clone uri [playlist]
|
||||||
- Clones a YouTube playlist to a file
|
- Clones a YouTube playlist to a file
|
||||||
|
|
||||||
music uri...
|
list
|
||||||
- Downloads a video as audio, splitting it by chapter
|
- lists local playlists
|
||||||
|
|
||||||
pick file...
|
localsearch
|
||||||
|
- uses $YTPICK to search for videos from the local cache
|
||||||
|
|
||||||
|
new playlist...
|
||||||
|
- creates new playlists
|
||||||
|
|
||||||
|
pick playlist...
|
||||||
- Opens $PICKER to a list of videos in a file
|
- Opens $PICKER to a list of videos in a file
|
||||||
|
|
||||||
play uri...
|
play uri...
|
||||||
- Plays a video, caching its title first
|
- Plays videos, caching their titles first
|
||||||
|
|
||||||
queue file...
|
queue playlist...
|
||||||
- Queues a playlist
|
- Queues playlists
|
||||||
|
|
||||||
verify file...
|
search term [count]
|
||||||
|
- Searches YouTube for term and returns count results
|
||||||
|
|
||||||
|
sync [playlist]
|
||||||
|
- If a playlist is specified, sync that playlist with its remote YouTube
|
||||||
|
counterpart; otherwise, sync all playlists with remotes
|
||||||
|
|
||||||
|
verify playlist...
|
||||||
- Verifies that all the videos in a playlist are existent on YouTube, and if
|
- Verifies that all the videos in a playlist are existent on YouTube, and if
|
||||||
they aren’t, attempts to replace the URI with one from the Wayback Machine. If
|
they aren’t, attempts to replace the URI with one from the Wayback Machine. If
|
||||||
the video isn’t available on the Wayback Machine, it comments the video link. It
|
the video isn’t available on the Wayback Machine, it comments the video link. It
|
||||||
|
16
yt
16
yt
@ -47,7 +47,7 @@ P="$(printf '%s\n' "$YT_PL_DIR" | sed 's;\/;\\/;g')"
|
|||||||
|
|
||||||
argv0="$0"
|
argv0="$0"
|
||||||
com="$1"
|
com="$1"
|
||||||
u='add | archive | clone | list | new | pick | play | search | sync | verify'
|
u='add | archive | clone | list | localsearch | new | pick | play | search | sync | verify'
|
||||||
FMT='%(title)s – %(channel)s (%(duration>%H:%M:%S)s) [%(webpage_url)s]'
|
FMT='%(title)s – %(channel)s (%(duration>%H:%M:%S)s) [%(webpage_url)s]'
|
||||||
WBAPI='https://archive.org/wayback/available?url='
|
WBAPI='https://archive.org/wayback/available?url='
|
||||||
|
|
||||||
@ -117,7 +117,7 @@ clone() { # clones a YouTube playlist to a file
|
|||||||
n=1
|
n=1
|
||||||
|
|
||||||
while test -z "$title"; do
|
while test -z "$title"; do
|
||||||
title="$(yt-dlp -s -I "$n" --print '%(playlist)s' "$1" || true)"
|
title="$(yt-dlp -s -I "$n" --print '%(playlist)s' "$1" 2>/dev/null || true)"
|
||||||
n="$((n + 1))"
|
n="$((n + 1))"
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -149,6 +149,11 @@ list() {
|
|||||||
test -z "$choices" || pick "$choices"
|
test -z "$choices" || pick "$choices"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
localsearch() {
|
||||||
|
test -n "$1" && usage 'localsearch'
|
||||||
|
$YTPICK <"$cachefile"
|
||||||
|
}
|
||||||
|
|
||||||
menu() {
|
menu() {
|
||||||
playlist="$(ls "$YT_PL_DIR" | sed 's/\.m3u//g' | sed -n '/[^.old]/p' \
|
playlist="$(ls "$YT_PL_DIR" | sed 's/\.m3u//g' | sed -n '/[^.old]/p' \
|
||||||
| $YTPICK)"
|
| $YTPICK)"
|
||||||
@ -255,11 +260,6 @@ search() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
localsearch() {
|
|
||||||
test -n "$1" && usage 'localsearch'
|
|
||||||
$YTPICK <"$cachefile"
|
|
||||||
}
|
|
||||||
|
|
||||||
sync() {
|
sync() {
|
||||||
if test -z "$1"
|
if test -z "$1"
|
||||||
then
|
then
|
||||||
@ -354,4 +354,6 @@ done
|
|||||||
|
|
||||||
test -n "$com" && shift || usage "$u"
|
test -n "$com" && shift || usage "$u"
|
||||||
|
|
||||||
|
printf '%s\n' "$u" | grep "$com" >/dev/null || usage "$u"
|
||||||
|
|
||||||
"$com" "$@"
|
"$com" "$@"
|
||||||
|
Loading…
Reference in New Issue
Block a user