本文属于机器翻译版本。若本译文内容与英语原文存在差异,则一律以英文原文为准。
查看日程安排 (AWS CLI)
您可以使用 AWS CLI 来查看一个频道当前计划中的操作列表:
-
频道中尚未执行的操作
-
以前执行过的操作
要查看时间表,请使用DescribeSchedule
命令。在不同的接口中,此命令的表示方式不同:
-
在中 AWS CLI,命令是
describe-schedule
。 -
在 API 中,命令由
HTTP GET
on 表示channels/channelId/schedule
。 -
在 AWS SDK 中,命令由适用于该 SDK 语言的构造表示。
查看操作 (AWS CLI)
-
输入以下命令:
aws medialive describe-schedule --channel-id
value
--max-results value -
要提交命令,请按 Enter。响应将显示在屏幕上。
-
如果您使用了
-max-results
选项并包含了响应NextToken
,请输入DescribeChannel命令并传入NextToken
的值--next-token
。例如:aws medialive describe-schedule --channel-id
value
--next-token 3jhrprd0 -
要提交命令,请按 Enter。响应将显示在屏幕上。
示例
命令响应的 JSON 正文与BatchUpdateSchedule
命令请求的 JSON 正文类似。
此响应示例显示以下操作:
-
在世界标准时间 20:
ActionName
corporate-logo-029
30:00 激活图层 1 中的图像叠加层的操作 -
ActionName
stop-overlay-029
用于在世界标准时间 20:42:04 停用图层 1 中的叠加层的操作 -
在停用操作的同时插
ActionName
adavail-3708
入 splice_insert 的动作 -
return-to-network 15 秒后,世界标准
ActionName
end-adavail-3708
时间 20:42:19 的动作 -
在
ActionName
corporate-logo-030
返回的同时重新激活第 1 层中的相同叠加层的操作
此计划描述一个工作流,其中通常会显示您公司的徽标,但您在每个广告效用开始时将删除此徽标,然后在广告效用结束时再次显示此徽标。
{ "NextToken": "3jhrprd0", "ScheduleActions": [ { "ScheduleActionStartSettings": { "FixedModeScheduleActionStartSettings": { "Time": "2018-05-21T20:30:00.000Z" } }, "ActionName": "corporate-logo-029", "ScheduleActionSettings": { "StaticImageActivateSettings": { "Image": { "PasswordParam": "corplogo!2312", "Uri": "s3ssl://DOC-EXAMPLE-BUCKET/logos/corporate/high-res.bmp", "Username": "medialiveoperator" }, "ImageY": 300, "FadeIn": 1500, "ImageX": 200, "Width": 800, "Opacity": 60, "Layer": 1, "Height": 900 } } }, { "ScheduleActionStartSettings": { "FixedModeScheduleActionStartSettings": { "Time": "2018-05-21T20:42:04.000Z" } }, "ActionName": " stop-overlay-029", "ScheduleActionSettings": { "StaticImageDeactivateSettings": { "FadeOut": 1500, "Layer": 1 } } }, { "ScheduleActionStartSettings": { "FixedModeScheduleActionStartSettings": { "Time": "2018-05-21T20:42:04.000Z" } }, "ActionName": "adavail-3708", "ScheduleActionSettings": { "Scte35SpliceInsertSettings": { "SpliceEventId": 3708, "Duration": 1350000 } } }, { "ScheduleActionStartSettings": { "FixedModeScheduleActionStartSettings": { "Time": "2018-05-21T20:42:19.000Z" } }, "ActionName": "end-adavail-3708", "ScheduleActionSettings": { "Scte35ReturnToNetworkSettings": { "SpliceEventId": 3708 } } }, { "ScheduleActionStartSettings": { "FixedModeScheduleActionStartSettings": { "Time": "2018-05-21T20:42:19.000Z" } }, "ActionName": "corporate-logo-030", "ScheduleActionSettings": { "StaticImageActivateSettings": { "Image": { "PasswordParam": "corplogo!2312", "Uri": "s3ssl://DOC-EXAMPLE-BUCKET/logos/corporate/high-res.bmp", "Username": "medialiveoperator" }, "ImageY": 300, "FadeIn": 1500, "ImageX": 200, "Width": 800, "Opacity": 60, "Layer": 1, "Height": 900 } } } ] }