安排Azure Media Services中的实时流媒体通道以在特定时间以编程方式启动

时间:2017-07-12 02:42:36

标签: .net azure azure-media-services

我在Microsoft Azure Media Services上有两个实时流媒体频道,我希望每天在特定时间以编程方式启动和停止。我一直在浏览Azure文档但未找到明确的前进方向。使用Azure工具/ SDK / API实现此目标的标准工作流程是什么?

1 个答案:

答案 0 :(得分:1)

有启动和停止频道和节目的API。 https://docs.microsoft.com/en-us/rest/api/media/operations/channel#a-namestartchannelsa-start-channels

我建议使用Azure Scheduler之类的服务来触发事件 https://azure.microsoft.com/en-us/services/scheduler/

另一种选择是将API包装在Azure函数中,并从可以执行停止/启动时间的计时或通知的任何其他服务中调用该函数。