c#: 将 mp3 文件覆盖到另一个文件

Posted

技术标签:

【中文标题】c#: 将 mp3 文件覆盖到另一个文件【英文标题】:c#: Overlay mp3 file to another 【发布时间】:2013-09-16 12:13:35 【问题描述】:

我仅使用以下代码将 3 个 mp3 文件合并为一个 mp3 文件

using (var fs = File.OpenWrite(Path.Combine(txtOutputFile.Text, "new.mp3")))
            
                var buffer = File.ReadAllBytes(Path.Combine(txtIntroLoc.Text, fileName1));
                fs.Write(buffer, 0, buffer.Length);
                buffer = File.ReadAllBytes(Path.Combine(txtOutroloc.Text, fileName2));
                fs.Write(buffer, 0, buffer.Length);
                buffer = File.ReadAllBytes(Path.Combine(txtFileThree.Text, fileName3));
                fs.Write(buffer, 0, buffer.Length);
                fs.Flush();
            

我想要的是覆盖另一个 mp3 文件,它将在这个新创建的 mp3 文件的背景中播放。我知道这是可能的,但没有找到正确的方法来实现这一目标。任何帮助都会很棒。 谢谢

【问题讨论】:

如果合并这样的 MP3 文件确实有效,我会感到惊讶。您是否尝试过播放生成的文件? 谷歌搜索的第二个链接overlay mp3 c#。 @Surfbutler,这对我来说也很有趣,但它的工作原理:) 好吧,那太好了 :) 我想覆盖另一个轨道会困难得多,因为它涉及对原始和新的采样,然后创建一个新的组合文件。我猜那里有一个 MP3 api 可能会有所帮助。 如果您正在查看覆盖文件,请查看FFMpegConverter。您需要做的就是安装 NuGet 包 (NReco.VideoConverter) 并调用 .Invoke("arguments found in link");。命令链接:***.com/a/11783474 【参考方案1】:

关于“叠加”的问题:

如果不将原始文件解码为 PCM,在叠加层中混合,然后将整个内容重新编码为 MP3,则无法做到这一点。

在您现有的代码上:

您可以像这样连接 MP3 文件。通常虽然我会建议放弃 ID3 标签,只制作一个包含每个文件的 MP3 帧的文件。如果您使用的是 NAudio,那么您可以使用 Mp3FileReader 上的 ReadNextFrame() 方法来获取每个 MP3 帧并将其 RawBytes 写入文件。

为了获得最佳效果,您希望所有 MP3 文件都使用相同的采样率和通道数。此外,如果这些是 VBR,您将使 XING or VBRI headers 中的信息无效,因此最好也放弃这些信息。

【讨论】:

谢谢马克,我现在已经转移到 NAudio 来合并两个 mp3 文件。我想知道任何将 mp3 文件覆盖在另一个文件上的示例,因为我从未使用过解码和重新编码。【参考方案2】:

终于找到了解决办法。使用NAudio,我们可以混合wav流,因此首先将mp3转换为wav,然后混合wav文件,然后使用lame.exe将生成的wav文件重新转换为mp3。

感谢 Mark Heath,可以使用以下代码使用 NAudio 库将 MP3 转换为 WAV。

string file = "new.mp3";
            Mp3FileReader readers = new Mp3FileReader(file);
            WaveFormat targetFormat = new WaveFormat();
            WaveStream convertedStream = new WaveFormatConversionStream(targetFormat, readers);
            WaveFileWriter.CreateWaveFile("firstwav.wav", convertedStream);

现在可以使用此代码使用 NAudio 类将其与另一个 wav 文件混合。

string[] inputFiles = new string[2];
            Stream output = new MemoryStream();
            inputFiles[0] = "firstwav.wav";
            inputFiles[1] = "secondwav.wav";
mixWAVFiles(inputFiles);

mixWAVFiles 方法

public void mixWAVFiles(string[] inputFiles)
        
            int count = inputFiles.GetLength(0);
            WaveMixerStream32 mixer = new WaveMixerStream32();
            WaveFileReader[] reader = new WaveFileReader[count];
            WaveChannel32[] channelSteam = new WaveChannel32[count];
            mixer.AutoStop = true;

            for (int i = 0; i < count; i++)
            
                reader[i] = new WaveFileReader(inputFiles[i]);
                channelSteam[i] = new WaveChannel32(reader[i]);
                mixer.AddInputStream(channelSteam[i]);
            
            mixer.Position = 0;
            WaveFileWriter.CreateWaveFile("mixedWavFile.wav", mixer);
        

现在终于使用 lame.exe 将 finalwav 文件转换为 mp3 找到 here

public void convertWAVtoMP3(string wavfile)
        
            //string lameEXE = @"C:\Users\Jibran\Desktop\MP3 Merger\bin\Debug\lame.exe";
            string lameEXE = Path.GetDirectoryName(Application.ExecutablePath) +"/lame.exe";
            string lameArgs = "-V2";

            string wavFile = wavfile;
            string mp3File = "mixed.mp3";

            Process process = new Process();
            process.StartInfo = new ProcessStartInfo();
            process.StartInfo.FileName = lameEXE;
            process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
            process.StartInfo.Arguments = string.Format(
                "0 1 2",
                lameArgs,
                wavFile,
                mp3File);

            process.Start();
            process.WaitForExit();

            int exitCode = process.ExitCode;

【讨论】:

以上是关于c#: 将 mp3 文件覆盖到另一个文件的主要内容,如果未能解决你的问题,请参考以下文章

在 C# 中从特定时间点将 Mp3 文件合并在一起

linux怎样将文件覆盖到另一个文件

将文件复制到另一个文件夹,在目的地重命名并覆盖现有文件

将文件从一个文件夹移动到另一个 C#

用于覆盖 MP3 文件以在 PHP 中使用的 Linux 工具

使用 C# 中的 NAudio 将 M4A 音频文件转换为 MP3 的问题/错误