我使用下面非常简单的代码使用FileStream
合并6个mp3文件,看起来非常简单。虽然合并是可以的,但是当我检查新生成的文件持续时间时,它比原始6个mp3文件短6秒。下面我已经粘贴了具有单个文件持续时间的代码。
string dirPath = @"C:\downloads\114\";
FileInfo[] files = new DirectoryInfo(dirPath).GetFiles(); // 6 audio files to merge
foreach (var file in files)
{
using (var f = file.Open(FileMode.Open))
{
byte[] bytes = new byte[f.Length];
using (FileStream isfs = new FileStream(dirPath + "114.mp3", FileMode.OpenOrCreate))
{
isfs.Seek(0, SeekOrigin.End); //go to the last byte
while (f.Read(bytes, 0, bytes.Length) > 0)
{
isfs.Write(bytes, 0, bytes.Length);
isfs.Flush();
}
}
}
}
文件持续时间(秒):
#File #Duration in Seconds
114000.mp3 6.64 sec
114001.mp3 5.935 sec
114002.mp3 4.864 sec
114003.mp3 4.838 sec
114004.mp3 7.58 sec
114005.mp3 7.554 sec
114006.mp3 6.431 sec
总持续时间为:43.842秒
#The new Generated File
114.mp3 37.198 seconds
问题:
提一下:新生成的文件和6个文件Length
是一样的!
谢谢!
答案 0 :(得分:1)
1)你没有合并mp3文件,你正在合并二进制文件。您必须考虑标头等,否则合并不会起作用...(在您的情况下,您在文件中间有更多标头,并且不能保证文件之间的比特率相同)
2)查看What is the best way to merge mp3 files?,Playing a MP3 file in a WinForm application也可能对您有所帮助。