env/bin/invidious.sh

56 lines
1.2 KiB
Bash
Raw Normal View History

2019-09-11 04:11:40 +02:00
#!/bin/sh
2019-12-08 19:14:46 +01:00
# invidious
2019-09-11 04:11:40 +02:00
# Written in 2019 by Leslie
# Modified in 2019 by Lucas
# CC0 1.0 Universal/Public domain - No rights reserved
#
# To the extent possible under law, the author(s) have dedicated all
# copyright and related and neighboring rights to this software to the
# public domain worldwide. This software is distributed without any
# warranty. You should have received a copy of the CC0 Public Domain
# Dedication along with this software. If not, see
# <http://creativecommons.org/publicdomain/zero/1.0/>.
2019-12-08 19:14:46 +01:00
usage()
{
2019-09-11 04:11:40 +02:00
printf "Usage: %s url\n" "${0##*/}" >&2
exit 1
}
2019-12-08 19:14:46 +01:00
err()
{
printf "%s: %s\n" "${0##*/}" "$*" >&2
exit 1
}
[ $# -eq 1 ] || usage
2019-09-11 04:11:40 +02:00
case $1 in
"https://invidio.us/watch?v="*)
;;
2019-12-08 19:14:46 +01:00
*) err "Not an invidio.us url."
;;
2019-09-11 04:11:40 +02:00
esac
video_id=
for param in $(printf "%s\n" "${1##*"?"}" | tr "&" "\n"); do
k=${param%%=*}
[ "$k" = v ] || continue
v=${param#*=}
if [ ${#v} -ne 11 ]; then
2019-12-08 19:14:46 +01:00
printf "%s: \"%s\": not a video ID." "${0##*/}" "$v" >&2
2019-09-11 04:11:40 +02:00
continue
fi
video_id=$v
break
done
2019-12-08 19:14:46 +01:00
[ -n "$video_id" ] || err "no video ID in URL."
2019-09-11 04:11:40 +02:00
2019-12-08 19:14:46 +01:00
dl_option=$(ftp -o - "$1" 2>/dev/null | grep -F "<option value='{" |
head -n 1 | cut -d "\"" -f 8)
2019-09-11 04:11:40 +02:00
printf "https://invidio.us/latest_version?id=%s&itag=%s\n" \
"$video_id" "$dl_option"