diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:35:25 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:35:25 -0500 |
commit | 2204207410ae8d834d056ecb176f13a5339afae2 (patch) | |
tree | 1087faf7d83669dc6208f8ebd3ecf3c9c3c86668 | |
parent | 8a494231c9719542ca2f7ae69814b1614adbb5c5 (diff) | |
download | stashley-2204207410ae8d834d056ecb176f13a5339afae2.tar.gz stashley-2204207410ae8d834d056ecb176f13a5339afae2.tar.bz2 stashley-2204207410ae8d834d056ecb176f13a5339afae2.zip |
ensure that the name of the personality isn't treated like a platform with urls
-rwxr-xr-x | stashley | 26 |
1 files changed, 16 insertions, 10 deletions
@@ -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 |