gpt4 book ai didi

c# - 将音频文件拆分成多个部分

转载 作者:行者123 更新时间:2023-11-30 16:10:28 27 4
gpt4 key购买 nike

我试图将音频文件分成几部分。

事实是:我有一个字节数组,我想将 wav 文件分成一些随机片段(例如 3 个片段)。

当然,我知道我不能做这样的事情。但是有人知道如何做吗?

byte[] result = stream.ToArray();
byte[] testing = new byte[44];

for (int ix = 0; ix < testing.Length; ix++)
{
testing[ix] = result[ix];
}

System.IO.File.WriteAllBytes("yourfilepath_" + System.Guid.NewGuid() + ".wav", testing);

我想在 C# 中构建这个解决方案,但我听说有一个名为 Sox 的库,我可以像这样用 silence gap 进行拆分:

sox in.wav out.wav silence 1 0.5 1% 1 5.0 1% : newfile : restart

但是每次我运行这个命令,只生成一个文件。 (音频文件持续 5 秒,每个拆分文件必须有 1 秒左右的内容)。

执行此操作的最佳方法是什么?

非常感谢!

最佳答案

编辑

使用 SOX:

string sox = @"C:\Program Files (x86)\sox-14-4-1\sox.exe";
string inputFile = @"D:\Brothers Vibe - Rainforest.mp3";
string outputDirectory = @"D:\splittest";
string outputPrefix = "split";

int[] segments = { 10, 15, 30 };

IEnumerable<string> enumerable = segments.Select(s => "trim 0 " + s.ToString(CultureInfo.InvariantCulture));
string @join = string.Join(" : newfile : ", enumerable);
string cmdline = string.Format("\"{0}\" \"{1}%1n.wav" + "\" {2}", inputFile,
Path.Combine(outputDirectory, outputPrefix), @join);

var processStartInfo = new ProcessStartInfo(sox, cmdline);
Process start = System.Diagnostics.Process.Start(processStartInfo);

如果 SOX 提示 libmad(对于 MP3):复制它旁边的 DLL,参见 here

或者,您可以以相同的方式使用 FFMPEG:

ffmpeg -ss 0 -t 30 -i "Brothers Vibe - Rainforest.mp3" "Brothers Vibe - Rainforest.wav"

(所有详细信息 see the docs)


您可以使用 BASS.NET 轻松做到这一点:

对于您传入的以下代码:

  • 输入文件名
  • 每个片段所需的持续时间
  • 输出目录
  • 用于每个段文件的前缀

该方法将检查文件是否足够长以指定段,如果是,则将文件剪切为具有相同采样率、 channel 、位深度的 WAV。

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Windows.Forms;
using Un4seen.Bass;
using Un4seen.Bass.Misc;

namespace WindowsFormsApplication2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
if (!Bass.BASS_Init(-1, 44100, BASSInit.BASS_DEVICE_DEFAULT, IntPtr.Zero))
throw new InvalidOperationException("Couldn't initialize BASS");

string fileName = @"D:\Brothers Vibe - Rainforest.mp3";
var segments = new double[] {30, 15, 20};
string[] splitAudio = SplitAudio(fileName, segments, "output", @"D:\split");
}

private static string[] SplitAudio(string fileName, double[] segments, string prefix, string outputDirectory)
{
if (fileName == null) throw new ArgumentNullException("fileName");
if (segments == null) throw new ArgumentNullException("segments");
if (prefix == null) throw new ArgumentNullException("prefix");
if (outputDirectory == null) throw new ArgumentNullException("outputDirectory");
int i = Bass.BASS_StreamCreateFile(fileName, 0, 0,
BASSFlag.BASS_STREAM_PRESCAN | BASSFlag.BASS_STREAM_DECODE);
if (i == 0)
throw new InvalidOperationException("Couldn't create stream");

double sum = segments.Sum();

long length = Bass.BASS_ChannelGetLength(i);
double seconds = Bass.BASS_ChannelBytes2Seconds(i, length);
if (sum > seconds)
throw new ArgumentOutOfRangeException("segments", "Required segments exceed file duration");
BASS_CHANNELINFO info = Bass.BASS_ChannelGetInfo(i);

if (!Directory.Exists(outputDirectory)) Directory.CreateDirectory(outputDirectory);

int index = 0;
var list = new List<string>();
foreach (double segment in segments)
{
double d = segment;
long seconds2Bytes = Bass.BASS_ChannelSeconds2Bytes(i, d);
var buffer = new byte[seconds2Bytes];
int getData = Bass.BASS_ChannelGetData(i, buffer, buffer.Length);
string name = string.Format("{0}_{1}.wav", prefix, index);
string combine = Path.Combine(outputDirectory, name);
int bitsPerSample = info.Is8bit ? 8 : info.Is32bit ? 32 : 16;
var waveWriter = new WaveWriter(combine, info.chans, info.freq, bitsPerSample, true);
waveWriter.WriteNoConvert(buffer, buffer.Length);
waveWriter.Close();
list.Add(combine);
index++;
}
bool free = Bass.BASS_StreamFree(i);

return list.ToArray();
}
}
}

待办事项

提取未优化,如果您担心内存使用,则应增强功能以​​抓取部分段并将它们逐步写入WaveWriter

注意事项

BASS.NET 有一个 nag 屏幕,但您可以在他们的网站上申请免费注册序列号。

请注意,安装 BASS.NET,然后确保从 EXE 旁边的基础包中复制 bass.dll。此外,您几乎可以使用任何音频格式,请访问他们的网站了解格式插件以及如何加载它们 (BASS_PluginLoad)。

关于c# - 将音频文件拆分成多个部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25773909/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com