Search code examples
c#asp.netsplitmp3naudio

NAudio to split mp3 file


I am very new to audio or mp3 stuff, was looking for a way to have a feature to split an mp3 file in C#, asp.net. After googling for a good 3-day without much of a great help, I am hoping that somebody here can point me to a right direction.

Can I use NAudio to accomplish this? Is there any sample code for that? Thanks in advance.


Solution

  • My final solution to split mp3 file in c# is to use NAudio. Here is a sample script for that, hope it helps someone in the community:

    string strMP3Folder = "<YOUR FOLDER PATH>";
    string strMP3SourceFilename = "<YOUR SOURCE MP3 FILENAMe>";
    string strMP3OutputFilename = "<YOUR OUTPUT MP3 FILENAME>";
    
    using (Mp3FileReader reader = new Mp3FileReader(strMP3Folder + strMP3SourceFilename))
    {
        int count = 1;
        Mp3Frame mp3Frame = reader.ReadNextFrame();
        System.IO.FileStream _fs = new System.IO.FileStream(strMP3Folder + strMP3OutputFilename, System.IO.FileMode.Create, System.IO.FileAccess.Write);
    
        while (mp3Frame != null)
        {
            if (count > 500) //retrieve a sample of 500 frames
                return;
    
            _fs.Write(mp3Frame.RawData, 0, mp3Frame.RawData.Length);
            count = count + 1;
            mp3Frame = reader.ReadNextFrame();
         }
    
         _fs.Close();
    }
    

    Thanks to Mark Heath's suggestion for this.

    The namespace required is NAudio.Wave.