"tube" tag = import youtube video playlist into video/mp4 IPFS tiddlers

This commit is contained in:
fred 2022-10-07 23:06:59 +02:00
parent f16c74aa6c
commit 5ebae22463
1 changed files with 2 additions and 1 deletions

View File

@ -44,6 +44,7 @@ for YURL in $(cat ~/.zen/tmp/tube.json | jq -r '.[].text' | grep 'http'); do
TITLE="$(yt-dlp --print "%(title)s" "${ZYURL}")"
TITLE=${TITLE//[^A-zÀ-ÿ0-9 ]/}
echo "OK! Going to download $TITLE.mp4 from $ZYURL"
[[ ! $TITLE ]] && continue
# https://github.com/yt-dlp/yt-dlp#format-selection-examples
# SUBS ? --write-subs --write-auto-subs --sub-langs "fr, en, en-orig" --embed-subs
@ -65,7 +66,7 @@ for YURL in $(cat ~/.zen/tmp/tube.json | jq -r '.[].text' | grep 'http'); do
############################################################################
### CHECK RESULT CONVERT MKV TO MP4
[[ ! -f "$HOME/.zen/tmp/tube/$ZFILE" ]] && ffmpeg -i "$HOME/.zen/tmp/tube/$TITLE.mkv" -c:v libx264 -c:a aac "$HOME/.zen/tmp/tube/$TITLE.mp4" # TRY TO CONVERT MKV TO MP4
[[ ! -f "$HOME/.zen/tmp/tube/$ZFILE" ]] && echo "No FILE -- EXIT --" && continue
[[ ! -f "$HOME/.zen/tmp/tube/$ZFILE" ]] && echo "No FILE -- CONTINUE --" && continue
echo
echo "FOUND : ~/.zen/tmp/tube/$ZFILE"