It shows up as one of the options, but when I select it to automatically reselects the built-in speakers. Any ideas?
Thanks in advance!
Thanks in advance!
It shows up as one of the options, but when I select it to automatically reselects the built-in speakers. Any ideas?
Thanks in advance!
Same problem here. My 2008 iMac with Mountain Lion sees both my Apple TV and my AirPort Express but it won't let me keep the choice of either in the Sound pane of System Preferences (it bounces it back to "headphones" for my attached speakers). I tried restarting the AirPort Express but that did not help. I do have it password protected and nothing has prompted me for a password the way iTunes initially does. (Airplay does work normally with iTunes on my computer.)
Update: I restarted my computer to address another bug and Airplay started working.
I wonder why the last 2 messages in this thread are dated 27th Oct when today is only 21st.
I was able to get my Airplay enabled speakers selected after just turning off and turning back on my Wi-Fi. A little easier than a full OSX restart.
Same problem! (retina mbp + ATV3).
Killing coreaudio fixed it for me without a reboot:
sudo kill `ps -ax | grep 'coreaudiod' | grep 'sbin' |awk '{print $1}'`
Same problem! (retina mbp + ATV3).
Killing coreaudio fixed it for me without a reboot:
sudo kill `ps -ax | grep 'coreaudiod' | grep 'sbin' |awk '{print $1}'`
This was killin' me. Great tip, works perfectly every time...
vi ~/.bash_profile
alias fixairplay="sudo kill `ps -ax | grep 'coreaudiod' | grep 'sbin' |awk '{print $1}'`"
fixairplay
sudo pkill coreaudiod
Love the sudo command to reboot coreaudio, works like a charm.
I hate that I have to do that but I made it a little bit easier by making an alias.
- Open terminal and type:
Code:vi ~/.bash_profile
- and add the line:
Code:alias fixairplay="sudo kill `ps -ax | grep 'coreaudiod' | grep 'sbin' |awk '{print $1}'`"
- Save the file and close vi wq)
- Restart terminal
- Then type in:
Code:fixairplay
- Type in your password and...
- Voila! You should be good.
Now each time you run into the issue just type fixairplay in terminal and you're good to go!
Love the sudo command to reboot coreaudio, works like a charm.
I hate that I have to do that but I made it a little bit easier by making an alias.
- Open terminal and type:
Code:vi ~/.bash_profile
- and add the line:
Code:alias fixairplay="sudo kill `ps -ax | grep 'coreaudiod' | grep 'sbin' |awk '{print $1}'`"
- Save the file and close vi wq)
- Restart terminal
- Then type in:
Code:fixairplay
- Type in your password and...
- Voila! You should be good.
Now each time you run into the issue just type fixairplay in terminal and you're good to go!