web-dev-qa-db-ja.com

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)
17
Cory Klein

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から返されたオブジェクトに「欠損値」またはそのようなものとして表示されます。

18
tmart

「chut」という非常に謙虚なbashスクリプトをコミットしました。入力として浮動小数点を必要とするsysボリュームにうんざりしているので(0〜10ステップ0.1)、ステップ14が0〜100の範囲の整数を出力します。

図に行く...興味のある方: 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 ;
5
docgyneco69

同じスケール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"
2
iolsmit