如何从Azure媒体服务获取视频的持续时间



我正在使用Windows Azure Media Services.NET SDK 3来使用流媒体服务。我想检索视频的持续时间。如何使用Windows Azure Media Services.NET SDK 3检索视频的持续时间?

Azure创建了一些元数据文件(xml),这些文件可以在持续时间内查询。使用媒体服务扩展访问这些文件

https://github.com/Azure/azure-sdk-for-media-services-extensions

获取资产元数据:

// The asset encoded with the Windows Media Services Encoder. Get a reference to it from the context.
IAsset asset = null;
// Get a SAS locator for the asset (make sure to create one first).
ILocator sasLocator = asset.Locators.Where(l => l.Type == LocatorType.Sas).First();
// Get one of the asset files.
IAssetFile assetFile = asset.AssetFiles.ToList().Where(af => af.Name.EndsWith(".mp4", StringComparison.OrdinalIgnoreCase)).First();
// Get the metadata for the asset file.
AssetFileMetadata manifestAssetFile = assetFile.GetMetadata(sasLocator);
TimeSpan videoDuration = manifestAssetFile.Duration;

如果使用AMSv3,AdaptiveStreaming作业会在输出资产中生成一个video_manifest.json文件。您可以解析它来获得持续时间。这里有一个例子:

public async Task<TimeSpan> GetVideoDurationAsync(string encodedAssetName)
{
    var encodedAsset = await ams.Assets.GetAsync(config.ResourceGroup, config.AccountName, encodedAssetName);
    if(encodedAsset is null) throw new ArgumentException("An asset with that name doesn't exist.", nameof(encodedAssetName));
    var sas = GetSasForAssetFile("video_manifest.json", encodedAsset, DateTime.Now.AddMinutes(2));
    var responseMessage = await http.GetAsync(sas);
    var manifest = JsonConvert.DeserializeObject<Amsv3Manifest>(await responseMessage.Content.ReadAsStringAsync());
    var duration = manifest.AssetFile.First().Duration;
    return XmlConvert.ToTimeSpan(duration);
}

有关Amsv3Manifest模型和示例video_manifest.json文件,请参见:https://app.quicktype.io/?share=pAhTMFSa3HVzInAET5k4

您可以使用以下GetSasForAssetFile()的定义开始:

private string GetSasForAssetFile(string filename, Asset asset, DateTime expiry)
{
    var client = GetCloudBlobClient();
    var container = client.GetContainerReference(asset.Container);
    var blob = container.GetBlobReference(filename);
    var offset = TimeSpan.FromMinutes(10);
    var policy = new SharedAccessBlobPolicy
    {
        SharedAccessStartTime = DateTime.UtcNow.Subtract(offset),
        SharedAccessExpiryTime = expiry.Add(offset),
        Permissions = SharedAccessBlobPermissions.Read
    };
    var sas = blob.GetSharedAccessSignature(policy);
    return $"{blob.Uri.AbsoluteUri}{sas}";
}
private CloudBlobClient GetCloudBlobClient()
{
    if(CloudStorageAccount.TryParse(storageConfig.ConnectionString, out var storageAccount) is false)
    {
        throw new ArgumentException(message: "The storage configuration has an invalid connection string.", paramName: nameof(config));
    }
    return storageAccount.CreateCloudBlobClient();
}

在Azure Media Services SDK中,我们仅通过contentFileSize提供资产的大小(https://msdn.microsoft.com/en-us/library/azure/hh974275.aspx)。但是,我们不提供视频的元数据(如持续时间)。当你得到一个流媒体定位器时,播放会告诉你视频资产的长度。

干杯,严明飞

@galdin的回答让我走到了一半。由于一些事情发生了变化,我想添加一个使用Azure存储v12的快速示例。此外,我拿着集装箱的SAS,从那里读取了舱单;这似乎有点容易。出于我的目的,我需要总的分钟数。

通过复制清单JSON数据并使用VisualStudio中的粘贴特殊选项,可以快速创建Amsv3Manifest模型。

//todo: get duration from _manifest.json
HttpResponseMessage? responseMessage = null;
var roundedMinutes = 0;
// Use Media Services API to get back a response that contains
// SAS URL for the Asset container into which to upload blobs.
// That is where you would specify read-write permissions 
// and the expiration time for the SAS URL.
var durationAssetContainerSas = await _client.Assets.ListContainerSasAsync(
    config.ResourceGroup,
    config.AccountName,
    assetName,
    permissions: AssetContainerPermission.ReadWrite,
    expiryTime: DateTime.UtcNow.AddMinutes(10).ToUniversalTime());
var durationSasUri = new Uri(durationAssetContainerSas.AssetContainerSasUrls.First());
// Use Storage API to get a reference to the Asset container via
// Sas and then access the manifest file in the container.
// the manifest file starts with 32 characters from the video name
BlobContainerClient durBlobContainerClient = new BlobContainerClient(durationSasUri);
BlobClient durationBlobClient = durBlobContainerClient.GetBlobClient($"{name[..32]}_manifest.json");
try
{
    responseMessage = await new HttpClient().GetAsync(durationBlobClient.Uri);
}
catch (Exception e)
{
    logger.LogError(e.Message);
}
if (responseMessage != null)
{
    var manifest = 
        JsonConvert.DeserializeObject<Amsv3Manifest>(await responseMessage.Content.ReadAsStringAsync());
    var playDuration = XmlConvert.ToTimeSpan(manifest.AssetFile.First().Duration);
    roundedMinutes = (int)Math.Round(playDuration.TotalMinutes);
}

最新更新