-I assume you're talking about importing sample (wav) files. To be honest, I can't understand that either.davlippo7 wrote: Mon Jan 06, 2025 5:33 pm ...but yes Korg should have a routine that confirms exact compliance and compatibility before proceeding and then it crashing.
Let me shortly explain for those who maybe think that there some big science needed to find out if file is compatible or not.
There's a so called header at the beginning of every wav file, which is 36 bytes long and it looks like this:
Code: Select all
bytes (in hex values) description
-------------------------------------------
52 49 46 46 56 D6 04 02 "RIFF" text & size
57 41 56 45 "WAVE" text
66 6D 74 20 10 00 00 00 fmt size
01 00 type (1=PCM)
02 00 Channels (1=Mono 2=Stereo)
44 AC 00 00 SampleRate (44100Hz or 48000Hz etc.)
10 B1 02 00 SampleRate*BitsPerSample*Channels/8 (serves for checksum)
04 00 BitsPerSample*Channels/8 (serves for checksum)
10 00 BitsPerSample (16=16bit)
.. ..
I hope that forum visitors won't take all that as bashing Korg (or any brand). Shared info is of great value for all of us, before we make decision and we maybe also learn something at that.
Bogdan