Bootstrap

在网页上扒音乐资源+m4a音频文件的解码(用c#解码为wav格式)

  1. 需要在音乐播放时在右边的文件里找m4a格式的文件
  2. 找格式的时候需要把鼠标放到文件名称上看后缀
  3. 然后点在网页中跳转即可自动下载

注意一下路径就可以

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);
            }
        }
    }



}

;