mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-06 00:04:38 +00:00
Possible fix for #27
This commit is contained in:
parent
53bb1479dc
commit
265af2602d
1 changed files with 7 additions and 5 deletions
|
@ -158,21 +158,23 @@ https://github.com/Xerbo/furaffinity-dl/issues" >&2
|
||||||
echo "File already exists, skipping. Use -w to skip this check"
|
echo "File already exists, skipping. Use -w to skip this check"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
mime_type="$(file "$file")"
|
||||||
|
|
||||||
# Add metadata
|
# Add metadata
|
||||||
if [ $file_type == "mp3" ] || [ $file_type == "wav" ] || [ $file_type == "wmv" ] || [ $file_type == "ogg" ] || [ $file_type == "flac" ]; 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)
|
||||||
if [ $eyed3 = true ] && [ $metadata = true ]; then
|
if [ $eyed3 = true ] && [ $metadata = true ]; then
|
||||||
if [ -z "$description" ]; then
|
if [ -z "$description" ]; then
|
||||||
eyeD3 -t "$title" "$file"
|
eyeD3 -t "$title" "$file" || true
|
||||||
else
|
else
|
||||||
# HACK: eyeD3 throws an error if a description containing a ":"
|
# HACK: eyeD3 throws an error if a description containing a ":"
|
||||||
eyeD3 -t "$title" --add-comment "${description//:/\\:}" "$file"
|
eyeD3 -t "$title" --add-comment "${description//:/\\:}" "$file" || true
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
elif [ $file_type == "jpg" ] || [ $file_type == "jpeg" ]; then
|
elif [[ $mime_type == *"image"* ]]; then
|
||||||
# Use exiftool for injecting metadata into pictures (if it's installed)
|
# Use exiftool for injecting metadata into pictures (if it's installed)
|
||||||
if [ $exiftool = true ] && [ $metadata = true ]; then
|
if [ $exiftool = true ] && [ $metadata = true ]; then
|
||||||
exiftool "$file" -description="$description" -title="$title" -overwrite_original
|
exiftool "$file" -description="$description" -title="$title" -overwrite_original || true
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue