ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • WAV
    File Format 2009. 2. 28. 16:24
    The wave file format is broken up into RIFF chunks.

    RIFF
    <4 bytes>
    WAVE
    RIFF
    RIFF IDENTIFIER    (4 Bytes)
    RIFF SIZE          (4 Bytes)
    <RIFF INFORMATION> (RIFF SIZE - 8)
    "fmt "
    DWORD dwRiffSize;
    WORD  wFormatTag;         // Format category

    WORD  wChannels;          // Number of channels

    DWORD dwSamplesPerSec;    // Sampling rate

    DWORD dwAvgBytesPerSec;   // For buffer estimation

    WORD  wBlockAlign;        // Data block size

    WORD  wBitsPerSample;


    "data"              4 Bytes
    DATA SIZE           4 Bytes
    <YOUR Data Audio>   (DATA SIZE - 8)

    참조 사이트:
Designed by Tistory.