gpt4 book ai didi

asp.net-mvc - 如何从 ASP.NET MVC Controller 操作流式传输 MP3

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

我的网站中有一个 mp3 文件。我想将其输出为 View 。在我的 Controller 中,我有:

public ActionResult Stream()
{
string file = 'test.mp3';
this.Response.AddHeader("Content-Disposition", "test.mp3");
this.Response.ContentType = "audio/mpeg";

return View();
}

但是如何返回 mp3 文件?

最佳答案

创建一个像这样的操作:

public ActionResult Stream(string mp3){
byte[] file=readFile(mp3);
return File(file,"audio/mpeg");
}

函数 readFile 应该从文件中读取 MP3 并将其作为 byte[] 返回。

关于asp.net-mvc - 如何从 ASP.NET MVC Controller 操作流式传输 MP3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1643737/

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