我想播放从数据库下载的mp3文件。我可以下载mp3文件,但它似乎缺少内容,因为我无法播放或打开文件。我下载mp3文件的代码如下:
/*the database stores the file as byte array*/
public ActionResult Download(int rID)
{
byte[] fileContents = db.Devotions.Where(d=>d.ID == rID).Select(d=>d.BytesStore).SingleOrDefault(); // gets the file
return File(fileContents, "audio/mpeg3");//returns the file
}
如何播放下载的mp3文件?