blob: 73af1c578d422bea965ee920d913a6eaa8cd3655 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/sh
# pass this in the command-line
#--script-opts ytdl_hook-ytdl_path=/path/to/this-file/yt-dlp-and-sleep.sh
# or, in configuration ~/.config/mpv/mpv.conf
#script-opts=ytdl_hook-ytdl_path=/path/to/this-file/yt-dlp-and-sleep.sh
(
yt-dlp "$@" \
| tee /dev/fd/3 \
| jq '[.formats|.[]|.available_at|select(. != null)|(. - now)]|max' \
| (read t && sleep $t)
) 3>&1
|