OS XターミナルCLIから現在のボリュームレベルを取得しますか?

OS XターミナルCLIから現在のボリュームレベルを取得しますか?

Macでは、CLIを介して現在のボリュームレベルを確認したいと思います。次のように設定できることがわかります。

osascript -e 'set volume <N>'

しかし、現在のボリュームレベルを取得しようとすると、動作しないようです。

$ osascript -e 'get volume'
4:10: execution error: The variable volume is not defined. (-2753)

答え1

get volume settings出力とアラームの数量を含むオブジェクトを返すことに注意してください。たとえば、次のようにしてオブジェクト全体を検索できます。

osascript -e 'get volume settings'

あるいは、出力ボリュームのみを取得することもできます(たとえば、警告ボリュームの代わりに)。

osascript -e 'set ovol to output volume of (get volume settings)'

...しかし、すべてのオーディオデバイスが音量設定を直接ソフトウェアで制御できるわけではありません。たとえば、ディスプレイオーディオには制御機能が必要ですが、FireWireまたはUSB I / Oボードにはソフトウェア制御の下でこれらの設定がない可能性があります(物理的なノブである可能性があります)。特定の設定がソフトウェアによって制御されない場合は、返されたオブジェクトにget volume settings「欠けている値」または同様のものが表示されます。

答え2

1..100の同じスケールを使用してボリュームをインポートして設定します。

# Get current volume as a number from 0 to 100
current_vol=$(osascript -e 'output volume of (get volume settings)')

# Prank co-worker by playing loud noise/music
osascript -e "set volume output volume 100"
afplay sabotage.m4a

# (Re-)set to saved volume as a number from 0 to 100
osascript -e "set volume output volume $current_vol"

答え3

私は「chut」という非常に単純なbashスクリプトを送信しました。なぜなら、私は浮動小数点(0.1ステップの0〜10)を入力として使用しますが、ステップ14の0〜100の範囲の整数を出力するsysボリュームに疲れたからです。

考えてみてください...興味のある人がいる場合:http://github.com/docgyneco69/chut

すべての栄光の中で:

#!/bin/bash
## CHUT script
## Note: regex [[:digit:]] requires a relatively recent shell
## easy to change with a sed cmd if needed
## applescript arg is not fully bullet proofed for sneaky cmds
## but as no outside arg is passed by the script I kept the usual
## arg format for code readibility (and pure laziness)

# init _x and curr_vol with defaults values (muting)
_x='- 100' ; curr_vol='0' ;

function _usage {echo -e "CHUT is a simple cmd exe to change the system audio volume.
USAGE chut [][-][--][+][++]
      no arg will mute (default)
      [-][+] [--][++] to decrease or increase the volume
      [+++] to set to the maximum
      [-h][--help] display this message
NOTE sys sets volume as float (0-10/0.1) but outputs int (0-100/14)" ; exit 1 ; } ;

# set _x by looping $1 then break as we only use 1st arg, -h or --help to print usage
while [[ "$1" ]]; do case "$1" in
    "-h"|"--help")  _usage      ;;
    "-")        _x='- 0.5'  ;;
    "--")       _x='- 1.0'  ;;
    "+")        _x='+ 0.5'  ;;
    "++")       _x='+ 1.0'  ;;
    "+++")      _x='+ 100'  ;;
    *)      _x='- 100'  ;; # unrecognized values will mute
esac ; break ; done ;

# get current volume value from system (sys volume is 0 to 100 step 14)
curr_vol=$(/usr/bin/osascript -e "get volume settings" | cut -d ',' -f1 | tr -dc [[:digit:]]) ;

# set new volume via _x - use bc for floating point, escape potential errors, 
# print value with one decimal - test & echo the new volume value via applescript
curr_vol=$( printf "%.1f" "$( echo "$curr_vol / 14 $_x" | bc -l 2>&-)" ) ;
(/usr/bin/osascript -e "set Volume "\"$curr_vol"\" ") && \
echo $(/usr/bin/osascript -e "get volume settings" | cut -d ',' -f1 | tr -dc [[:digit:]]) ;

exit 0 ;

関連情報