Tag: — Sonic @ 10:45
Un piccolo plugin per xchat scritto in python che e' in grado di annunciare in chat (tramite il comando /song) la canzone che state ascoltando con exaile. (usa dbus per ricavare le informazioni).
Lo script e' stato poco testato spero non ci siano errori gravi.
Exaile np For X-Chat (HTML File with Sintax Highlight)
24 October 2007, ore 17:26
Your script is not workin’… it says… “Error during trying to comunicate with exaile!”
14 November 2007, ore 22:49
Thanks! Works great. To other poster: Make sure you’ve got dbus up and running with the right permissions, and that your user is a member of the the correct groups.
2 December 2007, ore 6:44
Thanks a lot for this. It was just what I was looking for
Had been poking around a bit looking for something like gts for windows/mIRC just for fun.
12 January 2008, ore 16:33
small patch to make the script work with shoutcast url’s
— exaile.py.org 2008-01-12 16:31:33.000000000 +0100
+++ exaile.py 2008-01-12 16:30:29.000000000 +0100
@@ -81,10 +81,11 @@
return xchat.EAT_ALL
try:
position = int(get_position())
+ location = exa.get_track_attr(’loc’)
except:
print “Error during trying to comunicate with exaile!”
return xchat.EAT_ALL
- if not position:
+ if not position and not ‘://’ in location:
print “Exaile is stopped or not running!”
return xchat.EAT_ALL
title = get_title()
@@ -94,8 +95,11 @@
album = get_album()
album = album.encode(”utf-8″)
length = get_length()
- #xchat.command (”me is listening to ” + artist + ” – ” + title + ” [" + str(length) + " (" + str(position) + "%)]“)
- xchat.command (”me is listening to (” + str(title) + “) by (” + str(artist) + “) from (” + str(album) + “) [" + str(length) + "] in his Exaile”)
+ if ‘://’ in location:
+ xchat.command (”me is listening to (” + str(title) + “) by (” + str(artist) + “) from (” + str(album) + “) in his Exaile”)
+ else:
+ #xchat.command (”me is listening to ” + artist + ” – ” + title + ” [" + str(length) + " (" + str(position) + "%)]“)
+ xchat.command (”me is listening to (” + str(title) + “) by (” + str(artist) + “) from (” + str(album) + “) [" + str(length) + "] in his Exaile”)
return xchat.EAT_ALL
12 January 2008, ore 16:37
the patch can also be found on:
http://ido.nl.eu.org/exaile/xchatscript/
12 January 2008, ore 17:38
Good job trbs
5 May 2008, ore 12:40
Can someone post patched script? I can’t patch it – it throws bunch of errors.
6 May 2008, ore 4:15
Yo, Thanks a bunch man. Gotta love python
Works well. Thanks for the release !
1 June 2008, ore 2:22
Version en espaņol del Exaile Plugin para X-Chat mas la opcion de ver el ALBUM!
Spanish version plus ALBUM feature !
Get it on http://pastebin.com/f43525c8d
Thanks a lot for the original script!
FreeDownload
21 November 2008, ore 23:28
Great script, thanks!
16 April 2009, ore 5:34
hmm… really like it )