C#?基于NAudio實(shí)現(xiàn)對Wav音頻文件剪切(限PCM格式)
前言
C#基于NAudio工具對Wav音頻文件進(jìn)行剪切,將一個(gè)音頻文件剪切成多個(gè)音頻文件
注:調(diào)用方法前需要導(dǎo)入NAudio.dll或者在NuGet程序管理器搜索NAudio并安裝
本文是按時(shí)間剪切
實(shí)現(xiàn)代碼
using NAudio.Wave;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XXX.util
{
public static class WavFileUtils
{
/// <summary>
/// 基于NAudio工具對Wav音頻文件剪切(限PCM格式)
/// </summary>
/// <param name="inPath">目標(biāo)文件</param>
/// <param name="outPath">輸出文件</param>
/// <param name="cutFromStart">開始時(shí)間</param>
/// <param name="cutFromEnd">結(jié)束時(shí)間</param>
public static void TrimWavFile(string inPath, string outPath, TimeSpan cutFromStart, TimeSpan cutFromEnd)
{
using (WaveFileReader reader = new WaveFileReader(inPath))
{
int fileLength = (int)reader.Length;using (WaveFileWriter writer = new WaveFileWriter(outPath, reader.WaveFormat))
{
float bytesPerMillisecond = reader.WaveFormat.AverageBytesPerSecond / 1000f;
int startPos = (int)Math.Round(cutFromStart.TotalMilliseconds * bytesPerMillisecond);
startPos = startPos - startPos % reader.WaveFormat.BlockAlign;
int endPos = (int)Math.Round(cutFromEnd.TotalMilliseconds * bytesPerMillisecond);
endPos = endPos - endPos % reader.WaveFormat.BlockAlign;
//判斷結(jié)束位置是否越界
endPos = endPos > fileLength ? fileLength : endPos;
TrimWavFile(reader, writer, startPos, endPos);
}
}
}
/// <summary>
/// 重新合并wav文件
/// </summary>
/// <param name="reader">讀取流</param>
/// <param name="writer">寫入流</param>
/// <param name="startPos">開始流</param>
/// <param name="endPos">結(jié)束流</param>
private static void TrimWavFile(WaveFileReader reader, WaveFileWriter writer, int startPos, int endPos)
{
reader.Position = startPos;
byte[] buffer = new byte[1024];
while (reader.Position < endPos)
{
int bytesRequired = (int)(endPos - reader.Position);
if (bytesRequired > 0)
{
int bytesToRead = Math.Min(bytesRequired, buffer.Length);
int bytesRead = reader.Read(buffer, 0, bytesToRead);
if (bytesRead > 0)
{
writer.Write(buffer, 0, bytesRead);
}
}
}
}
}
}
調(diào)用:
string filePath = "D:\\wav\\test.wav";//需要切割的文件路徑
int cutTimeSpan = 20;//切割的時(shí)間片段時(shí)間(秒)
FileInfo fi = new FileInfo(filePath);
//獲取錄音文件時(shí)長(秒)
int fileTime = (int)Util.Cover(Util.GetVoiceTime(filePath)) / 1000;
//計(jì)算文件需要切割多少等份
decimal fileNum = Math.Ceiling((decimal)fileTime / cutTimeSpan);
int i = 0;
while (i < fileNum)
{
string nowTime = Util.GetTimeStamp();//當(dāng)前時(shí)間戳
//切割后保存的文件絕對地址
var outputPath = System.IO.Path.Combine(fi.Directory.FullName, string.Format("{0}_{1}{2}", fi.Name.Replace(fi.Extension, ""), nowTime, fi.Extension));
//切割的開始時(shí)間
TimeSpan cutFromStart = TimeSpan.FromSeconds(i * cutTimeSpan);
//切割的結(jié)束時(shí)間
TimeSpan cutFromEnd = cutFromStart + TimeSpan.FromSeconds(cutTimeSpan);
//音頻切割
WavFileUtils.TrimWavFile(recordFile.FilePath, outputPath, cutFromStart, cutFromEnd);
i++;
}
Util 類:
using Shell32;
using System;
using System.Diagnostics;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Text.RegularExpressions;
using System.Threading;
using System.Windows.Forms;
namespace XXX.util
{
class Util
{
/// <summary>
/// 獲取時(shí)間戳
/// </summary>
/// <returns></returns>
public static string GetTimeStamp()
{
TimeSpan ts = DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, 0);
return Convert.ToInt64(ts.TotalMilliseconds).ToString();
}
/// <summary>
/// 返回音頻時(shí)長
/// </summary>
/// <param name="SongPath">音頻文件路徑</param>
/// <returns></returns>
public static string GetVoiceTime(string SongPath)
{
string dirName = Path.GetDirectoryName(SongPath);
string SongName = Path.GetFileName(SongPath);
ShellClass sh = new ShellClass();
Folder dir = sh.NameSpace(dirName);
FolderItem item = dir.ParseName(SongName);
string SongTime = Regex.Match(dir.GetDetailsOf(item, -1), "\\d:\\d{2}:\\d{2}").Value;//返回音頻時(shí)長
return SongTime;
}
/// <summary>
/// 時(shí)間格式轉(zhuǎn)毫秒值
/// </summary>
/// <param name="time">時(shí)間字符串</param>
/// <returns></returns>
public static long Cover(string time)
{
string[] a = time.Split(':');
if (long.Parse(a[0]) == 0 && long.Parse(a[1]) == 0)
{
return long.Parse(a[2]) * 1000;
}
else if (long.Parse(a[0]) == 0 && long.Parse(a[1]) != 0)
{
return (long.Parse(a[1]) * 60 + long.Parse(a[2])) * 1000;
}
else if (long.Parse(a[0]) != 0 && long.Parse(a[1]) == 0)
{
return ((long.Parse(a[0]) * 60 * 60) + long.Parse(a[2])) * 1000;
}
else if (long.Parse(a[0]) != 0 && long.Parse(a[1]) != 0)
{
return (((long.Parse(a[0]) * 60) + long.Parse(a[1])) * 60) * 1000;
}
return 0;
}
}
}
效果圖

到此這篇關(guān)于C# 基于NAudio實(shí)現(xiàn)對Wav音頻文件剪切(限PCM格式)的文章就介紹到這了,更多相關(guān)C# NAudio Wav音頻文件剪切內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!
相關(guān)文章
C#利用Windows自帶gdi32.dll實(shí)現(xiàn)抓取屏幕功能實(shí)例
這篇文章主要介紹了C#利用Windows自帶gdi32.dll實(shí)現(xiàn)抓取屏幕功能,是C#程序設(shè)計(jì)中常見的一個(gè)重要技巧,需要的朋友可以參考下2014-08-08
解析c#操作excel后關(guān)閉excel.exe的方法
C#和Asp.net下excel進(jìn)程一被打開,有時(shí)就無法關(guān)閉,尤其是website.對關(guān)閉該進(jìn)程有過GC、release等方法,但這些方法并不是在所有情況下均適用2013-07-07
C#利用Openxml讀取Excel數(shù)據(jù)實(shí)例
這篇文章主要介紹了C#利用Openxml讀取Excel數(shù)據(jù)的方法,包括使用中的注意點(diǎn)分析及疑難探討,需要的朋友可以參考下2014-09-09
C#對接阿里云IOT平臺進(jìn)行設(shè)備開發(fā)
這篇文章介紹了C#對接阿里云IOT平臺進(jìn)行設(shè)備開發(fā),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2022-01-01
C#實(shí)現(xiàn)Base64編碼與解碼及規(guī)則
這篇文章主要介紹了C#實(shí)現(xiàn)Base64編碼與解碼,本文給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2021-08-08

