Alexander Plaikner f1f8eed76b
Fix youtube-dl parameter error
This change will fix an error I've encountered when using qndl. The
download of videos would fail immediately and it seems that you have
to assign a separate variable to the parameters of youtube-dl.
2020-07-15 19:20:50 +02:00

14 lines
384 B
Bash
Executable File

#!/bin/sh
# $1 is a url; $2 is a command
[ -z "$1" ] && exit
base="$(basename "$1")"
notify-send "⏳ Queuing $base..."
cmd="$2"
[ -z "$cmd" ] && cmd="youtube-dl"
params="--add-metadata"
idnum="$(tsp "$cmd" "$params" "$1")"
realname="$(echo "$base" | sed "s/?\(source\|dest\).*//;s/%20/ /g")"
tsp -D "$idnum" mv "$base" "$realname"
tsp -D "$idnum" notify-send "👍 $realname done."