Reputation: 4643
Background
I have wave files on my server that I want to stream. Because of the size I want to encode them to mp3.
I've tried to use
Question
Is there a way to stream audio from the controller while it's still encoding?
Upvotes: 1
Views: 817
Reputation: 1264
I think I would look at a custom HttpHandler to do the actual streaming. To me, it seems that the controller needs to be finished with any processing before handing off to the view or you will introduce a cross cutting concern.
Upvotes: 1