This article has been dead for over three months
You
import time
import subprocess
loc=raw_input("Enter the full location: ")
t=(input("Time(in minutes): "))*60
print t
def prog():
l=len(loc)
ext=loc[l-3:l]
if(ext=="exe"):
time.sleep(t)
subprocess.call(loc)
elif(ext=="mp3"):
time.sleep(t)
subprocess.call(["C:\Program Files\Windows Media PLayer\mplayer2.exe",loc])
prog()