Tired of bluetooth speakers that won't play the contents of a usb stick in shuffle order? Why not prefix each song with a random 4 digit number?
fix the problem in TCC by randomizing the filesort via prepending a 4-digit random number:
looks kinda like this [without the color/formatting]:
fix the problem in TCC by randomizing the filesort via prepending a 4-digit random number:
Code:
set filemask_audio=*.mp3;*.wav;*.rm;*.voc;*.au;*.mid;*.stm;*.mod;*.vqf;*.ogg;*.mpc;*.wma;*.mp4;*.flac;*.snd;*.aac;*.opus;*.ac3
for /a:-d /h %audiofile in (%filemask_audio%) echo mv /Ns "%audiofile" "%@FORMAT[04,%@RANDOM[0,9999]]_%@REREPLACE[[0-9]*[\-_]+ *,,%audiofile]"
looks kinda like this [without the color/formatting]: