Pianobar

提供: ArchWiki
2015年2月17日 (火) 16:49時点におけるKusakata (トーク | 投稿記録)による版 (ページの作成:「Category:音声/動画 en:Pianobar {{Related articles start}} {{Related|アプリケーション一覧/マルチメディア}} {{Related articles end}} [http://6...」)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
ナビゲーションに移動 検索に移動

関連記事

Pianobar はパーソナライズドインターネットラジオ Pandora のフリー/オープンソースなコンソールベースのクライアントです。

機能:

  • ステーションを再生・管理 (作成、音楽を追加、削除、名前を変更...)
  • 曲を評価してなぜ選択されたのか説明
  • 次に流れる曲のリスト/再生した曲の履歴
  • キーバインディングやテキスト出力のカスタマイズ
  • リモートコントロールと eventcmd インターフェイス (トラックを last.fm に送信するなど)
  • アメリカ国外のリスナーのためのプロキシサポート
ヒント: Since Pianobar is a command line interface based program it can be placed in a different vterm than your desktop and be left to run.

インストール

Pianobar は公式リポジトリpianobar パッケージでインストールできます。

設定

まず、Pianobar の設定ファイルを作成する必要があります。設定ファイルは $XDG_CONFIG_HOME/pianobar/config または ~/.config/pianobar/config に配置してください。

$ man pianobar
CONFIGURATION
       The  configuration file consists of simple key = value lines, each ter‐
       minated with a newline (\n) character. Note that keys  and  values  are
       both  case  sensitive, and there must be exactly one space on each side
       of the equals sign.

       act_* keys control pianobar's key-bindings.  Every  one-byte  character
       except for \x00 and the special value disabled are allowed here.

以下は設定ファイルの例です。設定オプションの詳細は man pianobar を見てください。

$ ~/.config/pianobar/config
audio_quality = {high, medium, low}
autostart_station = stationid

password = plaintext_password
user = your@user.name

トラブルシューティング

pianobar の再生中に音質に問題が発生する場合、サウンドドライバーとして ALSA を使っているのであれば、以下を実行すれば修正される可能性があります。

警告: The provided fixes may affect other applications that use audio as the default driver is being changed.
  1. alsa-oss をインストールしてください。詳しくは ALSA のページを参照。
    • デフォルトの libao ドライバーを alsa から oss に変更。
      # /etc/libao.conf
      default_driver=oss
    • そして pianobar を実行。
      $ aoss pianobar
  2. もしくは、pulseaudio を使うこともできます。
    # /etc/libao.conf
    default_driver=pulse
ノート: Be sure to remove the dev=default option of the alsa driver or adjust it to specify a specific Pulse sink name or number.

参照