I have code like so :
mp3File = new Mp3FileReader("someMP3Files.mp3");
WaveChannel32 inputStream = new WaveChannel32(mp3File);
streamProcessor = new WaveStreamProcessor(inputStream);
CreateWaveFile("test.wav", inputStream);
so basically it takes the mp3 and converts it to a wave file called test. Looking at the converted file, I see this using audacity.
Note the highlighted area why does it give the blank space and does not duplicate exactly as it is?
Any ideas?
My create wave method:
public static void CreateWaveFile(string filename, WaveStream stream)
{
using (WaveFileWriter writer = new WaveFileWriter(filename, stream.WaveFormat))
{
byte[] buffer = new byte[stream.Length];
while (true)
{
int bytesRead = stream.Read(buffer, 0, buffer.Length);
if (bytesRead == 0)
break;
writer.WriteData(buffer, 0, bytesRead);
}
}
}
Clarification, the padding is actually added when the Mp3FileReader is created.
I wasn't too sure what you meant by that question, however I tried my best and researched so this is what I found. And I also think padding is automatically added when those files are converted.
Note: Please don't bash me if I'm wrong in the comments, check my profile later and you'll see why. :)