]> git.madduck.net Git - etc/awesome.git/blob - scripts/mpdcover

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

7ba9439e6184f5488f9838cf5b2c653eaccc9b06
[etc/awesome.git] / scripts / mpdcover
1 #!/bin/bash
2 #
3 # A simple cover fetcher script for current playing song on mpd.
4 #
5 # Author : Wolfgang Mueller
6 #
7 # Adapted for Lain internal use.
8 # https://github.com/copycat-killer/lain
9 #
10 # You can use, edit and redistribute this script in any way you like.
11 #
12 # Dependencies: imagemagick.
13 #
14 # Usage: mpdcover <music_directory> <song_file> <default_art>
15
16 # Configuration-------------------------------------------------------
17
18 # Music directory
19 MUSIC_DIR=$1
20
21 # Song file
22 file=$2
23
24 # Regex expression used for image search
25 IMG_REG="(front|cover|art|Folder|folder)\.(jpg|jpeg|png|gif)$"
26
27 # Path of temporary resized cover
28 TEMP_PATH="/tmp/mpdcover.png"
29
30 # Resize cover
31 COVER_RESIZE="$3x$3"
32
33 if [ $COVER_RESIZE == "x" ]; then
34     COVER_RESIZE="100x100"
35 fi
36
37 # Thumbnail background (transparent)
38 COVER_BACKGROUND="none"
39
40 #--------------------------------------------------------------------
41
42 # check if anything is playing at all
43 [[ -z $file ]] && exit 1
44
45 # Art directory
46 art="$MUSIC_DIR/${file%/*}"
47
48 # find every file that matches IMG_REG set the first matching file to be the
49 # cover.
50 cover="$(find "$art/" -maxdepth 1 -type f | egrep -i -m1 "$IMG_REG")"
51
52 # check if art is available
53 if [[ -n $cover ]]; then
54    if [[ -n $COVER_RESIZE ]]; then
55         convert "$cover" -thumbnail $COVER_RESIZE -gravity center -background "$COVER_BACKGROUND" -extent $COVER_RESIZE "$TEMP_PATH"
56         cover="$TEMP_PATH"
57    fi
58 else
59    rm $TEMP_PATH
60 fi
61
62 exit 0