1
0
Fork 0
mirror of https://github.com/notwa/rc synced 2024-11-05 01:19:06 -08:00

add some insanity to mpv_watch

This commit is contained in:
Connor Olding 2021-09-23 06:53:12 -07:00
parent 1408a227c5
commit 3f476697d4

View file

@ -72,10 +72,19 @@ mpv_watch() { ### @-
argc -ge 1 "$0" "$@" || return
pushd ~/play >/dev/null
local url="$1"; shift
mpv \
--af=lavfi="[$_M_PROCESS]" \
--ytdl-format='[width<=1280]/best' \
"$@" -- "$url"
# checking for redundant flags might itself be redundant, but i want to be sure.
local seen=0
for a; do [ "$a" = "${a#--ytdl-format=}" ] || seen=1 done
if [ $seen -eq 0 ]; then
mpv \
--af=lavfi="[$_M_PROCESS]" \
--ytdl-format='[width<=1280]/best' \
"$@" -- "$url"
else
mpv \
--af=lavfi="[$_M_PROCESS]" \
"$@" -- "$url"
fi
popd >/dev/null
}