アプリケーションをミュートするスクリプト


14

私の目標は、システム全体ではなく、Spotifyアプリケーションをミュートできるようにすることです。コマンドの使用:ps -C spotify -o pid=SpotifyのプロセスIDを見つけることができます"22981"。この場合、IDはです。そのプロセスIDを使用して、このリストから検索したいと思います。pacmd list-sink-inputs。このコマンドは、次のようなリストを返します。

eric@eric-desktop:~$ pacmd list-sink-inputs
Welcome to PulseAudio! Use "help" for usage information.
>>> 1 sink input(s) available.
    index: 0
    driver: <protocol-native.c>
    flags: START_CORKED 
    state: RUNNING
    sink: 1 <alsa_output.pci-0000_00_1b.0.analog-stereo>
    volume: 0: 100% 1: 100%
            0: -0.00 dB 1: -0.00 dB
            balance 0.00
    muted: no
    current latency: 1019.80 ms
    requested latency: 371.52 ms
    sample spec: s16le 2ch 44100Hz
    channel map: front-left,front-right
                 Stereo
    resample method: (null)
    module: 8
    client: 10 <Spotify>
    properties:
        media.role = "music"
        media.name = "Spotify"
        application.name = "Spotify"
        native-protocol.peer = "UNIX socket client"
        native-protocol.version = "26"
        application.process.id = "22981"
        application.process.user = "eric"
        application.process.host = "eric-desktop"
        application.process.binary = "spotify"
        window.x11.display = ":0"
        application.language = "en_US.UTF-8"
        application.process.machine_id = "058c89ad77c15e1ce0dd5a7800000012"
        application.process.session_id = "058c89ad77c15e1ce0dd5a7800000012-1345692739.486413-85297109"
        application.icon_name = "spotify-linux-512x512"
        module-stream-restore.id = "sink-input-by-media-role:music"

今、私はapplication.process.id = "22981"この場合にあるシンク入力インデックスに相関させたいと思いindex: 0ます。そのインデックス番号を使用して、このコマンドを実行する必要があります。pacmd set-sink-input-mute 0 1 Spotifyをミュートし、Spotifyのミュートpacmd set-sink-input-mute 0 0を解除ます。これらのコマンドでは、最初の番号を以前に見つかったインデックス番号に置き換える必要があり、次の番号はミュートをオンまたはオフにするブール値です。Spotifyアプリケーションをミュート/ミュート解除するコマンドを取得できるように、これをどのようにスクリプトに含めることができますか?

編集: 以下の両方のスクリプトは期待どおりに動作しますが、誰かがそれに応じてチェックするmuted: yesmuted: no、それに応じてミュートまたはミュート解除するトグルを追加できますか?

編集: グレンジャックマンのスクリプトを変更してトグルを追加できました。

#!/bin/bash

main() {
    local action=toggle
    while getopts :mu option; do 
        case "$option" in 
            m) action=mute ;;
            u) action=unmute ;;
            ?) usage 1 "invalid option: -$OPTARG" ;;
        esac
    done
    shift $((OPTIND - 1))
    local pid=$(pidof "$1")
    if [[ -z "$pid" ]]; then
        echo "error: no running processes for: $1" >&2
    elif [[ "$1" ]]; then
        $action "$1"
    else
        usage 1 "specify an application name" 
    fi
}

usage() {
    [[ "$2" ]] && echo "error: $2"
    echo "Usage: $0 [-m | -u] appname"
    echo "Default: toggle mute"
    echo "Arguments:"
    echo "-m = mute application"
    echo "-u = unmute application"
    exit $1
}

toggle() {
    local status=$(get_status "$1")
    if [[ "$status" == "yes" ]]; then
      unmute "$1"
    elif [[ "$status" == "no" ]]; then
      mute "$1"
    fi
}

mute()   { adjust_muteness "$1" 1; }
unmute() { adjust_muteness "$1" 0; }

adjust_muteness() { 
    local index=$(get_index "$1")
    local status=$(get_status "$1")
    [[ "$index" ]] && pacmd set-sink-input-mute "$index" $2 >/dev/null 
}

get_index() {
    local pid=$(pidof "$1")
    pacmd list-sink-inputs | 
    awk -v pid=$pid '
    $1 == "index:" {idx = $2} 
    $1 == "application.process.id" && $3 == "\"" pid "\"" {print idx; exit}
    '
}

get_status() {
   local pid=$(pidof "$1")
   pacmd list-sink-inputs | 
   awk -v pid=$pid '
   $1 == "muted:" {idx = $2} 
   $1 == "application.process.id" && $3 == "\"" pid "\"" {print idx; exit}
   '
}

main "$@"

なぜ使用しないのpactl list sink-inputsですか?その後、ネットワーク上で動作します。
ヤヌストロエルセン

回答:


13

ここにあなたの興味深い挑戦についての私の見解があります:

#!/bin/bash

main() {
    local action=mute
    while getopts :hu option; do 
        case "$option" in 
            h) usage 0 ;;
            u) action=unmute ;;
            ?) usage 1 "invalid option: -$OPTARG" ;;
        esac
    done
    shift $((OPTIND - 1))

    if [[ "$1" ]]; then
        $action "$1"
    else
        usage 1 "specify an application name" 
    fi
}

usage() {
    [[ "$2" ]] && echo "error: $2"
    echo "usage: $0 [-h] [-u] appname"
    echo "where: -u = ummute application (default action is to mute)"
    exit $1
}

mute()   { adjust_muteness "$1" 1; }
unmute() { adjust_muteness "$1" 0; }

adjust_muteness() { 
    local index=$(get_index "$1")
    [[ "$index" ]] && pacmd set-sink-input-mute "$index" $2 >/dev/null 
}

get_index() {
    local pid=$(pidof "$1")
    if [[ -z "$pid" ]]; then
        echo "error: no running processes for: $1" >&2
    else
        pacmd list-sink-inputs | 
        awk -v pid=$pid '
            $1 == "index:" {idx = $2} 
            $1 == "application.process.id" && $3 == "\"" pid "\"" {print idx; exit}
        '
    fi
}

main "$@"

これも同様に完全に動作します
-era878

@ era878、トグルがデフォルトのアクションであるというアイデアが好きです。ただし、get_status関数は、ステータスが適切なアプリケーションに属することをクロスチェックせずに「ミュート」行のみを検出します。get_index詳細については、関数を再度お読みください。
グレンジャックマン

3
素晴らしいawkスキル:)
hytromo

@glennjackman、うん、私はしばらくしてそれを理解しました。投稿したばかりのスクリプトは現在正しく動作していると思います。
時代878

1
詳細:awk -v var=val。Awkは、1行1行でループを$1 == ...実行し、ステートメントのいずれかとの一致を試み、一致する括弧内のコードを実行し、続行します。最初のステートメントはindex:、最初の単語がである行で一致し、idx変数に2番目の単語(SINK INDEX)を格納します。だから、idx次によって上書きされますindex: <SINK INDEX>awkは(第2の文に一致するまでライン$1= application.process.id$2= =$3= <expected pid val>)。この2番目のステートメントが一致すると、awkはidx(最初のステートメントに一致した最後の行であるindex:)出力して終了します。
KrisWebDev

7

ソリューションをありがとう!ここで提供されているスクリプトを使用して問題を解決することができました。私はそれらを少し修正しなければならなかったので、ここで改良版に参加します。

オリジナルのスクリプトがうまくいかなかった理由は、いくつかのアプリケーションが複数のインスタンス、つまり複数のPIDを持つことができますが、そのうちの1つだけがサウンドを生成し、Pulseaudioに実際に接続されるためです。スクリプトは最初に見つかったPIDのみを使用するため、通常は目的のアプリケーションを/ not /ミュートします。

これが、引数がPulseAudioに登録されているアプリケーション名であるバージョンです。この名前は、pacmd list-sink-inputsコマンドを実行して見つけることができますapplication.nameフィールドます。

別の解決策は、同じアプリケーション名を持つすべてのPIDをミュート/ミュート解除することです。

#!/bin/bash

# Adapter from glenn jackman on http://askubuntu.com/questions/180612/script-to-mute-an-application
# to depend directly on the name of the PulseAudio client
# rather than the application name (several instances of one application could
# run while only one is connected to PulseAudio)

# Possible further improvement: it could be useful to also mute all clients having
# the specified name. Here, only the first one is muted.

#!/bin/bash

main() {
    local action=mute
    while getopts :hu option; do
        case "$option" in
            h) usage 0 ;;
            u) action=unmute ;;
            ?) usage 1 "invalid option: -$OPTARG" ;;
        esac
    done
    shift $((OPTIND - 1))

    if [[ "$1" ]]; then
        $action "$1"
    else
        usage 1 "specify the name of a PulseAudio client"
    fi
}

usage() {
    [[ "$2" ]] && echo "error: $2"
    echo "usage: $0 [-h] [-u] appname"
    echo "where: -u = ummute application (default action is to mute)"
    exit $1
}

mute()   { adjust_muteness "$1" 1; }
unmute() { adjust_muteness "$1" 0; }

adjust_muteness() {
    local index=$(get_index "$1")
    if [[ -z "$index" ]]; then
        echo "error: no PulseAudio sink named $1 was found" >&2
    else
        [[ "$index" ]] && pacmd set-sink-input-mute "$index" $2 >/dev/null
    fi
}

get_index() {
#    local pid=$(pidof "$1")
#    if [[ -z "$pid" ]]; then
#        echo "error: no running processes for: $1" >&2
#    else
        pacmd list-sink-inputs |
        awk -v name=$1 '
            $1 == "index:" {idx = $2}
            $1 == "application.name" && $3 == "\"" name "\"" {print idx; exit}
        '
#    fi
}

main "$@"

6

質問が台本を求めているにもかかわらず、私はこれをここに残したかったです。

Ubuntuでこれを行うCアプリケーションを作成しました。さらに良いことに、それはインジケータトレイに座っています(使用してlibappindicator) Spotifyが再生しているものを短い間隔でチェックします。広告を再生している場合(ブラックリストと照合)、Spotifyをミュートします。新しい広告が再生されている場合は、インジケータメニューの[ミュート]をクリックするだけで、ブラックリストに追加されます。

それが行うことは、Xウィンドウを探し、そのためにをXFetchName返しますSpotify - Linux Preview。次に、そのウィンドウXGetWindowProperty_NET_WM_ICON_NAMEプロパティを照会するための呼び出しを行い、"Spotify – <Artist> – <Song>"形式で文字列を返します。広告を再生すると、次のような結果が返されます。

"Spotify – Spotify – Premium Free Trial Cancel Any Time"

現在のタイトルがリストにあるかどうかを効率的に確認するために、広告のリストの3 項検索ツリーを維持します。

また、PulseAudio非同期APIを使用してsink-inputsand を照会しますset-mute

pa_context_get_sink_input_info_list()
pa_context_set_sink_input_mute()

単純なCコードであるため、軽量です。ソースコードとUbuntu .debパッケージを確認するには、indicator-muteadsを使用します。おそらく、シェルスクリプトを2〜3桁上回るでしょう。


バージョン1.0.11では動作しません
ヤヌスTroelsen

4

まず第一に、spotifyのようなアプリケーションのPIDを見つける「より正確な」方法は、以下を使用することです。

pidof spotify

私は仕事をするスクリプトを構築しました、それがそれを行うための最良の方法であるかどうかはわかりませんが、完全に動作します:

#!/bin/bash
# Script to mute an application using PulseAudio, depending solely on
# process name, constructed as answer on askubuntu.com: 
# http://askubuntu.com/questions/180612/script-to-mute-an-application

#It works as: mute_application.sh vlc mute OR mute_application.sh vlc unmute

if [ -z "$1" ]; then
   echo "Please provide me with an application name"
   exit 1
fi

if [ -z "$2" ]; then
   echo "Please provide me with an action mute/unmute after the application name"
   exit 1
fi

if ! [[ "$2" == "mute" || "$2" == "unmute" ]]; then
   echo "The 2nd argument must be mute/unmute"
   exit 1
fi

process_id=$(pidof "$1")

if [ $? -ne 0 ]; then
   echo "There is no such process as "$1""
   exit 1
fi

temp=$(mktemp)

pacmd list-sink-inputs > $temp

inputs_found=0;
current_index=-1;

while read line; do
   if [ $inputs_found -eq 0 ]; then
      inputs=$(echo -ne "$line" | awk '{print $2}')
      if [[ "$inputs" == "to" ]]; then
         continue
      fi
      inputs_found=1
   else
      if [[ "${line:0:6}" == "index:" ]]; then
         current_index="${line:7}"
      elif [[ "${line:0:25}" == "application.process.id = " ]]; then
         if [[ "${line:25}" == "\"$process_id\"" ]]; then
            #index found...
            break;
         fi
      fi
   fi
done < $temp

rm -f $temp

if [ $current_index -eq -1 ]; then
   echo "Could not find "$1" in the processes that output sound."
   exit 1
fi

#muting...
if [[ "$2" == "mute" ]]; then
   pacmd set-sink-input-mute "$current_index" 1 > /dev/null 2>&1
else
   pacmd set-sink-input-mute "$current_index" 0 > /dev/null 2>&1
fi

exit 0

次のように作業できます。

./mute_application.sh spotify mute

または

./mute_application.sh spotify unmute

AudaciousとVlcの両方を実行し、そのうちの1つだけをミュート/ミュート解除してテストしました。


完璧なスクリプト、期待どおりに動作する
-era878

1

スクリプトを作成することはできませんが、hakermaniaのスクリプトを変更して別のスクリプトを作成しました。

これにより、特定のアプリケーションの音量が5%ずつ増減します。

編集:実際には、常に最後に開いたアプリを変更することで動作しています。アイデア?

#!/bin/bash
# Script to increase or decrease an individual application's volume using PulseAudio, depending solely on
# process name, based on another script by hakermania, constructed as answer on askubuntu.com: 
# http://askubuntu.com/questions/180612/script-to-mute-an-application

# It works as: change_app_volume.sh vlc increase OR change_app_volume.sh vlc decrease
# Set desired increments in lines #66 and #68

if [ -z "$1" ]; then
   echo "Please provide me with an application name"
   exit 1
fi

if [ -z "$2" ]; then
   echo "Please provide me with an action increase/decrease after the application name"
   exit 1
fi

if ! [[ "$2" == "increase" || "$2" == "decrease" ]]; then
   echo "The 2nd argument must be increase/decrease"
   exit 1
fi

process_id=$(pidof "$1")

if [ $? -ne 0 ]; then
   echo "There is no such process as "$1""
   exit 1
fi

temp=$(mktemp)

pacmd list-sink-inputs > $temp

inputs_found=0;
current_index=-1;

while read line; do
   if [ $inputs_found -eq 0 ]; then
      inputs=$(echo -ne "$line" | awk '{print $2}')
      if [[ "$inputs" == "to" ]]; then
         continue
      fi
      inputs_found=1
   else
      if [[ "${line:0:6}" == "index:" ]]; then
         current_index="${line:7}"
      elif [[ "${line:0:25}" == "application.process.id = " ]]; then
         if [[ "${line:25}" == "\"$process_id\"" ]]; then
            #index found...
            break;
         fi
      fi
   fi
done < $temp

rm -f $temp

if [ $current_index -eq -1 ]; then
   echo "Could not find "$1" in the processes that output sound."
   exit 1
fi

#increase/decrease...
if [[ "$2" == "increase" ]]; then
   pactl set-sink-input-volume "$current_index" +5% > /dev/null 2>&1
else
   pactl set-sink-input-volume "$current_index" -5% > /dev/null 2>&1
fi

exit 0

0

アプリのすべての入力(複数のプロセス)をミュートするスクリプトを編集し、デフォルトで切り替えます:

#!/bin/bash

main() {
    local action=toggle
    while getopts :hu option; do
        case "$option" in
            h) usage 0 ;;
            m) action=mute ;;
            u) action=unmute ;;
            ?) usage 1 "invalid option: -$OPTARG" ;;
        esac
    done
    shift $((OPTIND - 1))

    if [[ "$1" ]]; then
        $action "$1"
    else
        usage 1 "specify an application name"
    fi
}

usage() {
    [[ "$2" ]] && echo "error: $2"
    echo "usage: $0 [-h] [-u] appname"
    echo "where: -u = ummute , -m = mute (default action is to toggle)"
    exit $1
}

mute()   { adjust_muteness "$1" 1; }
unmute() { adjust_muteness "$1" 0; }
toggle() { adjust_muteness "$1" toggle; }

adjust_muteness() {
    clients=$(pactl list clients short | awk '/[0-9]+.*'$1'.*/{print $1}')
    inputs=$(pactl list sink-inputs short)
    for c in $clients; do
        for i in $(printf '%s' "$inputs" | awk '/[0-9]+\s[0-9]+\s'$c'/{print $1}'); do
            pactl set-sink-input-mute $i $2 &
        done
    done
}

main "$@"
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.