我试图分割一些音频文件。
事实是:我有一个字节数组,我想将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的库,我可以像这样分开沉默的差距:
sox in.wav out.wav silence 1 0.5 1% 1 5.0 1% : newfile : restart
但每次运行此命令时,只会生成一个文件。 (音频文件持续5秒,每个分割文件必须有1秒钟的时间。)
这样做的最佳方式是什么?
非常感谢!
答案 0 :(得分:3)
修改强>
使用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轻松完成此操作:
对于下面的代码,您传入:
该方法将检查文件是否足够长以用于指定的段,如果是,则它将使用相同的采样率,通道,位深度将文件切割为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();
}
}
}
<强> TODO 强>
如果您关注内存使用情况,则不会优化提取,然后应该增强该功能以抓取部分段并逐步将其写入WaveWriter
。
备注强>
BASS.NET有一个唠叨屏幕,但您可以在他们的网站上申请免费注册序列。
注意,安装BASS.NET然后确保从你的EXE旁边的基础包中复制bass.dll。此外,您可以使用几乎任何音频格式,请参阅他们的网站了解格式插件以及如何加载它们(BASS_PluginLoad)。