Questions tagged [rhythmbox]

For issues relating to the Rhythmbox music player for GNOME.

Rhythmbox is a music playing application for . Most new self-contained features, such as integration with web services and support for hardware devices, are added to Rhythmbox as plugins. Plugins can be written in C, Python, or Vala.

Resources:

32 questions
1
vote
0 answers

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 the user (www-data) that is trying to access it…
helloandre
  • 10,541
  • 8
  • 47
  • 64
1
vote
0 answers

Bananian and iPod sync with Rhythmbox

I'am using a Banana Pi Pro with Bananian OS, which is a Debian 8 installation, using armhf packages. Trying to synchronise my iPod classic 6g with Rhythmbox fails. I've installed a xfce desktop environment apt-get install xfce4 xfce4-power-manager…
Felix
  • 23
  • 1
  • 6
1
vote
1 answer

Subscribe-to-podcast fails - wants 2 arguments, not 1?

I used to subscribe new podcasts by calling "rhythmbox [url of podcast]", but that is no longer working due to this bug. It just opens Rhythmbox instead of opening and subscribing. (although it does pre-fill it if you happen to click "add" in the…
NoBugs
  • 9,310
  • 13
  • 80
  • 146
1
vote
1 answer

Start a python webserver from a rhythmbox plugin

I'm trying to implement a Rhythmbox-plugin similiar to rhythmweb, but I have a problem with starting a HttpServer from within the plugin. If I start the server like it is usually done (e.g. with make_server(...).server_forever()) the plugin blocks…
chrert
  • 462
  • 2
  • 12
1
vote
2 answers

How do I query for data in Rhythmbox

I'm using ubuntu 12.04 and I'm trying to write a python plugin to query the Rhythmbox database. The Rhythmbox version is v2.96 but this issue also occurs with v2.97 as well. When I do a python query, Ubuntu crashes with a segmentation fault. I…
fossfreedom
  • 2,903
  • 2
  • 19
  • 40
0
votes
2 answers

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 how to import rhythmbox built-in modules (eg.…
user55510
  • 61
  • 4
0
votes
2 answers

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 find about writing RB plugins is this and I am…
drakide
  • 1,757
  • 2
  • 15
  • 23
0
votes
3 answers

Is it possible to automatically save playlists (to files) in Rhythmbox

Besides the question in the title I would like to explain my motivation, maybe there is another solution for my situation. I work at different stations of a little local network, I usually work in station 3, where I listen to music while I work and…
Andrés Chandía
  • 999
  • 1
  • 16
  • 32
0
votes
1 answer

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) self.action_group = gtk.ActionGroup…
Bunny Rabbit
  • 8,213
  • 16
  • 66
  • 106
0
votes
0 answers

Rhythmbox plugin. Get one number limited of songs

Get all songs: for row in self.shell.props.library_source.props.base_query_model: print(row[0].get_string(RB.RhythmDBPropType.TITLE)) I need get only 10 songs (for example). First…
alditis
  • 4,633
  • 3
  • 49
  • 76
0
votes
0 answers

rhythmbox unstable after pause/play from python script

I have a python gtk interface that pause rhythmbox with rhythmbox-client --pause, play a video and after that play again rhythmbox with rhythmbox-client --play The problem is that sometimes rhythmbox after the unpause, begin to be unstable: the…
David Sedeño
  • 495
  • 1
  • 6
  • 19
0
votes
1 answer

Which widgets are used in Rhythmbox there

I'm building a GUI with GTK+. I want to use the same widgets used by Rhythmbox in the left side-bar. But I can't find them in Glade. Are they just buttons ? Thanks for your help!
Louis Etienne
  • 1,302
  • 3
  • 20
  • 37
0
votes
1 answer

Reading a file from Rhythmbox plugin

In my plugin for Rhythmbox I need to read data from xml file. The xml file is the same as the script. I read the file like this : from xml.dom.minidom import parse doc = parse('sites.xml') I get an error saying that the file is not found. I…
Hunsu
  • 3,281
  • 7
  • 29
  • 64
0
votes
1 answer

How to show a dialog pane with a progress bar in Python

I'm working on Rhythmbox plugin and I need to show a dialog pane with a progress bar. Here's my code : def download_all_lyrics_action_callback(self, action): progressbar = Gtk.ProgressBar(); dialog = Gtk.Dialog(_('lLyrics…
Hunsu
  • 3,281
  • 7
  • 29
  • 64
0
votes
1 answer

How to know if Rhythmbox is playing music or something else

I'm trying to solve a bug in this plugin. I want to show the sidebar only when playing music (not podcast or radio). My problem is I don't know what's the user is listening to. Can someone provide me with a way to do that? Thanks.
Hunsu
  • 3,281
  • 7
  • 29
  • 64