P
P
Pavel2012-02-19 12:20:31
macOS
Pavel, 2012-02-19 12:20:31

How to wake up to your favorite radio station in Mac OS X?

I want my Mac to “wake up” at 7:00 every morning > play my favorite radio station in iTunes > and go from 0% to 70% volume within 10 minutes.
Is it possible? How?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
E
EvilHedgehog, 2012-02-19
@region23

You can hang the launch of the Automator script on a reminder in iCal. Actually, here it is just written how to do exactly what you want, including a gradual change in volume:
dougscripts.com/itunes/itinfo/icalscripts.php

N
naryl, 2012-02-19
@naryl

If iTunes is not critical, then you put Linux, mplayer and at in the virtual machine and run it there

$ echo "amixer -q sset Master mute
mplayer http://my.favorite.rf/radio station.ogg
for i in `seq 7`; do
    sleep $((60 * 10 / 7))
    amixer -q sset Master $(($i * 70 / 7))% unmute;
done" | at 06:00

A
Alexander Tipugin, 2012-02-19
@atipugin

Awaken to help you.

P
Pavel, 2012-02-20
@region23

Thanks to all! Solved with AppleScript. I wrote detailed instructions on my blog .

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question