UnityのSpotifyクイックリスト


10

(ウェブサイトからインストールした)SpotifyにUnityの「クイックリスト」を追加して、ドックのアイコンを右クリックすると、「次へ、前へ、停止、再生」などが表示されるようにするにはどうすればよいですか?

回答:


5

Spotify(ネイティブLinuxクライアント)

Spotifyには、その機能の一部を制御するインジケーターが含まれているため、これを使用dbusしてイベントを送信できます。

これをカバーするubuntuforumsには素晴らしいスクリプトがあります。

最初に前提条件をインストールします。

sudo apt-get install libnet-dbus-perl

スクリプトをコピーしてというテキストファイルに貼り付け、spcmdこれをホームフォルダーに保存します。

実行権限を付与します。

chmod +x ~/spcmd

これをより便利なフォルダに移動しましょう:

mv ~/spcmd /usr/local/bin

では、クイックリストを作成しましょう。

まず、spotifyデスクトップファイルをホームフォルダーにコピーします。

mkdir -p ~/.local/share/applications
cp /usr/share/applications/spotify.desktop ~/.local/share/applications

ファイルを開き、クイックリストをコピーしてファイルの最後に貼り付けます。それを保存。

gedit ~/.local/share/applications/spotify.desktop

最終結果

ここに画像の説明を入力してください

クイックリスト

X-Ayatana-Desktop-Shortcuts=PlayPause;Next;Previous;Stop;

[PlayPause Shortcut Group]
Name=PlayPause
Exec=spcmd playpause
TargetEnvironment=Unity

[Next Shortcut Group]
Name=Next
Exec=spcmd next
TargetEnvironment=Unity

[Previous Shortcut Group]
Name=Previous
Exec=spcmd previous
TargetEnvironment=Unity

[Stop Shortcut Group]
Name=Stop
Exec=spcmd stop
TargetEnvironment=Unity

spcmd

#!/usr/bin/perl

use 5.010;
use strict;
use warnings;
use File::Basename;
use Net::DBus;

# Figure out some dbus stuff
unless ( defined $ENV{'DBUS_SESSION_BUS_ADDRESS'} ) {
&set_DBUS_SESSION_BUS_ADDRESS;
#die "Don't know which dbus to attach to.\nMake sure environment variable DBUS_SESSION_BUS_ADDRESS is set.";
}
#my $bus = Net::DBus->find;
my $bus = Net::DBus->session;
my $spotify = $bus->get_service("org.mpris.MediaPlayer2.spotify");
my $player = $spotify->get_object("/org/mpris/MediaPlayer2", "org.mpris.MediaPlayer2.Player");
my $application = $spotify->get_object("/org/mpris/MediaPlayer2", "org.mpris.MediaPlayer2");
my $getorset = $spotify->get_object("/org/mpris/MediaPlayer2", "org.freedesktop.DBus.Properties");

# Handle command line argument
if (scalar @ARGV == 0) { &print_help; }
given ($ARGV[0]) {
# when ('play') { $player->Play(); } #Does not work for some reason.
when ('pause') { $player->Pause(); }
when ('playpause') { $player->PlayPause(); }
when ('next') { $player->Next(); }
when ('previous') { $player->Previous(); }
when ('stop') { $player->Stop(); }
when ('playstatus') { print $getorset->Get("org.mpris.MediaPlayer2.Player", "PlaybackStatus") . "\n"; }
when (m/\bspotify:(artist|album|track):[0-9a-zA-z]{22}\b/) { $player->OpenUri($_); }
when ('metadata-debug') { &print_debug_metadata; }
default { &print_help; }
}


# Print the help text
sub print_help {
print "USAGE: " . basename($0) . " {pause|playpause|next|previous|stop|playstatus|met adata-debug|<spotify URI>}\n\n";
print "\t" . "pause" . "\t\t" . "Causes spotify to pause current playback." . "\n";
print "\t" . "playpause" . "\t" . "Causes spotify to pause or play current playback." . "\n";
print "\t" . "next" . "\t\t" . "Goes to next song." . "\n";
print "\t" . "previous" . "\t" . "Goes to previous song." . "\n";
print "\t" . "stop" . "\t\t" . "Stops playback." . "\n";
print "\t" . "playstatus" . "\t" . "Prints current playstatus (Playing/Paused)." . "\n";
print "\t" . "<spotify URI>" . "\t" . "Starts playing supplied URI." . "\n";
print "\t" . "metadata-debug" . "\t" . "Shows available data on currently playing song." . "\n";
print "\t" . "\t\t" . "Fairly unformatted, thus \"debug\" data." . "\n";
print "\n";
print "EXAMPLES:\t" . basename($0) . " playpause" . "\n";
print "\t\t" . basename($0) . " spotify:track:5XXAq1r5r73ZyBS0XAiGw0" . "\n";

exit;
}

# Print some raw metadata
sub print_debug_metadata {
# Dereference the metadata hashref by copying it to a local hash
my %metadata = %{ $getorset->Get("org.mpris.MediaPlayer2.Player", "Metadata") };

# Print all metadata
print "Now Playing:\n";
for (keys %metadata) {
print $_ . ":\t" . $metadata{$_} . "\n" unless ($_ eq 'xesam:artist');
}

# Dereference the artist arrayref by copying it to local array
my @artistarray = @{ $metadata{'xesam:artist'} };

# Print all artists.
foreach my $artist (@artistarray) {
print "artist: \t" . $artist . "\n";
}
}

sub set_DBUS_SESSION_BUS_ADDRESS {
my $curruser = `whoami`; chomp $curruser;
my $procname = 'spotify';
my $pid = `pgrep -o -u $curruser $procname`; chomp $pid;
my $environ = '/proc/' . $pid . '/environ';
my $dbussession = `grep -z DBUS_SESSION_BUS_ADDRESS $environ`; $dbussession =~ s/^DBUS_SESSION_BUS_ADDRESS=//;

$ENV{'DBUS_SESSION_BUS_ADDRESS'} = $dbussession;
}

5

これまでの答えは少し複雑すぎると思います。個別のスクリプトは必要ありませんdbus-send。関連するDBusコマンドはを介して直接送信できます。dbusパッケージがインストールされていることを確認し、コマンドラインで次のコマンドを発行します。

mkdir -p ~/.local/share/applications
cp /usr/share/applications/spotify.desktop ~/.local/share/applications/

~/.local/share/applications/spotify.desktop読み取るファイルを編集します。

[Desktop Entry]
Name=Spotify
GenericName=Music Player
Comment=Listen to music using Spotify
Icon=spotify-client
Exec=spotify %U
TryExec=spotify
Terminal=false
Type=Application
Categories=Qt;Audio;Music;Player;AudioVideo
MimeType=x-scheme-handler/spotify
# ====> MODIFICATIONS START HERE <=====
Actions=PlayPause;Next;Previous

[Desktop Action PlayPause]
Name=Play/Pause
Exec=dbus-send --print-reply=literal --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.PlayPause
OnlyShowIn=Messaging Menu;Unity;

[Desktop Action Next]
Name=Next
Exec=dbus-send --print-reply=literal --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Next
OnlyShowIn=Messaging Menu;Unity;

[Desktop Action Previous]
Name=Previous
Exec=dbus-send --print-reply=literal --dest=org.mpris.MediaPlayer2.spotify /org/mpris/MediaPlayer2 org.mpris.MediaPlayer2.Player.Previous
OnlyShowIn=Messaging Menu;Unity;

これで完了です。


これが最良の答えです。しかし、手動で実行しようとする--print-reply=literalと、が表示されず、機能しませんでした。説明はありますか?DBusについてはほとんど何も知りません。
タマシュBarta

すばらしい答え:)追加の質問、「親指を立てる」ボタンと「親指を下ろす」ボタンを追加することも可能ですか(spotifyラジオにあるもの:))?
Linus

2

spotify_cmdwineでSpotifyの実行中のインスタンスを制御するツールです 。Windowsでも動作するはずですが、テストされていません。

spotifycmdをダウンロードします。デスクトップにコピーします。その後

cd ~/Desktop/
tar -xvjf spotifycmd-0.5.tar.bz2 
sudo cp -r spotifycmd /usr/bin/

Exec=/usr/bin/spotifycmd/spotify_cmd.exe XXXXクイックリストの作成中に使用します。

ここXXXXplaypausenextprevstopvoldownvolup、など

クイックリストを作成するためのガイドは私の答えを見てください


この答えは素晴らしい!!!! Spotify_cmd.exeの動作に問題があります。Can not find spotify, is it running?端末に戻ります。これは正しい道です!
Ryan McClure

おお、ネイティブの方法はありますか?
MarkovCh1

@Syzygy見つかりませんでした。:(
Rahul Virpara

hmmm-エラーが発生した場合-このwineベースのspotify_cmdを機能させるには、spotifyのWindowsバージョンをwineで実行する必要があるかもしれません。
fossfreedom

@fossfreedomあなたは正しいです。ソースを確認しました。windows.hWin32 APIを提供するライブラリが含まれています。
Rahul Virpara 2012年

-1

Spotifyのパネルにアイコンが表示されます。それをクリックするだけで、再生、停止、一時停止、次などができます(すべて覚えてはいけません)。それがあなたの質問に答えるかどうかわかりません。


2
この質問は、UnityランチャーでもSpotifyのアイコンにその機能を組み込む方法を尋ねています。
Eliah Kagan

わかりました、私だけが彼の質問を誤解しました。
user66987
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.