dougscripts.com

AppleTV

July 10 2014 - 7:30 pm

iTunes 11.3 Is Now Available

Apple has released iTunes 11.3 featuring the all-new iTunes Extras for HD movies, which will also be available for Apple TV.

May 30 2013 - 2:14 pm

Project: Change AirPlay Speakers, Change EQ

I don't fiddle much with iTunes EQ settings. I most frequently send audio to a receiver and, if necessary, tweak the tone settings there. But I realised that if you're using AirPlay, you may want a different EQ setting for a selected AirPlay device. If you don't mind firing a script whenever you want to change AirPlay speakers—and you don't mind doing some of the script-writing yourself—here's a simple way to acomplish that.

And I do mean simple. This script is pretty basic and could be finessed much more thoroughly. It will only allow you to select a single AirPlay device (I don't believe there can be a different EQ for each active AirPlay device simultaneously) but it'll get the job done.

Here's the script. Open it in AppleScript Editor:

tell application "iTunes"

set listOfAirPlayNames to (get name of every AirPlay device)

set chosenAirPlayName to (choose from list listOfAirPlayNames with prompt "Change AirPlay Speakers to:")

if chosenAirPlayName is false then return -- user pressed Cancel

set chosenAirPlayName to (chosenAirPlayName as text) -- coerce to text from list

# This is the part you have to code:

if chosenAirPlayName is "Computer" then set chosenEQName to "Rock"

if chosenAirPlayName is "Apple TV" then set chosenEQName to "My Customized EQ"

if chosenAirPlayName is "Bedroom Airport Express" then set chosenEQName to "Classical"

# and so on...

# apply the changes

set current AirPlay devices to AirPlay device chosenAirPlayName

set current EQ preset to EQ preset chosenEQName

end tell

You will have to supply the names of your AirPlay devices and the name of the EQ setting you want to use with each. The latter is easy, just use the name of an EQ preset as it's displayed in the Equalizer Window. To get the accurate names of the Airplay devices, just run the script from AppleScript Editor and then right away click the "Cancel" button in the choose list dialog. In the AppleScript Editor Event Log window you'll see the names listed. Use these names in each of the repeating lines of code in the script. You may have fewer or more than the three example lines in the original script. Edit accordingly.

When those edits have been made, "Save" the script as "Script" and named whatever you like and saved in your [home]/Library/iTunes/Scripts/ folder. And, like my Mom always says, add a keyboard shortcut to launch it.

Remember: if you manually change your AirPlay speakers in iTunes, without using the script, the EQ will not change. That only happens when you run the script.

So also: smarties can probably figure out how to set a discrete volume for each chosen device using the Airplay device sound volume property.

UPDATE: Just to be clear, it is the main iTunes EQ setting that is changed, not the EQ setting for individual tracks.

December 19 2011 - 2:05 pm

Album Art on Your ATV2

Correspondent Dave Reynolds was dismayed that he could no longer enjoy watching cover flow album art "dance" across the TV while enjoying his music. To his chagrin, the Apple TV 2 no longer has the screen saver that displays floating album art. So, he used Save Album Art to Album Folder to export his album art as files to a chosen folder (like ~/Pictures/iTunes Art/) and then pointed the Apple TV (ATV: Settings > Screen Sharing > Photos > Computers > the Computer to Use) to use that folder as a screen saver (iTunes: Advanced > Choose Photos to Share). Party on, Dave.

December 2 2008 - 7:05 pm

Boxee

We successfully installed Boxee on our Apple TV and it works like you read about. Couldn't be more pleased. Just thought I'd pass that along.

August 13 2008 - 11:49 am

AppleTV and Netflix Player

We just bought an AppleTV after months of having to sneakernet our iPods to the Family Entertainment Center whenever we wanted to watch iTunes Store content. I must say I'm impressed. Got it to work with the 550 Harmony Remote, too.

Tomorrow our Roku Netflix Player arrives. We have the six-disk-at-a-time/unlimited Netflix plan so we'll be able to see unlimited "Instant Play" movies and shows. I know some people are saying that there's not a lot of "good" stuff to watch instantly, it's sub-DVD quality, no HD, yadda. But we have pretty esoteric tastes here and have been delighted with the lists of stuff that is available. Plus, can HD be that far around the corner?

March 23 2007 - 10:45 am

Apple TV Works With CRTs

Paul Kafasis, big amoeba at Rogue Amoeba, has posted a great overview of Apple TV. My favorite observation is Surprise #2: The AppleTV doesn't require a "Widescreen TV" or an HDTV. I have a wonderful Toshiba 32" CRT that already loves PS2 and which I'm sure would make room in its heart for an Apple TV.

February 3 2007 - 11:17 am

Update to iTunes Coming Soon

Probably not completely unexpected, but here are some clues. This recent AppleCare article on Windows Vista and iTunes compatibility: "iTunes 7.0.2 may work with Windows Vista on many typical PCs. Apple recommends, however, that customers wait to upgrade Windows until after the next release of iTunes which will be available in the next few weeks." This time frame jibes with the AppleTV specs page that had at one time listed iTunes 7.1 as a requirement (it now just lists "iTunes 7"), and AppleTV is due to start shipping this month.

Site contents © 2001 - 2024 (that's right: 2001) Doug Adams and weblished by Doug Adams. Contact support AT dougscripts DOT com. About.
All rights reserved. Privacy.
AppleScript, iTunes, iPod, iPad, and iPhone are registered trademarks of Apple Inc. This site has no direct affiliation with Apple, Inc.
The one who says "it cannot be done" should not be interrupting the one who is doing it.