sepulchra Posted January 13, 2015 Posted January 13, 2015 Does anyone know how to accomplish this? I'm not a programmer but I found this apple script which toggles the mic input from 50% to 0. Sadly it has no bearing on the mic when it is being used with facetime. set inputVolume to input volume of (get volume settings) if inputVolume = 0 then set inputVolume to 50 else set inputVolume to 0 end if set volume input volume inputVolume I often use facetime for meetings and I type on a loud mechanical keyboard. I'd love to be able to mute the mic with a keystroke and unmmute it. Is there possible some way to do this via the accessibility options. Anyone game to help me out with this one?
RodgerWW Posted January 14, 2015 Posted January 14, 2015 Why not just use OS X's built-in keyboard app shortcuts? System Preferences > Keyboard > Shortcuts > App Shortcuts Click "+", select FaceTime as the Application, "Mute" [without quotes] as the Menu Title, and select whatever shortcut you desire. Or else, you will have to do some GUI scripting as FaceTime takes control over the Microphone and the scripting will essentially be exactly what the above is anyway.
roccitman Posted February 17, 2015 Posted February 17, 2015 (edited) Why not just use OS X's built-in keyboard app shortcuts? System Preferences > Keyboard > Shortcuts > App Shortcuts Click "+", select FaceTime as the Application, "Mute" [without quotes] as the Menu Title, and select whatever shortcut you desire. Or else, you will have to do some GUI scripting as FaceTime takes control over the Microphone and the scripting will essentially be exactly what the above is anyway. Yeah, I tried that. It doesn't work for some reason if you're just doing FaceTime Audio: http://d.pr/i/1akfg Edited October 19, 2015 by roccitman
RodgerWW Posted February 18, 2015 Posted February 18, 2015 OK, found this workflow by "pborenstein" which uses system volume instead of trying to focus on just FaceTime's use of the input source.
roccitman Posted February 18, 2015 Posted February 18, 2015 (edited) OK, found this workflow by "pborenstein" which uses system volume instead of trying to focus on just FaceTime's use of the input source. Ewww, nice find! I added a hotkey to mine, so I don't have to evoke Alfred. http://d.pr/i/1bsN6 Edited October 19, 2015 by roccitman
russmatney Posted October 19, 2015 Posted October 19, 2015 Both links were dead, so if anyone after me is still looking, here's a workflow to toggle mic volume between 0 and 100 via a hotkey: https://github.com/russmatney/alfred-workflows/blob/master/Toggle%20Mic%20Mute.alfredworkflow code from http://superuser.com/a/397770/293352 Empyreal 1
roccitman Posted October 19, 2015 Posted October 19, 2015 Both links were dead, so if anyone after me is still looking, here's a workflow to toggle mic volume between 0 and 100 via a hotkey: https://github.com/russmatney/alfred-workflows/blob/master/Toggle%20Mic%20Mute.alfredworkflow code from http://superuser.com/a/397770/293352 Updated my links, FWIW.
roccitman Posted October 19, 2015 Posted October 19, 2015 Both links were dead, so if anyone after me is still looking, here's a workflow to toggle mic volume between 0 and 100 via a hotkey: https://github.com/russmatney/alfred-workflows/blob/master/Toggle%20Mic%20Mute.alfredworkflow code from http://superuser.com/a/397770/293352 That's nice and simple. Can you push the toggled volume (whether it's 0 or 100) to a notification?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now