buggggggz

File gets stuck sometimes
This commit is contained in:
Liam 2019-04-04 19:36:36 +01:00 committed by GitHub
parent 86e19f2089
commit f57671f317
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -135,12 +135,7 @@ https://github.com/Xerbo/furaffinity-dl-ng/issues" >&2
wget "$image_url" -O "$file"
# Add metadata
if [[ $(file $file) =~ (MPEG|audio) ]]; then
# Use exiftool for injecting metadata into pictures (if it's installed)
if [ $exiftool ] && [ $metadata ]; then
exiftool "$file" -description="$description" -title="$title"
fi
else
if [ $file_type == "mp3" ] || [ $file_type == "wav" ] || [ $file_type == "wmv" ] || [ $file_type == "ogg" ] || [ $file_type == "flac" ]; then
# Use eyeD3 for injecting injecting metadata into audio files (if it's installed)
if [ $eyed3 ] && [ $metadata ]; then
if [ -z "$description" ]; then
@ -150,6 +145,11 @@ https://github.com/Xerbo/furaffinity-dl-ng/issues" >&2
eyeD3 -t "$title" --add-comment "${description//:/\\:}" "$file"
fi
fi
else
# Use exiftool for injecting metadata into pictures (if it's installed)
if [ $exiftool ] && [ $metadata ]; then
exiftool "$file" -description="$description" -title="$title"
fi
fi
done