기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
스플라이스_메시지 삽입 — 페이로드
다음 JSON의 필드 의미 및 값에 대한 자세한 내용은 을 참조하십시오. splice_insert 메시지의 필드
{ "ScheduleActions": [ { "ScheduleActionStartSettings": { "FixedModeScheduleActionStartSettings": { "Time": "string" }, "FollowModeScheduleActionStartSettings": { "FollowPoint": "enum", "ReferenceActionName": "string" }, "ImmediateModeScheduleActionStartSettings": { } }, "ActionName": "string", "ScheduleActionSettings": { "Scte35SpliceInsertSettings": { "Duration": integer, "SpliceEventId": integer } } } ] }
시작 시간이 고정된 스플라이스 삽입의 예
이 요청 예제는 UTC 시작 시간이 20:42:04.000인 splice_insert에 대한 작업을 생성합니다. 또한 데이터베이스의 광고 가능성, 스플라이스 이벤트 ID에 대한 고유 정수, 1,350,000kHz 틱(15초)의 지속 시간을 참조하는 ActionName
도 있습니다.
{ "ChannelId": "999999", "Creates": { "ScheduleActions": [ { "ScheduleActionStartSettings": { "FixedModeScheduleActionStartSettings": { "Time": "2018-05-21T20:42:04.000Z" } }, "ActionName": "adavail-3708", "ScheduleActionSettings": { "Scte35SpliceInsertSettings": { "SpliceEventId": 3708, "Duration": 1350000 } } } ] } }
스플라이스 인서트의 예는 다음과 같습니다.
이 요청 예제는 nature-doco-003이라는 입력 스위치가 종료된 후 splice_insert를 삽입하기 위한 액션을 생성합니다. 또한 이 작업에는 데이터베이스의 광고 가능 구간, 스플라이스 이벤트 ID에 대한 고유 정수, 1,350,000kHz 틱(15초)의 지속 시간을 참조하는 ActionName
도 있습니다.
SCTE 35 메시지의 팔로우 모드는 입력이 완료되는 즉시 광고가 표시되도록 하고 싶지만 언제 발생할지 모르는 경우에 유용합니다.
{ "ChannelId": "999999", "Creates": { "ScheduleActions": [ { "ScheduleActionStartSettings": { "FollowModeScheduleActionStartSettings": { "FollowPoint": "END", "ReferenceActionName": "nature-doco-003" } }, "ActionName": "adavail-3708", "ScheduleActionSettings": { "Scte35SpliceInsertSettings": { "SpliceEventId": 3708, "Duration": 1350000 } } } ] } }