I am trying to copy an mp4 file i have uploaded to blob storage that is associated with my media services account into an asset.Following the guide here Copy existing blob to media services asset The problem is i keep getting the same error every time the following
static public IAsset CreateAssetFromExistingBlobs(CloudBlobContainer mediaBlobContainer)
{
// Create a new asset.
IAsset asset = _context.Assets.Create("NewAsset_" + Guid.NewGuid(), AssetCreationOptions.None);
......
}
I get the following exception message "An error occurred while processing this request."
with an inner exception" Access denied to storage account linked with Microsoft Azure Media Services account. Please ensure the storage credentials for this storage account is valid"
I have copied the keys from the portal so i cannot see what exactly is happening