[cliplumber] Add error notification for youtube-dl with option 'play'

This commit is contained in:
lhark 2019-04-27 15:28:37 -04:00
parent 0fee4131e5
commit 14fbd2cfdb

View file

@ -24,7 +24,8 @@ case "$choice" in
#notify-send "Error while downloading: $clip" #notify-send "Error while downloading: $clip"
;; ;;
"play") "play")
mpv --ytdl-format='bestvideo[height<=?1080]+bestaudio/best' "$clip" mpv --ytdl-format='bestvideo[height<=?1080]+bestaudio/best' "$clip" 2>&1 | grep 'ERROR:' | xargs -n1 -d "\n" notify-send
;; ;;
"audio search") "audio search")
st -e mpv --ytdl-format=bestaudio ytdl://ytsearch:"$clip" st -e mpv --ytdl-format=bestaudio ytdl://ytsearch:"$clip"