I have an .mp4 video stored in Azure Blob Storage and I am unable to show it in a website hosted on Azure. The storage account is not public, but it is linked to the web role, and I've updated the version using this code:
var credentials = new StorageCredentials("myaccountname", "mysecretkey"); 
var account = new CloudStorageAccount(credentials, true); 
var client = account.CreateCloudBlobClient(); 
var properties = client.GetServiceProperties(); 
properties.DefaultServiceVersion = "2012-02-12"; 
client.SetServiceProperties(properties); 
I am only using the HTML5 video tag.
I'm out of stuff to look at, and any help and pointers are appreciated to help me play that video. Thanks!