RhythmBox ha un'interfaccia a riga di comando o un metodo di comunicazione tra processi?


21

Mi piacerebbe davvero comunicare con rhythmbox con un web server in modo da poter cambiare da remoto la musica riprodotta dal mio smartphone. Esiste un'interfaccia a riga di comando per rhythmbox per fare cose come i seguenti comandi (immaginari)?

rhythmbox next
rhythmbox shuffle=false
rhythmbox change album='Dark Side of the Moon' artist='Pink Floyd' song='Time' 

Esiste invece un socket o un'interfaccia di passaggio messaggi? Esistono programmi sostitutivi che potrebbero portare a termine il lavoro, come Banshee o qualche altro tipo di server?




2
@foss no, nessuna delle domande ha una risposta simile a Geppetos.
Braiam,

Risposte:


16

Fondamentalmente, la risposta breve è "Sì" e il complemento di tale risposta sarà "Usa il rhythmbox-clientcomando da un terminale per controllare l'attuale Rhythmbox in esecuzione, se non è già caricato la prima istanza dei tuoi comandi lo invocherà."

Ad esempio: rhythmbox-client --playrenderà la sessione di Rhythmbox corrente per iniziare a riprodurre il brano corrente (o il primo brano nell'elenco). Se Rhythmbox è chiuso, lo aprirà per primo per iniziare a giocare.

Ulteriori informazioni su rhythmbox-cliente sul suo utilizzo sono disponibili nella pagina man di rhythmbox-client . Metto qui una parte della manpage solo come riferimento.

NAME
       rhythmbox-client - controls a running instance of rhythmbox

SYNOPSIS
       rhythmbox-client [option...][file...]

DESCRIPTION
       rhythmbox-client  is a tool for controlling an already running instance
       of  rhythmbox.   It's  useful  for  remote  control  scripting,  adding
       specific  files  to  the library from the shell, or printing details of
       what's playing. It also has an interactive mode, useful for controlling
       playback  remotely  via  ssh.  Any  files  specified  after  the option
       arguments will be added to the library.  If  the  --enqueue  option  is
       given, the files will also be added to the play queue.

OPTIONS
       -?,--help
              Show help options

       --debug
              Enable debug output

       --no-start
              Do not start a new instance of rhythmbox

       --quit Quit rhythmbox

       -i,--interactive
              Start  interactive  mode  --no-present Don't present an existing
              rhythmbox window

       --next Jump to next song

       --previous
              Jump to previous song

       --play Resume playback if currently paused

       --pause
              Pause playback if currently playing

       --play-pause
              Toggle play/pause mode

       --stop Stop playback if currently playing

       --play-uri=URI
              Play a specified URI, importing it if necessary

       --enqueue
              Add specified tracks already in the library to the play queue

       --clear-queue
              Empty the play queue before adding new tracks

       --print-playing
              Print the title and artist of the playing song

       --print-playing-format=format
              Print formatted details of the song (see FORMAT OPTIONS below).

       --set-volume
              Set the playback volume

       --volume-up
              Increase the playback volume

       --volume-down
              Decrease the playback volume

       --print-volume
              Print the current playback volume

       --select-source=URI
              Select the source corresponding to a URI (device or mount point)

       --activate-source=URI
              Select the source corresponding to a URI (device or mount point)
              and start playing from it if not already playing.

       --play-source=URI
              Select the source corresponding to a URI (device or mount point)
              and start playing from it.

FORMAT OPTIONS
       %at    album title

       %aa    album artist

       %aA    album artist (lowercase)

       %as    album artist sortname

       %aS    album artist sortname (lowercase)

       %ay    album year

       %ag    album genre

       %aG    album genre (lowercase)

       %an    album disc number

       %aN    album disc number, zero padded

       %st    stream title

       %tn    track number (i.e 8)

       %tN    track number, zero padded (i.e 08)

       %tt    track title

       %ta    track artist

       %tA    track artist (lowercase)

       %ts    track artist sortname

       %tS    track artist sortname (lowercase)

       %td    track duration

       %te    track elapsed time

       Variables can be combined using quotes. For example "%tn %aa %tt", will
       print  the  track  number  followed  by the artist and the title of the
       track.

AUTHOR
       This manual page was written by Sven Arvidsson  <sa@whiz.se>,  for  the
       Debian system (but may be used by others).

modificare

Ho avuto un certo interesse su questo argomento, quindi ho eseguito un test con il comando successivo:

dbus-send --print-reply --dest=org.mpris.MediaPlayer2.rhythmbox /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Seek int64:60000000

Dalla risposta originale pubblicata qui. Che in effetti funziona per il compito di cercare la canzone in esecuzione, (in base al commento del richiedente).

In bocca al lupo!


Eccezionale! Questo mi fa risparmiare così tanto mal di testa. Sai se c'è --seekun'abilità? Non lo include nelle pagine man.
Athan Clark,

Sfortunatamente le opzioni rhythmbox-client sono limitate. Ho aggiunto i dettagli a questa risposta per tua comodità.
Geppettvs D'Constanzo,

Dai un'occhiata a questa risposta: unix.stackexchange.com/a/75680 , la precedente opzione --seek sembra essere stata deprecata ma sembra che ci sia un'altra soluzione. Fateci sapere se ci riuscite. Grazie.
Geppettvs D'Constanzo,

Oh bene ... ho lasciato cadere un'altra modifica per te. In bocca al lupo!
Geppettvs D'Constanzo,

Si scopre che Banshee ha sia la possibilità di cercare informazioni sul giocatore corrente (come la riproduzione della traccia, la posizione del cursore, lo stato del giocatore, ecc.) Sia di controllare la riproduzione! banshee --help'dice tutto! Grazie per il tuo aiuto, spero che tu abbia avuto una bellissima giornata!
Athan Clark,
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.