gpt4 book ai didi

Azure - 为平滑流式传输准备内容

转载 作者:行者123 更新时间:2023-12-04 05:20:27 24 4
gpt4 key购买 nike

完成编码 Azure 任务后,我将一堆 ISMV/ISMA 文件存储到 Azure blob 上。现在我希望它们可用于平滑流式传输。我怎样才能做到这一点?

我在互联网上找到的文章介绍了如何使用自适应流Azure实用程序将ISMV文件从本地PC上传到Azure。但我的文件已经在 Azure 存储中,我不想下载它们并再次上传。

谁能给点建议吗?

最佳答案

非常详细且技术准确How to: Deliver Streaming Content将使您清楚地了解如何向您的用户提供平滑的流。

除此之外,您还可以探索ReadmeCode在 WaMediaWeb 项目中:

    public string GetSmoothStreamingOriginLocator(Models.Asset assetToStream)
{
// Get a reference to the manifest file from the collection
// of streaming files in the asset.
var manifestFile = assetToStream.MediaAsset.AssetFiles.Where(x => x.Name.EndsWith(".ism")).FirstOrDefault();
// Cast the reference to a true IFileInfo type.
if (null == manifestFile)
{
return null;
}


// Create an 1-day readonly access policy.
IAccessPolicy streamingPolicy = this.MediaService.MediaContext.AccessPolicies.Create("Streaming policy",
TimeSpan.FromDays(1),
AccessPermissions.Read);


// Create the origin locator. Set the start time as 5 minutes
// before the present so that the locator can be accessed immediately
// if there is clock skew between the client and server.
ILocator originLocator =
(from l in this.MediaService.MediaContext.Locators
where l.AssetId.Equals(assetToStream.MediaAsset.Id)
select l).FirstOrDefault();


if (originLocator == null)
{
originLocator = this.MediaService.MediaContext
.Locators.CreateLocator(LocatorType.OnDemandOrigin, assetToStream.MediaAsset,
streamingPolicy,
DateTime.UtcNow.AddMinutes(-5));
}
// Create a full URL to the manifest file. Use this for playback
// in streaming media clients.
string urlForClientStreaming = originLocator.Path + manifestFile.Name + "/manifest";


// Display the full URL to the streaming manifest file.
Console.WriteLine("URL to manifest for client streaming: ");
Console.WriteLine(urlForClientStreaming);


return urlForClientStreaming;
}

更新

Azure 媒体服务当前支持 CDN。之前的 SDK/API 中曾经有一个 AzureCdnOriginlocator,但现在已删除。因此,在 Azure 媒体服务当前的公共(public)预览状态下,您无法使用 CDN。您只能使用 OnDemandOrigin Locator 来实现流畅的流式传输。

您还可以选择获取 SAS 定位器。但是,您无法使用 SAS 定位器来实现流畅的流,因为它只会让您访问 list ,而不是存储帐户上的其余文件(不同的比特率 block )。

更新2

github 上的我的代码是最新的,具有最新的(最新)API 和 SDK。

更新3

我错了!刚刚发现了一些关于 CDN 的事情。因此,How to: Enable CDN 上的文档是正确的,但有点不完整。

按照该操作方法中描述的步骤进行操作。一旦您通过所述的手动流程激活 CDN 媒体服务帐户,您将能够使用您的 CDN 端点。

话虽如此,OnDemandOrigin 定位器将导致如下结果:

http://wamsamsreg001orig-hs.cloudapp.net/7f98142c-b513-40be-8d3c-5bf73fe442bb/2012-10-12-320.ism/manifest

您必须将 wamsamsreg001orig-hs.cloudapp.net 替换为您的 Azure CDN 端点(类似于 az02930.vo.msecnd.net)并获取该端点流 list 的新 URL:

http://az02930.vo.msecnd.net/7f98142c-b513-40be-8d3c-5bf73fe442bb/2012-10-12-320.ism/manifest

希望说得清楚一点。您无法通过 API 和/或 SDK 自动使用 CDN,您必须手动进行字符串操作,并且必须了解您的 CDN 端点。

这对我来说也是新鲜事。我必须更新我的代码 - 提供 CDN 的部分。

另外,请注意定位器在创建后并不是立即可用。创建后大约 30-40 秒,定位器将可用。

关于Azure - 为平滑流式传输准备内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13741379/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com