0

私は初心者のC#です。.wavファイルから.rawファイルに変換するプログラムを作りたいです。いくつかのソースを見つけたので、それを使用したいと思います。しかし、コードで何かが起こりました。エラーは ObjectDisposedException に関連しています。

コードやアイデアを教えてください。コード全体は下にあります

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;
    using System.IO;

    namespace WaveTestRead
    {
       class WaveReader
       { 
    FileInfo m_fInfo;
    FileStream m_fStream;
    BinaryReader m_binReader;

    // RIFF chunk
    byte[] chunkID;
    UInt32 chunkSize;
    byte[] format;

    // fmt subchunk
    byte[] fmtChunkID;
    UInt32 fmtChunkSize;
    UInt16 audioFormat;
    UInt16 numChannels;
    UInt32 sampleRate;
    UInt32 byteRate;
    UInt16 blockAssign;
    UInt16 BitsPerSample;

    // data subchunk
    byte[] dataChunkID;
    UInt32 dataChunkSize;
    byte[] data8L;              // 8-bit left channel
    byte[] data8R;              // 8-bit right channel
    Int16[] data16L;           // 16-bit left channel
    Int16[] data16R;           // 16-bit right channel
    int numSamples;

    public WaveReader()
    {

    }

    public bool Open(String filename)
    {
        string str;
        m_fInfo = new FileInfo(filename);
        m_fStream = m_fInfo.OpenRead();
        m_binReader = new BinaryReader(m_fStream);

        chunkID = new byte[4];
        format = new byte[4];

        chunkID = m_binReader.ReadBytes(4);
        chunkSize = m_binReader.ReadUInt32();
        format = m_binReader.ReadBytes(4);

        str = System.Text.ASCIIEncoding.ASCII.GetString(chunkID, 0, 4);
        if (str != "RIFF")
            return false;

        str = System.Text.ASCIIEncoding.ASCII.GetString(format, 0, 4);
        if (str != "WAVE")
            return false;

        if (ReadFmt() == false)
            return false;
        if (ReadData() == false)
            return false;

        m_fStream.Close();

        return true;
    }

    private bool ReadFmt()
    {
        fmtChunkID = new byte[4];
        fmtChunkID = m_binReader.ReadBytes(4);

        string str = System.Text.ASCIIEncoding.ASCII.GetString(fmtChunkID, 0, 4);
        if (str != "fmt ")
            return false;

        fmtChunkSize = m_binReader.ReadUInt32();
        audioFormat = m_binReader.ReadUInt16();
        numChannels = m_binReader.ReadUInt16();
        sampleRate = m_binReader.ReadUInt32();
        byteRate = m_binReader.ReadUInt32();
        blockAssign = m_binReader.ReadUInt16();
        BitsPerSample = m_binReader.ReadUInt16();

        return true;
    }
   static void Main(string[] args)
    {
        p.Open("wavetest.wav");
        bool a = p.ReadFmt();
        p.ReadData();
    }
 }
 }
4

2 に答える 2

1

投稿されたコードはあまりよく書かれていません。

とにかく、これらの簡単な変更を試すことができます:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;

namespace WaveTestRead
{
    public class Program
    {
        public static void Main(string[] args)
        {
            using (var waveReader = new WaveReader())
            {
                if (!waveReader.Open("wavetest.wav"))
                {
                    Console.WriteLine("Failed to read file.");
                    return;
                }

                if (!waveReader.ReadFmt())
                {
                    Console.WriteLine("Failed to read fmt.");
                    return;
                }

                // this method is not defined...
                //waveReader.ReadData();
            }

        }
    }

    class WaveReader : IDisposable
    {
        FileInfo m_fInfo;
        FileStream m_fStream;
        BinaryReader m_binReader;

        // RIFF chunk
        byte[] chunkID;
        UInt32 chunkSize;
        byte[] format;

        // fmt subchunk
        byte[] fmtChunkID;
        UInt32 fmtChunkSize;
        UInt16 audioFormat;
        UInt16 numChannels;
        UInt32 sampleRate;
        UInt32 byteRate;
        UInt16 blockAssign;
        UInt16 BitsPerSample;

        // data subchunk
        byte[] dataChunkID;
        UInt32 dataChunkSize;
        byte[] data8L;              // 8-bit left channel
        byte[] data8R;              // 8-bit right channel
        Int16[] data16L;           // 16-bit left channel
        Int16[] data16R;           // 16-bit right channel
        int numSamples;

        public WaveReader()
        {

        }

        public bool Open(String filename)
        {
            string str;
            m_fInfo = new FileInfo(filename);
            m_fStream = m_fInfo.OpenRead();
            m_binReader = new BinaryReader(m_fStream);

            chunkID = new byte[4];
            format = new byte[4];

            chunkID = m_binReader.ReadBytes(4);
            chunkSize = m_binReader.ReadUInt32();
            format = m_binReader.ReadBytes(4);

            str = System.Text.ASCIIEncoding.ASCII.GetString(chunkID, 0, 4);
            if (str != "RIFF")
                return false;

            str = System.Text.ASCIIEncoding.ASCII.GetString(format, 0, 4);
            if (str != "WAVE")
                return false;

            //if (ReadFmt() == false)
            //    return false;
            //if (ReadData() == false)
            //    return false;

            return true;
        }

        public bool ReadFmt()
        {
            fmtChunkID = new byte[4];
            fmtChunkID = m_binReader.ReadBytes(4);

            string str = System.Text.ASCIIEncoding.ASCII.GetString(fmtChunkID, 0, 4);
            if (str != "fmt ")
                return false;

            fmtChunkSize = m_binReader.ReadUInt32();
            audioFormat = m_binReader.ReadUInt16();
            numChannels = m_binReader.ReadUInt16();
            sampleRate = m_binReader.ReadUInt32();
            byteRate = m_binReader.ReadUInt32();
            blockAssign = m_binReader.ReadUInt16();
            BitsPerSample = m_binReader.ReadUInt16();

            return true;
        }

        public void Dispose()
        {
            if (m_fStream != null)
                m_fStream.Dispose();
        }
    }
}

基本的に、あなたのコードでクラス WaveReader を作成し、ReadFmt への内部呼び出しを削除しました。次に、Main メソッドで戻りコードを確認し、false の場合はコンソールに書き込みます。

于 2013-10-12T18:44:20.433 に答える
0

問題は に存在する可能性がありMainます。このOpenメソッドは最後にファイルを閉じ、ReadFmtMain の呼び出しは から読み取りますm_binReaderReadFmt呼び出し後にメイン メソッドから呼び出さないか、完了時にファイルを閉じないようにOpen変更します (そして、閉じることを明示的にします)。Open

Openとにかくあなたのためにすべての仕事をしているように見えます( ReadFmtandを呼び出すことによってReadData)。で再度行う必要はありませんMain。からデータにアクセスするだけですp

于 2013-10-12T18:39:06.023 に答える