Im using Ubuntu 12.04. I want to access Rhythymbox using Python.
Here is how I have continued so far:
I went through this site https://live.gnome.org/RhythmboxPlugins/WritingGuide , but it gives detailed information on how to write plugins that I'm not interested in right now. Ive done a few guides that tell me about this.
import dbus session_bus = dbus.SessionBus() proxy_obj = session_bus.get_object( 'org.gnome.Rhythmbox', '/org/gnome/Rhythmbox/Player')
But I get the following error:
DBusException: org.freedesktop.DBus.Error.ServiceUnknown: The name org.gnome.Rhythmbox was not provided by any .service files.
Can someone point me in the right direction of what I would like to achieve?
Manoj source share