Toksyuryel (toksyuryel)'s status on Wednesday, 15-Aug-12 20:10:44 UTC

  1. @bitshift Prior to downloading the Bastion soundtrack, I made a directory with just symlinks to the game audio files that contained the music. However, I named the vocal tracks. `mplayer2 -loop 0 *` was playing them in alphabetical order, which was really throwing off the order because none of the files have leading zeros. I could have renamed the files to give them leading zeros, but instead I decided I'd try to get them to play in order via zsh globbing. This was complicated by the fact that I had named the vocal tracks, so none of my simple solutions worked. I ended up doing this: `mplayer2 -loop 0 ?.* [0-9][0-9]^[0-9]* [0-9][0-9][0-9]^[0-9]*` and it works perfectly.

    Wednesday, 15-Aug-12 20:10:44 UTC from web in context