Jag har gjort ett Python script som visar skivomslaget i notifikationen.
Det är bara en thumbnail, 90x90 och den har en liten Spotify logga i nedre hörnet. Bilden kommer från deras artUrl, tex.
http://open.spotify.com/thumb/df544e444 ... a15c961ba2 om inte Spotify tillhandahåller artUrl så blir det heller ingen bild
Jag hade först en Next knapp i notifikationen men jag har struntat i den nu. Det är smidigare att använda globala snabbtangenter för Next/Previous/PlayPause. Knappen fungerade dessutom bara i de 7 sekunder som notifikationen visades.
Det är två skript, se till att behålla namnen iaf på den som hanterar notifikationen för det filnamnet används i huvudskriptet.
Sen är det bara att först starta Spotify och sedan starta huvudskriptet. Det stänger av sig när Spotify avslutas eller via Ctrl+c
Om <b> och <br> taggar visas i notificationen så måste ni ta bort de från koden i
handle_notification-spotify.py skriptet, byt ut '<br>' mot '\n' för att få en ny rad och använd plusstecknet som det passar i koden
Skripten är beroende av dessa:.
Kod: Markera allt
sudo apt-get install python3-dbus gir1.2-gdkpixbuf-2.0 python3-urllib3
Obs! Skripten fungerar bara med Python 3.x. Jag har bara provat det med Python 3.3.
Som alla andra skript jag gör så körs de på egen risk, jag tar inget ansvar om nått går snett.
main_handle-spotify.py
Kod: Markera allt
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# --------------------------------------
#
# Author: Jonas Lindberg
# Contact: <badomen02 gmail>
# Created: August 31, 2013
#
# Purpose: To show pop-up notification about current track when track changes in Spotify.
# Usage: Start Spotify, make sure 'handle_notification-spotify.py' is in the same folder as this script, then start this script. This script will self exit when spotify exits or if you press ctrl+c.
# Dependencies: python3-dbus, gir1.2-gdkpixbuf-2.0 and python3-urllib3 to get "handle_notification-spotify.py" to work.
# sudo apt-get install python3-dbus gir1.2-gdkpixbuf-2.0 python3-urllib3 to install it.
# Troubleshooting: The Printed output will give you a hint where the problem lies. Also test this ./handle_notification-spotify.py "Artis" "Album" "Title". Hopefully it will show a simple Notification or an error that will tell you something :).
#
#
# This script is NOT supported by or made by Spotify.
# Spotify are NOT responsible for anything that goes wrong.
#
# This script is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY.
#
# --------------------------------------
from gi.repository import GLib
import subprocess
import sys
import dbus
from dbus.mainloop.glib import DBusGMainLoop
import re
def handle_properties_changed(interface, changed_props, invalidated_props):
"""Handle track changes."""
# changed_props is a dict, in it there is a key that is named 'Metadata' and is containing another dictionary as Value. An empty dict will be created if 'Metadata' does not exist.
metadata =changed_props.get("Metadata", {})
# if pause is pressed then metadata will be an empty dict, i.e. False.
if(bool(metadata)):
sArtist = metadata['xesam:artist'][0]
sAlbum = metadata['xesam:album']
sTitle = metadata['xesam:title']
#Check if the track has an artUrl
try:
sIcon = str(metadata['mpris:artUrl'])
except:
sIcon = ""
# Just make the pop-up notification if a new track is playing.
if (bool(re.search(r"(?i)spotify|http:", sArtist)))or (bool(re.search(r"(?i)spotify|http:", sTitle))) or (bool(re.search(r"(?i)spotify|http:", sAlbum))) :
pass
else:
cmd = ["./handle_notification-spotify.py", sArtist, sAlbum, sTitle, sIcon]
try:
subprocess.Popen(cmd , shell=False, stderr=subprocess.DEVNULL)
print("Notification sent")
except PermissionError as e:
print("In line 57: ",e)
print("Could not send notification. Make sure the handle_notification-spotify.py is is executable.")
loop.quit()
except FileNotFoundError as e:
print("In line 57: ",e)
print("Could not send notification. Make sure the handle_notification-spotify.py is in the same directory as this script.")
loop.quit()
def isSpotify():
"""This checks if Spotify service is running. Its name is 'org.mpris.MediaPlayer2.spotify' """
player = bus_Session.get_object('org.freedesktop.DBus', '/org/freedesktop/DBus')
iface = dbus.Interface(player, 'org.freedesktop.DBus')
l=list(iface.ListNames())
running = False
for name in l:
name=str(name)
if name=="org.mpris.MediaPlayer2.spotify":
running=True
if bool(running):
pass
else:
print("Spotify is NOT running.")
# Quit the main loop if it is running.
if bool(loop.is_running()):
loop.quit()
return running
def connectToSpotify():
if bool(isSpotify()):
print("Spotify is running")
props_changed_listener()
return True
else:
sys.exit()
def props_changed_listener():
"""Hook up callback to PropertiesChanged event."""
print("Trying to connect with spotify ")
try:
spotify = bus_Session.get_object("org.mpris.MediaPlayer2.spotify", "/org/mpris/MediaPlayer2")
spotify.connect_to_signal("PropertiesChanged", handle_properties_changed)
print("Connection Succesful")
except:
print("Connection Faild.")
if __name__ == '__main__':
loop = GLib.MainLoop()
dbus_loop = DBusGMainLoop(set_as_default=True)
bus_Session = dbus.SessionBus(mainloop=dbus_loop)
#This is making the connection to spotify or exit if it is not running.
connectToSpotify()
#checks every 7 sec if spotify is running, so that if you quit spotify this script will exit in less then 7 sec.
GLib.timeout_add_seconds(7,isSpotify)
loop.run()
print("Script Exit")
handle_notification-spotify.py
Kod: Markera allt
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# --------------------------------------
#
# Author: Jonas Lindberg
# Contact: <badomen02 gmail>
# Created: August 31, 2013
#
# Purpose: To show pop-up notification about current track when track changes in Spotify.
# Usage: Start Spotify, then run the script 'main_handle-spotify.py' it will call This script with the argumets "Artis" "Album" "Title" "artUrl". The script will self exit in 8 seconds.
#
# Dependencies: python3-dbus and gir1.2-gdkpixbuf-2.0 python3-urllib3
# sudo apt-get install python3-dbus gir1.2-gdkpixbuf-2.0 python3-urllib3 to install it.
# Troubleshooting: Test this ./handle_notification-spotify.py "Artis" "Album" "Title". Hopefully it will show a simple Notification or an error that will tell you something :).
# If <b>, </b> and <br> tags show up in the notification, just remove them from the code and insert '\n' instead of the <br> to get a newline. Use + as it fit in the code. :)
#
#
# This script is NOT supported or created by Spotify.
# Spotify is NOT responsible for anything that goes wrong.
#
# This script is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY.
#
# --------------------------------------
from urllib.request import urlretrieve
from gi.repository import Notify
from gi.repository.GdkPixbuf import Pixbuf
import sys
import os
if __name__ == '__main__':
artist = sys.argv[1]
album = sys.argv[2]
title = sys.argv[3]
coverArtPath = '/tmp/' # Change this path to a folder in your home folder if you want the cover art to remain after a restart of your computer. It will grow to a whole lot of cover art thumbnails in that folder.
#Checks if the coverArtUrl is sent. If it is sent it will be saved in coverArtPath. Sets the icon to a Pixbuf or None.
if (len(sys.argv)==5 and bool(sys.argv[4])):
coverArtUrl = str(sys.argv[4])
coverArtName = coverArtUrl.split('/')[-1]
coverArtFullPath=coverArtPath+coverArtName
# if the coverArtFullPath is not downloaded this will download it.
if (not os.path.isfile(coverArtFullPath)):
coverArtFullPath, headers = urlretrieve(coverArtUrl,coverArtFullPath)
icon = Pixbuf.new_from_file(coverArtFullPath)
else:
icon=None
sLabel = '<b>' + artist + '</b>'
sBody='<b>Album:</b> ' + album + '<br>' + '<b>Track:</b> ' + title
# Any name will do.
Notify.init("Played on Spotify")
n = Notify.Notification.new(sLabel, sBody, None)
try:
n.set_image_from_pixbuf(icon)
except TypeError as e:
#print("No Art Url, Spotify can't find the cover.",e)
pass
n.set_urgency(Notify.Urgency.CRITICAL)
n.set_timeout(7000)
Notify.Notification.show(n)
EDIT: Koden och delar av beskrivningen av skripten är helt eller delvis ny. Jag installerade om Kubuntu och märkte att mitt gamla skript inte funderade, så jag har gjort om det... Hoppas att det funkar bra för er nu...
