#!/usr/bin/python # # File: xmmslist.py # # Function: Shell-command for XMMS Song Change plugin. # # Author(s): Erik C. Thauvin (erik@thauvin.net) # # Copyright: Copyright (C) 2003 Erik C. Thauvin # All Rights Reserved. # # Source: Started anew. # # Notes: See the README file for more information. # # History: # # 2003-08-11 ECT Initial coding. # # # Disclaimer: # # This software is provided "as is" without express or implied warranties. # Permission is granted to use, copy, modify and distribute this software, # provided this disclaimer and copyright are preserved on all copies. This # software may not, however, be sold or distributed for profit, or included # with other software which is sold or distributed for profit, without the # permission of the author. # # $Id$ import sys import re import cgi import urllib import time import os.path # The script version number version='0.1' # The output file playlist=os.path.expanduser('~/bin/playlist.txt') # The maximum number of songs to keep in the playlist maxsongs=20 # The song search tooltip and URL songtip='Search for the lyrics of this song.' songsearch='http://www.lyricsstation.com/search.asp?R1=V1&txtSearch=' # The artist search tooltip and URL bandtip='Search for this artist on Google.' bandsearch='"http://www.google.com/search?cat=gwd%2FTop%2FArts%2FMusic&q=' # The album search tooltip and URL albumtip='Search for this album on freedb.' albumsearch='http://www.freedb.org/freedb_search.php?allfields=NO&fields=artist&fields=title&allcats=YES&grouping=cats&words=' if len(sys.argv) > 1: # XMMS title format should be set to: %p -- %t -- %a # e.g.: The Artist -- The Song -- The Album m = re.search('(.*) -- (.*) -- (.*)', sys.argv[1]) if m: try: if (os.path.getsize(playlist) == 0): time.sleep(1) f = open(playlist, 'r') lines = f.readlines() f.close() except IOError: lines = '' song = '