3

このWavレコーディングサンプルを調整しようとしました:http: //channel9.msdn.com/Series/KinectQuickstart/Audio-Fundamentals

新しいSDK(Ver 1.6)に対して、そして何らかの理由で-結果の.wavファイルは無効です

Init:

        this.audioStream = this.sensor.AudioSource.Start();

        // Use a separate thread for capturing audio because audio stream read operations
        // will block, and we don't want to block main UI thread.
        this.readingThread = new Thread(AudioReadingThread);
        this.readingThread.Start();
        fileStream = new FileStream(@"d:\temp\temp.wav", FileMode.Create);

        int rec_time = (int) 20 * 2 * 16000;//20 sec
        WriteWavHeader(fileStream, rec_time);

スレッド:

    private void AudioReadingThread()
    {

        while (this.reading)
        {
                int readCount = audioStream.Read(audioBuffer, 0, audioBuffer.Length);

                fileStream.Write(audioBuffer, 0, readCount);
        }
    }

Wavヘッダー:

    static void WriteWavHeader(Stream stream, int dataLength)
    {
        //We need to use a memory stream because the BinaryWriter will close the underlying stream when it is closed
        using (var memStream = new MemoryStream(64))
        {
            int cbFormat = 18; //sizeof(WAVEFORMATEX)
            WAVEFORMATEX format = new WAVEFORMATEX()
            {
                wFormatTag = 1,
                nChannels = 1,
                nSamplesPerSec = 16000,
                nAvgBytesPerSec = 32000,
                nBlockAlign = 2,
                wBitsPerSample = 16,
                cbSize = 0
            };

            using (var bw = new BinaryWriter(memStream))
            {
                bw.Write(dataLength + cbFormat + 4); //File size - 8
                bw.Write(cbFormat);

                //WAVEFORMATEX
                bw.Write(format.wFormatTag);
                bw.Write(format.nChannels);
                bw.Write(format.nSamplesPerSec);
                bw.Write(format.nAvgBytesPerSec);
                bw.Write(format.nBlockAlign);
                bw.Write(format.wBitsPerSample);
                bw.Write(format.cbSize);

                //data header
                bw.Write(dataLength);
                memStream.WriteTo(stream);
            }
        }
    }
4

1 に答える 1

2

「RIFFヘッダー」をファイルに追加するコードを追加するのを忘れました。コードは次のように単純です。

//RIFF header
WriteString(memStream, "RIFF");
bw.Write(dataLength + cbFormat + 4); //File size - 8
WriteString(memStream, "WAVE");
WriteString(memStream, "fmt ");
bw.Write(cbFormat);

また、「データヘッダー」で変更するのを忘れていましmemStreamた。次の行が必要です。

WriteString(memStream, "data");
于 2013-01-08T03:08:32.003 に答える