gpt4 book ai didi

c# - 从网址下载后播放声音文件

转载 作者:行者123 更新时间:2023-12-02 23:15:35 25 4
gpt4 key购买 nike

我正在下载音频文件并将其存储在C#Wpf项目中的byte []中

byte[] audio = client.DownloadData(new Uri("http://static.sfdict.com/dictstatic/dictionary/audio/luna/E03/E0397400.mp3"))

我如何播放此声音文件。

最佳答案

您可以这样:

byte[] audio = client.DownloadData(new Uri("http://static.sfdict.com/dictstatic/dictionary/audio/luna/E03/E0397400.mp3"))
System.IO.Stream s = new MemoryStream(audio);
SoundPlayer player = new SoundPlayer(s);
player.Play();

关于c# - 从网址下载后播放声音文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20679076/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com