Spotify info i Underrättelser (notification)

Här diskuteras programmering och utveckling
Användarvisningsbild
BadOmen
Inlägg: 1172
Blev medlem: 18 aug 2006, 10:45
OS: Kubuntu
Utgåva: 24.04 Noble Numbat LTS
Ort: Umeå

Spotify info i Underrättelser (notification)

Inlägg av BadOmen »

Hej,
Jag har gjort ett litet skript som skickar en underrättelse (notification) på vilken Artist, Album och låt som ljust börjat spelas i spotify.

Så jag tänkte att jag skulle dela med mig av det :)

Kod: Markera allt

#!/bin/bash

# --------------------------------------
#
#    Author: Jonas Lindberg
#    Contact: <badomen02 gmail>
#    Created: February 17, 2013
#
#    Purpose: Pop up notification of what Spotify is playing.
#    Usage: Start Spotify then start this script. This script will self exit when spotify exits. 
#    Dependencies: libnotify-bin, sudo apt-get install libnotify-bin to install it.
#    Troubleshooting: Test this command notify-send "<b>Artist</b>" "Album" in a terminal. Try to remove the <b></b> tags and run it again. 
#
#    This script is distributed in the hope that it will be useful,
#    but WITHOUT ANY WARRANTY.
#
# --------------------------------------

echo "Started"
title_playing=""
# It will run as long spotify is runing.
while [ "$(pidof spotify)" ];do
  title_compare="$(dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string:'Metadata' 2>/dev/null |egrep -A 1 "title"|egrep -v "title"|cut -b 44-|cut -d '"' -f 1|egrep -v ^$)"

  # Just make a notify when a new song is played 
  if [ "$title_playing" != "$title_compare" ];then
    album="$(dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string:'Metadata' 2>/dev/null |egrep -A 2 "album"|egrep -v "album"|egrep -v "array"|cut -b 44-|cut -d '"' -f 1|egrep -v ^$)"

    artist="$(dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string:'Metadata' 2>/dev/null |egrep -A 2 "artist"|egrep -v "artist"|egrep -v "array"|cut -b 27-|cut -d '"' -f 1|egrep -v ^$)"

    title_playing="$(dbus-send --print-reply --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.freedesktop.DBus.Properties.Get string:'org.mpris.MediaPlayer2.Player' string:'Metadata' 2>/dev/null |egrep -A 1 "title"|egrep -v "title"|cut -b 44-|cut -d '"' -f 1|egrep -v ^$)"
    
      # Checks that the artist is not empty and that the title doesn't start with Spotify, i.e. is advertising.
      if [ -n "$artist" ]; then	
        if [[ $title_playing != Spotify* ]]; then
          notify-send "<b>$artist</b>" "<b>Album:</b> $album
<b>Title:</b> $title_playing"
        fi
     fi  
  fi
# How often in seconds it will update
 sleep 5
done
echo "Ended"

Edit: obs! Fungerar bara om man installerar Spotify for Linux alltså inte om man kör Spotify i Wine.
Senast redigerad av 1 BadOmen, redigerad totalt 19 gånger.
Betygsätt din Hårdvara och underlätta inköp av ny för andra:http://ubuntu-se.org/phpBB3/viewforum.php?f=138
Ubuntu-se forsknings team, här.
Min Ubuntu blogg som funkar som en stor post-it lapp för mig http://attminnas.blogspot.com/
Antec
Inlägg: 2449
Blev medlem: 31 okt 2008, 16:25
OS: Ubuntu

Re: Spotify info i Underrättelser (notification)

Inlägg av Antec »

Oj jättebra! det kommer jag att testa!! :glad:
Antec
Inlägg: 2449
Blev medlem: 31 okt 2008, 16:25
OS: Ubuntu

Re: Spotify info i Underrättelser (notification)

Inlägg av Antec »

Vart landar underrättelserna så jag ser dom? hamnar det i panelen? Okej jag ser det nu :D Väldigt bra!
Användarvisningsbild
BadOmen
Inlägg: 1172
Blev medlem: 18 aug 2006, 10:45
OS: Kubuntu
Utgåva: 24.04 Noble Numbat LTS
Ort: Umeå

Re: Spotify info i Underrättelser (notification)

Inlägg av BadOmen »

Antec skrev:Vart landar underrättelserna så jag ser dom? hamnar det i panelen? Okej jag ser det nu :D Väldigt bra!
Roligt att du uppskattar det :)

Jag kör Kubuntu så jag vet inte hur det ser ut i Ubuntu. Men I Kubuntu så poppar det upp en ruta som visar infon och sen läggs det till i listan under ! på panelen.
Så nu vet andra vad de ska förvänta sig av skriptet, förmodligen nåt liknande i Ubuntu :)
Betygsätt din Hårdvara och underlätta inköp av ny för andra:http://ubuntu-se.org/phpBB3/viewforum.php?f=138
Ubuntu-se forsknings team, här.
Min Ubuntu blogg som funkar som en stor post-it lapp för mig http://attminnas.blogspot.com/
martin77
Inlägg: 150
Blev medlem: 05 okt 2007, 16:51
OS: Xubuntu
Utgåva: 20.04 Focal Fossa LTS
Ort: Malmö

Re: Spotify info i Underrättelser (notification)

Inlägg av martin77 »

Hmm... Coolt. Det fungerar, men jag får upp notifieringarna men själva artistnamnet är omgivet av <b>artistnamn</b>. Går det att bli av med?
Användarvisningsbild
BadOmen
Inlägg: 1172
Blev medlem: 18 aug 2006, 10:45
OS: Kubuntu
Utgåva: 24.04 Noble Numbat LTS
Ort: Umeå

Re: Spotify info i Underrättelser (notification)

Inlägg av BadOmen »

martin77 skrev:Hmm... Coolt. Det fungerar, men jag får upp notifieringarna men själva artistnamnet är omgivet av <b>artistnamn</b>. Går det att bli av med?
Testa att ta bort <b></b> taggarna i koden som ser ut så här:

Kod: Markera allt

notify-send "<b>$artist</b>" "<b>Album:</b> $album
<b>Title:</b> $title_playing"
Jag vet att en del har haft problem med taggar i notidiy-send.

Se till så att inte hela kommandot hamnar på en rad för då kommer "Album:" och "Title:" att också hamna på en rad.
Betygsätt din Hårdvara och underlätta inköp av ny för andra:http://ubuntu-se.org/phpBB3/viewforum.php?f=138
Ubuntu-se forsknings team, här.
Min Ubuntu blogg som funkar som en stor post-it lapp för mig http://attminnas.blogspot.com/
frippe
Inlägg: 241
Blev medlem: 20 apr 2007, 16:56
OS: Ubuntu

Re: Spotify info i Underrättelser (notification)

Inlägg av frippe »

Fungerar helt lysande. Tack för den ;D
Användarvisningsbild
axel112
Inlägg: 1810
Blev medlem: 04 jan 2007, 00:13
OS: Ubuntu
Ort: Eslöv

Re: Spotify info i Underrättelser (notification)

Inlägg av axel112 »

Jag tackar! :kram:
Användarvisningsbild
BadOmen
Inlägg: 1172
Blev medlem: 18 aug 2006, 10:45
OS: Kubuntu
Utgåva: 24.04 Noble Numbat LTS
Ort: Umeå

Re: Spotify info i Underrättelser (notification)

Inlägg av BadOmen »

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... :)
Senast redigerad av 1 BadOmen, redigerad totalt 31 gånger.
Betygsätt din Hårdvara och underlätta inköp av ny för andra:http://ubuntu-se.org/phpBB3/viewforum.php?f=138
Ubuntu-se forsknings team, här.
Min Ubuntu blogg som funkar som en stor post-it lapp för mig http://attminnas.blogspot.com/
Användarvisningsbild
BadOmen
Inlägg: 1172
Blev medlem: 18 aug 2006, 10:45
OS: Kubuntu
Utgåva: 24.04 Noble Numbat LTS
Ort: Umeå

Re: Spotify info i Underrättelser (notification)

Inlägg av BadOmen »

Jag har Helt eller delvis ändrat python koden och beskrivningen i mitt förra inlägg. Jag märkte att det inte fungerade efter en ny installation av Kubuntu. Hoppas att det fungerar bättre för er också nu...

Jag ville inte bara lägga in ett nytt inlägg med den nya koden för jag ville ta bort den gamla icke fungerande koden :)
Betygsätt din Hårdvara och underlätta inköp av ny för andra:http://ubuntu-se.org/phpBB3/viewforum.php?f=138
Ubuntu-se forsknings team, här.
Min Ubuntu blogg som funkar som en stor post-it lapp för mig http://attminnas.blogspot.com/
Skriv svar

Återgå till "Programmering och webbdesign"