mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
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.
This commit is contained in:
parent
f52a90e564
commit
f1f8eed76b
@ -5,8 +5,9 @@
|
|||||||
base="$(basename "$1")"
|
base="$(basename "$1")"
|
||||||
notify-send "⏳ Queuing $base..."
|
notify-send "⏳ Queuing $base..."
|
||||||
cmd="$2"
|
cmd="$2"
|
||||||
[ -z "$cmd" ] && cmd="youtube-dl --add-metadata"
|
[ -z "$cmd" ] && cmd="youtube-dl"
|
||||||
idnum="$(tsp "$cmd" "$1")"
|
params="--add-metadata"
|
||||||
|
idnum="$(tsp "$cmd" "$params" "$1")"
|
||||||
realname="$(echo "$base" | sed "s/?\(source\|dest\).*//;s/%20/ /g")"
|
realname="$(echo "$base" | sed "s/?\(source\|dest\).*//;s/%20/ /g")"
|
||||||
tsp -D "$idnum" mv "$base" "$realname"
|
tsp -D "$idnum" mv "$base" "$realname"
|
||||||
tsp -D "$idnum" notify-send "👍 $realname done."
|
tsp -D "$idnum" notify-send "👍 $realname done."
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user