mirror of
https://github.com/Radiquum/furaffinity-dl.git
synced 2025-04-06 00:04:38 +00:00
buggggggz
File gets stuck sometimes
This commit is contained in:
parent
86e19f2089
commit
f57671f317
1 changed files with 6 additions and 6 deletions
|
@ -135,12 +135,7 @@ https://github.com/Xerbo/furaffinity-dl-ng/issues" >&2
|
||||||
wget "$image_url" -O "$file"
|
wget "$image_url" -O "$file"
|
||||||
|
|
||||||
# Add metadata
|
# Add metadata
|
||||||
if [[ $(file $file) =~ (MPEG|audio) ]]; then
|
if [ $file_type == "mp3" ] || [ $file_type == "wav" ] || [ $file_type == "wmv" ] || [ $file_type == "ogg" ] || [ $file_type == "flac" ]; then
|
||||||
# Use exiftool for injecting metadata into pictures (if it's installed)
|
|
||||||
if [ $exiftool ] && [ $metadata ]; then
|
|
||||||
exiftool "$file" -description="$description" -title="$title"
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
# Use eyeD3 for injecting injecting metadata into audio files (if it's installed)
|
# Use eyeD3 for injecting injecting metadata into audio files (if it's installed)
|
||||||
if [ $eyed3 ] && [ $metadata ]; then
|
if [ $eyed3 ] && [ $metadata ]; then
|
||||||
if [ -z "$description" ]; 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"
|
eyeD3 -t "$title" --add-comment "${description//:/\\:}" "$file"
|
||||||
fi
|
fi
|
||||||
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
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue