diff options
Diffstat (limited to 'personality-archiver')
-rwxr-xr-x | personality-archiver | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/personality-archiver b/personality-archiver new file mode 100755 index 0000000..5572bde --- /dev/null +++ b/personality-archiver @@ -0,0 +1,23 @@ +#!/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" ] + 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" = "twitter" ] + then + gallery-dl --write-metadata "$url" + elif [ "$site" = "instagram" ] + then + gallery-dl --write-metadata "$url" + elif [ "$site" = "toyhouse" ] + then + gallery-dl --write-metadata "$url" + else + gallery-dl --write-metadata "$site":"$url" + fi +done + +done |