This commit is contained in:
fred 2022-09-15 14:14:53 +02:00
parent a7f38deda0
commit 69c46d4f36
1 changed files with 2 additions and 1 deletions

View File

@ -43,7 +43,8 @@ for yurl in $(cat ~/.zen/tmp/tiddlers.json | jq -r '.[].text' | grep 'http'); do
# Get last writen file... TODO: Could we do better ?
ZFILE=$(ls -t ~/.zen/tmp/tube/*.mp4 | head -n 1)
ZFILE="$(yt-dlp --print title ${yurl}).mp4"
TITLE=$(yt-dlp --print title ${yurl})
ZFILE="$TITLE.mp4"
[[ ! -f ~/.zen/tmp/tube/$ZFILE ]] && echo "No FILE -- EXIT --" && exit 1
echo "~/.zen/tmp/tube/$ZFILE downloaded"