Working on implementing song compression to reduce file size of the song

This commit is contained in:
amazing-username
2019-03-31 20:15:41 -04:00
parent 1f15fe99e5
commit aca1ce2d34
4 changed files with 78 additions and 1 deletions
+1
View File
@@ -56,6 +56,7 @@ namespace Icarus.Controllers
song = await _songMgr.RetrieveSong(id);
return File(song.Data, "application/x-msdownload", _songMgr.SongDetails.Filename);
//return File(song.Data, "application/x-msdownload", "demo.zip");
}
[HttpPost]