Album Shuffle
Status: Beta
Brought to you by:
pikester42
I've never seen this valuable feature in an app, only in my old MP3 CD player.
This is certainly not valid code, but it's how I imagine the flow control would work:
@allDirs = recursivelyFindAllDirs;
@dirList = shuffle(@allDirs);
foreach(@dirList) {
if (dirContainsNoImageFiles) {
skip;
} else {
playImagesInOrder;
}
}