0

ユーザーがアップロードした音声を再生したい。アップロードされたオーディオは任意の形式になります。任意のオーディオ ファイルを mp3 形式に変換する方法はありますか?

4

1 に答える 1

5

この関数を使用できます-に基づいてalvas component

リンク : http://alvas.net/alvas.audio,tips.aspx#tip24

private void ConvertAudio()
    {
        string webFile = @"D:\AudioCS\bin\Debug\_web.mp3";
        string pcmFile = @"D:\AudioCS\bin\Debug\_AudioCS.wav";
        using (WaveReader wr = new WaveReader(File.OpenRead(pcmFile)))
        {
            IntPtr pcmFormat = wr.ReadFormat();
            byte[] pcmData = wr.ReadData();
            IntPtr webFormat = AudioCompressionManager.GetCompatibleFormat(pcmFormat,
            AudioCompressionManager.MpegLayer3FormatTag);
            byte[] webData = AudioCompressionManager.Convert(pcmFormat, webFormat,
            pcmData, false);
            MemoryStream ms = new MemoryStream();

            using (WaveWriter ww = new WaveWriter(ms,
            AudioCompressionManager.FormatBytes(webFormat)))
            {
                ww.WriteData(webData);
                using (WaveReader wr2 = new WaveReader(ms))
                {
                    using (FileStream fs = File.OpenWrite(webFile))
                    {
                        wr2.MakeMP3(fs);
                    }
                }
            }
        }
    }
于 2012-10-05T15:44:27.280 に答える