From b80400bd1f1e7e40a10b65be3837f62610e2b7bd Mon Sep 17 00:00:00 2001 From: msglm Date: Sat, 15 Jul 2023 05:42:39 -0500 Subject: ensure that the name of the personality isn't treated like a platform with urls --- stashley | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/stashley b/stashley index b5c9954..fb44561 100755 --- a/stashley +++ b/stashley @@ -1,18 +1,24 @@ #!/bin/sh tomlq -r '.|keys_unsorted[]' "$1" | while IFS= read -r site; do - tomlq -r ".$site.urls[]" "$1" | while IFS= read -r url; -do - if [ "$site" = "youtube" ] + if [ "$site" != "name" ] then - yt-dlp --write-info-json --write-description --write-thumbnail --write-annotations --all-subs --ignore-error -f 'bestvideo[height>=720][fps>=60]+bestaudio/bestvideo+bestaudio/best' -o 'YouTube/%(uploader|author)s/%(title)s.%(ext)s' "$url" - elif [ "$site" = "website" ] - then - wget --mirror --warc-file="echo $url|sed -e '//\//slash/g'" - else - gallery-dl --write-metadata "$site":"$url" + tomlq -r ".$site.urls[]" "$1" | while IFS= read -r url; + do + if [ "$site" = "youtube" ] + then + yt-dlp --write-info-json --write-description --write-thumbnail --write-annotations --all-subs --ignore-error -f 'bestvideo[height>=720][fps>=60]+bestaudio/bestvideo+bestaudio/best' -o 'YouTube/%(uploader|author)s/%(title)s.%(ext)s' "$url" + elif [ "$site" = "website" ] + then + wget --mirror --warc-file="echo $url|sed -e '//\//slash/g'" + elif [ "$site" = "toyhouse" ] || [ "$site" = "instagram" ] || [ "$site" = "twitter" ] + then + gallery-dl --write-metadata "$url" + else + gallery-dl --write-metadata "$site":"$url" + fi + done fi -done done -- cgit v1.2.3