Text metadata option, if the file format is not supported. Hopefully concludes #27

This commit is contained in:
Xerbo 2019-12-09 23:33:46 +00:00
parent 265af2602d
commit 56df2547c4
2 changed files with 11 additions and 1 deletions

2
.gitignore vendored
View file

@ -3,6 +3,8 @@
*.png
*.bmp
*.gif
# Meta
*.meta
# Audio
*.mp3
*.wav

View file

@ -31,6 +31,8 @@ Arguments:
-n (N)unmber of images to download, starting from
the most recent submission
-w Over(Write) files if they already exist
-s (S)eperate metadata files, to make sure all
metadata is downloaded regardless of file
Examples:
$0 gallery/mylafox
@ -56,7 +58,8 @@ metadata=true
rename=true
maxsavefiles="0"
overwrite=false
while getopts 'o:c:iphrnw:' flag; do
textmeta=false
while getopts 'o:c:n:iphrws' flag; do
case "${flag}" in
w) overwrite=true;;
o) outdir=${OPTARG};;
@ -66,6 +69,7 @@ while getopts 'o:c:iphrnw:' flag; do
r) rename=false;;
n) maxsavefiles=${OPTARG};;
h) help;;
s) textmeta=true;;
*) help;;
esac
done
@ -160,6 +164,10 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2
mime_type="$(file "$file")"
if [ $textmeta = true ]; then
echo -ne "Title: $title\nURL: $page\nFilename: $file_name\nDescription: $description" > "$file.meta"
fi
# Add metadata
if [[ $mime_type == *"audio"* ]]; then
# Use eyeD3 for injecting metadata into audio files (if it's installed)