#!/bin/sh
METADATAFILE="/home/yogan/.xmms/metadata"

# for "Artist - Song" use this:
# echo "artist=`echo $* | sed -e 's/ - /\ntitle=/'" > $METADATAFILE

echo "artist=`echo $* | cut -d] -f2- | cut -d. -f2- | sed -e 's/^\ //' \
	| sed -e 's/ \-\- /\ntitle=/' | sed -e 's/~.*//' | sed -e 's/ *$//'`" \
	> $METADATAFILE

cat $METADATAFILE | recode ISO-8859-1..UTF-8 > ${METADATAFILE}.utf8

/bin/kill -SIGUSR1 `cat /var/run/ices.pid`

