RhythmBoxには、コマンドラインインターフェイスまたはプロセス間通信の方法がありますか?


21

スマートフォンから音楽をリモートで変更できるように、ウェブサーバーでrhythmboxと通信したいのです。rhythmboxが次の(架空の)コマンドのようなことを行うためのコマンドラインインターフェイスはありますか?

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

代わりにソケットまたはメッセージパッシングインターフェイスがありますか?Bansheeや他のタイプのサーバーなど、仕事を終わらせることができる代替プログラムはありますか?


重複する可能性がありますか?askubuntu.com/questions/21494/...
fossfreedom

重複する可能性がありますか?askubuntu.com/questions/150790/...
fossfreedom

2
@fossいいえ、Geppetosに似た答えを持つ質問はありません。
ブライアム

回答:


16

基本的に、短い答えは「はい」であり、そのような答えの補足は「rhythmbox-client現在実行中のRhythmboxを制御するためにターミナルからコマンドを使用します。まだ読み込まれていない場合、コマンドの最初のインスタンスが起動します。

例:rhythmbox-client --play現在のRhythmboxセッションで、現在の曲(またはリストの最初の曲)の再生を開始します。Rhythmboxが閉じている場合、再生を開始するために最初に開きます。

rhythmbox-clientおよびその使用法に関する詳細情報は、rhythmbox-clientのmanページで確認できます。参照用にマンページの一部をここに配置します。

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).

編集

このテーマに興味を持ったので、次のコマンドでテストを実行しました。

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

ここに投稿された元の回答から。これは、実際に現在再生中の曲を探すタスクに役立ちます(アスカーのコメントに基づく)。

幸運を!


驚くばかり!それで頭痛が減りました。--seek能力があるかどうか知っていますか?マニュアルページには含まれていません。
アサンクラーク

残念ながら、rhythmbox-clientオプションは限られています。便宜上、この回答に詳細を追加しました。
Geppettvs D'Constanzo

この答えを見てください:unix.stackexchange.com/a/75680、以前の--seekオプションは廃止されたようですが、別の解決策があるようです。成功したらお知らせください。ありがとうございました。
Geppettvs D'Constanzo

まあ...私はあなたのために別の編集を落としました。幸運を!
Geppettvs D'Constanzo

Bansheeには、現在のプレーヤー情報(トラックの再生、カーソルの位置、プレーヤーの状態など)を照会し、再生を制御する機能があります。banshee --helpすべてを説明します!あなたの助けをありがとう
アサンクラーク
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.