0
votes

What should I use from Azure for an application where I am uploading videos and I want to process videos to obtain information with my own worker roles but I dont want to stream the videos. Should I use Media service or regular blob storage?

1

1 Answers

1
votes

@Devsined, per my experience, my suggestion is that uploading & processing videos to & from blob storage is the better choice to obtain information. Even I think, if having Azure App services consideration, you can upload videos into queue storage first, then to store into blob storage, and using webjobs to handle the vedio from queue and record the obtained inforamtion to Azure Database. Any concern, please feel free to let me know.