Instale o AutoHotKey ( link ) e siga seu tutorial sobre o básico ( link ) use este script, substituindo o diretório atribuído ao mp3root pela sua pasta mp3 desejada:
#singleinstance, force
mp3root = d:\mp3collection
IfNotExist, %mp3root%
exitapp
menu, tray, NoStandard
menu, tray, icon, shell32.dll, 138
FileList =
Loop %mp3root%\*.mp3,, 1
{Listsize++
FileList%Listsize% = %A_LoopFileFullPath%
}
menu, tray, tip, TinyShuffle - %Listsize% items
loop
{
Random, rand, 1, %listsize%
randfilename = % filelist%rand%
if rand != %last%
Soundplay, %randfilename%, wait
last = %rand%
}
#s:: Soundplay,skip
~esc:: exitapp
De: link
Eu notei algumas menções de emparelhar com sucesso o VoiceAttack e o AutoHotKey para vários usos. link