03-05-2016, 12:25 PM
Code:
findloc OFFSET string "RIFF"
do
goto OFFSET
get DUMMY long
findloc NEXT_OFFSET string "RIFF" 0 ""
if NEXT_OFFSET == ""
get SIZE asize
else
math SIZE = NEXT_OFFSET
endif
math SIZE -= OFFSET
log "" OFFSET SIZE
math OFFSET = NEXT_OFFSET
while NEXT_OFFSET != ""
This script is from the xentax forum (IIRC) and is useful for extracting multiple files the way that was done by Anex. It dumps a bunch of files all with a RIFF header. Then you can use the audacity method to make them play as they don't just with the script. Unfortunately this is as far as my knowledge extends.