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 *.png
*.bmp *.bmp
*.gif *.gif
# Meta
*.meta
# Audio # Audio
*.mp3 *.mp3
*.wav *.wav

View file

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