- Code: Select all
using WavFormatHeader = struct
{
uint32_t header;
uint32_t waveSize;
uint32_t waveSymb;
uint32_t fmtSymb;
uint32_t fmtChunkSize;
uint16_t audioFormat;
uint16_t channels;
uint32_t sampleRate;
uint32_t byteRate; //this! where?
uint16_t sampleAlign; //also
uint16_t sampleDepth; //also
uint32_t dataSymb;
uint32_t dataSize;
};
I am making an audio extractor. but when I did extract the wav format, it was the wrong format.
so i checked the audio.idx file. i finally got some hints. (sample rate, length of stream,..)
but what is mean '0x0c' or '0x0d'?
i need to get the remaining data!
thank you, have a nice day. =)