在网页上扒音乐资源+m4a音频文件的解码(用c#解码为wav格式)
- 需要在音乐播放时在右边的文件里找m4a格式的文件
- 找格式的时候需要把鼠标放到文件名称上看后缀
- 然后点在网页中跳转即可自动下载
注意一下路径就可以
using System;
using System.Diagnostics;
using System.IO;
using System;
using NAudio.Wave;
using MediaFoundation;
namespace DecodeM4aToWav
{
using System;
using NAudio.Wave;
class Program
{
static void Main(string[] args)
{
string inputFile = @"D:\code\cs\ProjectBasedOnRaylib\Assets\bgmFruit.m4a";
string outputFile = @"D:\code\cs\ProjectBasedOnRaylib\Assets\bgmFruit.wav";
try
{
// 使用MediaFoundationReader来解码M4A
using (var reader = new MediaFoundationReader(inputFile))
{
// 创建一个WaveFileWriter来写入WAV文件
using (var writer = new WaveFileWriter(outputFile, reader.WaveFormat))
{
// 读取并写入数据
byte[] buffer = new byte[reader.WaveFormat.AverageBytesPerSecond];
int read;
while ((read = reader.Read(buffer, 0, buffer.Length)) > 0)
{
writer.Write(buffer, 0, read);
}
}
}
Console.WriteLine("文件已成功转换为WAV格式.");
}
catch (Exception ex)
{
Console.WriteLine("转换过程中出现错误: " + ex.Message);
}
}
}
}
原文地址:https://blog.csdn.net/m0_74289471/article/details/144222061
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!