1

Sometimes when I go to sleep I leave the computer playing some music, but I'd like to tell it, once X minutes have passed just mute the volume.

Does anyone know of a program to do so? I'm targeting Windows 7 here but I guess one for Vista will do equally.

1
  • why not close the program after a time period after you sleep?
    – Dan Z
    Commented Nov 6, 2016 at 3:40

1 Answer 1

1

Personally I'd do this using AutoHotKey to pause my player. Just add a script like this:

^Pause:: ;Activates with Ctrl+Pause, you may want to change this
  Sleep, [time in ms] ; Replace [time in ms] with however long you want it to wait before stopping your music
  Send Pause ; my music player pauses when i hit the "pause" key, so I'd use this, if yours doesn't, try Media_Stop or if you really want to mute, use Volume_Mute

EDIT: just saw this on lifehacker and couldn't help but think of this post, so I'm adding it http://lifehacker.com/5522204/itunes-sleep-timer-stops-playback-after-a-user+defined-time

0

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .