Unity 外部动态读取MP3格式的声音

Unity外部动态读取声音的文件,他只支持wav,ogg格式的。但是由于客户要求要直接放MP3文件,最后终于在网上找到了一个dll库。有人封装的NAudio.dll,可以将mp3转换成wav,直接下载一个Naudio.dll。

private IEnumerator LoadMusic(string filepath, string savepath)//filepath:mp3的路径,savepath:转换成wav的路径
    {
        var stream = File.Open(filepath, FileMode.Open);
        var reader = new Mp3FileReader(stream);
        WaveFileWriter.CreateWaveFile(savepath, reader);
        var www = new WWW("file://" + savepath);
        yield return www;
        var clip = www.audioClip;
        adi.clip = clip;
        adi.Play();
    }

你可能感兴趣的:(unity)