Uzyskaj aktualny poziom głośności w CLI terminalu OS X?


17

Chciałbym sprawdzić bieżący poziom głośności z interfejsu CLI na moim komputerze Mac. Wiem, że mogę to ustawić w następujący sposób:

osascript -e 'set volume <N>'

Ale to nie wydaje się działać podczas próby uzyskania bieżącego poziomu głośności.

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

Odpowiedzi:


18

Powinieneś znaleźć, że get volume settingszwróci obiekt zawierający między innymi głośność wyjściową i głośność alarmu. Na przykład możesz to zrobić, aby pobrać cały obiekt:

osascript -e 'get volume settings'

a może raczej, aby pobrać tylko wolumin wyjściowy (np. zamiast głośności alertu):

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

... ale pamiętaj, że nie wszystkie urządzenia audio będą miały bezpośrednią kontrolę oprogramowania nad ustawieniami głośności. Na przykład dźwięk z wyświetlacza powinien mieć kontrolę; jednak firewire lub karta we / wy USB prawdopodobnie nie miałyby tych ustawień pod kontrolą oprogramowania (ponieważ mogą to być fizyczne pokrętła). Jeśli dane ustawienie nie jest kontrolowane przez oprogramowanie, pojawi się w obiekcie zwróconym get volume settingsjako „brakująca wartość” lub coś w tym rodzaju.


get volume settingstak naprawdę nie rozróżnia między 0, 0,1 i 0,01. Nie wyświetla wartości dziesiętnych, przez co jest całkiem bezużyteczny.
Acumenus

@ABB, świetna sugestia. Dziękuję za pomoc.
ghoti

5

Popełniłem bardzo skromny skrypt bash o nazwie „chut”. Ponieważ miałem już dość objętości sys, wymagającej wejścia zmiennoprzecinkowego jako wartości wejściowej (od 0 do 10, krok 0,1), ale generowania liczby całkowitej z krokiem 14 w zakresie od 0 do 100.

Idź rysunek ... Jeśli ktoś jest zainteresowany: http://github.com/docgyneco69/chut

W pełnej krasie:

#!/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 ;

0

Pobieranie i ustawianie głośności przy użyciu tej samej skali 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"
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.