Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
305 views

Rhythmbox plugin to access podcast files doesn't see them

I am writing a Rhythmbox plugin to iterate over all podcast files currently known to Rhythmbox (whether downloaded or not) and to do something with them. After some research and testing in the ...
3
votes
1answer
376 views

How to continuously monitor rhythmbox for track change using bash

I'd like to do the same thing as is described here, but using shell scripting (preferably in bash) instead of python. It seems like such a thing should be possible using dbus-monitor, but I'm not very ...
3
votes
3answers
417 views

Check if Rhythmbox is running via Python

I am trying to extract information from Rhythmbox via dbus, but I only want to do so, if Rhythmbox is running. Is there a way to check if Rhythmbox is running via Python without starting it if it is ...
3
votes
3answers
541 views

How to continuously monitor rhythmbox for track change using python

I want to monitor the change of track in Rhythmbox using python. I want to continuously check for change of track and execute a set of functions if the track is changed. I have written a piece of code ...
2
votes
1answer
322 views

Rhythmbox: how do I access the 'rating' field of a track through Python script?

I would like the capability to get/set the rating associated with a specific track through a Python. How do I achieve this?
1
vote
1answer
209 views

How to list all artists in a rhythmbox plugin

I'm trying to list all artists in the rhythmbox database from within a rhythmbox python plugin. The only solution I have found is to make the UI select all artists and all songs, loop through every ...
1
vote
1answer
250 views

get rhythmbox information from other user

I have Rhythmbox running on my desktop, and I want to be able to control it from remotely via a web interface. I'm having problems accessing it, however, because rhythmbox-client is complaining that ...
0
votes
2answers
31 views

Rhythmbox how to add entry to side pane?

I'm trying to write a Rhythmbox plugin and would need to add another entry in the left panel that allows the user to switch to a new "page" provided by my plugin. Unhappily the only ressource I could ...
0
votes
0answers
177 views

Rhythmbox - Getting Dbus Exception with python

I'm trying to use the Rhythmbox SDK via Dbus in order to write a plugin for rhythmbox. i'm running kubunto natty, Python 2.7.1+. I'm good with python but rather new to linux. While using the ...
0
votes
1answer
54 views

rb plugin the hot key not working

def activate(self,shell): self.shell = shell self.action = gtk.Action ('foo','bar','baz',None) self.activate_id = self.action.connect ('activate', self.call_bk_fn,self.shell) ...
0
votes
2answers
84 views

how to force linking on linux libgpod and rhythmbox

Ok, I've added some functionality to a linux library. However even after 'make install' the program I'm trying to confirm functionality is linking to the previous version. So 'make install' puts my ...
0
votes
3answers
580 views

Speeding up ssh in batch files

This is my situation:     I have a linux server/media center with a windows client.     My goal is to remote control rhythmbox amongst other things.     I've done this ...
0
votes
2answers
937 views

show lyrics on ubuntu

I'm writing a little script for Ubuntu. My intention is to call rhythmbox lyrics plug-in with a global short-cut (configuring gnome) . I can call it from rhythmbox python console, but I don't know ...