05/12/08
+
PM |
QUOTE |
PERMALINK |
REPORT
delete
does anyone have any programming experience with IFF files? do you know of any software that parses / analyzes them? i have read the original specification and some online articles and i have tried parsing wav and aiff files using the 'chunk' module in the Python library but i haven't been able to find a tool that can create and edit files easily.
05/28/08
+
PM |
QUOTE |
PERMALINK |
REPORT
delete
i found out that you can do the editing using a regular hex editor
duh
05/28/08
+
PM |
QUOTE |
PERMALINK |
REPORT
fora
out of interest, what are you doing with IFF files? the last time I used them was way back in my commodore amiga days.
05/29/08
+
PM |
QUOTE |
PERMALINK |
REPORT
delete
i'm trying to translate wav and aiff files to emu's .eos format. i tried chickensys's translator demo and didn't like it, doesn't seem like software i'd pay $100+ for, so i thought i'd make a small app that does the translation. i have found out some basic principles of .eos files, they're quite different than wav and aiff (the biggest difference is that the channels of the samples are written in the file separately, first channel 1 and then channel 2, while wav and aiff are interleaved).