// title: soundfile playback // author: LFSaw // description: // automatically playback of all soundfiles in a directory // code: ( w = {|pathPattern| var soundFiles; // get sounds soundFiles = SoundFile.collect(pathPattern); // play back in order of their appearance Pseq(soundFiles.collect{|file| file.cue((\dur: file.duration))}, 1).play; } ) // adjust path and evaluate the next line w.value("/Volumes/usbImport/PMD620/200804062000/*.WAV")