blob: bcf36feeefb4bd8fc194494bd67fc5553f072cae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/usr/bin/env bash
cd /mnt/pool/media
# Remove interlacing from album art for iPods
find ./downloads/deemix -iname "cover.jpg" -o -iname "cover.gif" -o -iname "cover.png" | while read file
do convert "$file" -interlace none "$file"
done
# Copy it over
cp -R ./downloads/deemix/* ./libraries/music
# Clear the download cache folder
rm -rf ./downloads/deemix/*
|