Ĉi tiu deponejo arĥiviĝis je 2024-01-29. Vi povas vidi kaj elŝuti dosierojn, sed ne povas puŝi nek raporti problemojn nek tirpeti.
shellTube/shelltube

149 lines
3.5 KiB
Plaintext
Raw Normal View History

2016-12-22 19:14:27 -06:00
#!/bin/sh
2016-12-11 19:33:57 -06:00
####################
# Name: shelltube.sh
# Lisc: ISC
# Main: jadedctrl
2016-12-23 12:37:20 -06:00
# Desc: Full-shell YT client that avoids the YT API.
Vers=0.4
2016-12-11 19:33:57 -06:00
#####################
2016-12-22 19:14:27 -06:00
# Roadmap:
# v1.0 - [ ] Playlist support
# [X] Channel support
# [ ] Audio dl/stream
# [ ] Show related videos
# [ ] Channel & Playlist search
# [ ] Search filters
# [ ] Search & Channel sort-by
2016-12-23 23:15:53 -06:00
# [X] Config video player, etc
2016-12-22 19:14:27 -06:00
# [ ] Overall better interface
2016-12-26 03:58:01 -06:00
# [x] Cli args as commands
2016-12-22 19:14:27 -06:00
2016-12-26 03:58:01 -06:00
if [ -e "$HOME/.config/shelltube" ]
2016-12-23 23:15:53 -06:00
then
2016-12-26 03:58:01 -06:00
. "$HOME/.config/shelltube"
2016-12-23 23:15:53 -06:00
fi
search() {
output="$(mktemp -u /tmp/yt_XXXXXX)"
yt-search -i "$1" "$output"
selected_video="$(cat "$output")"
yt-meta "$selected_video"
2016-12-11 19:33:57 -06:00
}
channel() {
output="$(mktemp -u /tmp/yt-channel_XXXXXX)"
case "$1" in
UC* )
yt-channel -ic "$1" "$output"
;;
* )
yt-channel -iu "$1" "$output"
;;
esac
selected_video="$(cat "$output")"
2016-12-22 19:14:27 -06:00
yt-meta "$selected_video"
2016-12-11 19:33:57 -06:00
}
about() {
2016-12-23 12:37:20 -06:00
printf '\033[35mShelltube v%s\033[m\n' "$Vers"
printf '\033[32mDesc: \033[0;34mYT client written in shell.\033[m\n'
printf '\033[32mMain: \033[0;34mjadedml@openmailbox.org\033[m\n'
printf '\033[32mLisc: \033[0;34mISC; yt-down GPLv2\033[m\n'
2016-12-11 19:33:57 -06:00
}
help() {
printf "\
about | ! View the about page.
clear | cls Clear the screen.
download | dl Download the selected video.
exit | ctrl+c Exit Shelltube.
help | ? Display this message.
metadata | md Display selected video's metadata.
search | / Perform a search.
channel | chan Show newest videos of a channel.
stream | str Stream the selected video.
video | sel | url Select video based on URL or ID.
Note about usage:
Both 'video ID; download' and 'download ID' are valid. You don't need to
select a video to run commands on it, but if you use metadata, download, or
stream on an unselected video you must specify the ID or URL after the command.
"
2016-12-11 19:33:57 -06:00
}
parse() {
command="$1" argument="$2"
case "$command" in
help | '?' )
2016-12-11 19:33:57 -06:00
help
;;
search )
search "$argument"
;;
/* )
2016-12-23 23:15:53 -06:00
search "${command#/} $argument"
;;
channel )
channel "$argument"
;;
chan )
channel "$argument"
;;
2016-12-23 13:35:58 -06:00
video | sel | url )
case "$argument" in
*youtube.com* )
selected_video="$argument"
;;
*)
selected_video="$argument"
;;
esac
yt-meta "$selected_video"
;;
2016-12-23 13:35:58 -06:00
metadata | md )
selected_video="${argument:-$selected_video}"
yt-meta "$selected_video"
;;
download | dl )
2016-12-23 13:35:58 -06:00
selected_video="${argument:-$selected_video}"
yt-down "$selected_video"
;;
stream | str )
2016-12-23 13:35:58 -06:00
selected_video="${argument:-$selected_video}"
yt-down -s "$selected_video"
;;
about | ! )
2016-12-11 19:33:57 -06:00
about
;;
clear | cls )
printf '\033[H\033[J'
;;
exit )
rm -f "/tmp/yt-$$"
2016-12-11 19:33:57 -06:00
exit
;;
'' ) ;;
* )
printf 'unknown command: "%s"\ntry "help"\n' "$command"
;;
esac
2016-12-11 19:33:57 -06:00
}
if [ "$#" -gt 0 ]
then
for arg in "$@"
do
parse "${arg%% *}" "${arg#* }"
done
else
2016-12-23 12:37:20 -06:00
printf '\n \033[1mshell\033[41m Tube \033[0;1;30m v%s\033[m\n\n' "$Vers"
2016-12-23 11:12:07 -06:00
while printf '\033[0;34m%s \033[0;32m>>\033[m ' "$selected_video"
do
read -r command argument
parse "$command" "$argument"
done
fi