I have few mp3 files stored on azure file storage. when try to play them in chrome browser with html audio tag, I see the audio stop playing after few mins. do I need to migrate them to azure blob storage for better streaming?
CodePudding user response:
Yes, you would get better streaming support if you move your audio files to Azure Blob storage
, and store them as blobs
. Blob storage is designed for supporting streaming content. Read more about it here. Azure File storage is more for supporting migration scenarios, from on-prem to cloud, and to augment or replace file shares and servers.