Skip to content

Clip Manifest API

Dash Manifest

Method

POST

Request Path

/api/video/manifest/<channel-id>/dash/clipmanifest?

Query String Parameters

http
tenantId: <tenantId>
applicationId: <application-id>

Request Body

json
{
  "requests": [
    {
      "streamId": "<stream-id>",
      "startTime": "Start time of day",
      "endTime": "End time of day"
    }
    ...
  ]
}

NOTE

Times are UTC+0 and to be formatted as yyyy-MM-ddThh:mm:ss.fffZ

Response

xml
<?xml version="1.0" encoding="utf-8"?>
<MPD timeShiftBufferDepth="P1D" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:mpeg:dash:schema:mpd:2011" xmlns:xlink="http://www.w3.org/1999/xlink" xsi:schemaLocation="urn:mpeg:DASH:schema:MPD:2011 http://standards.iso.org/ittf/PubliclyAvailableStandards/MPEG-DASH_schema_files/DASH-MPD.xsd" profiles="urn:mpeg:dash:profile:isoff-on-demand:2011,http://dashif.org/guidelines/dash-if-main" type="static" mediaPresentationDuration="PT16.9S">
    <UTCTiming schemeIdUri="urn:mpeg:dash:utc:http-xsdate:2014" value="https://time.akamai.com/?ms&amp;iso"/>
    ...
</MPD>

HLS manifest

Method

POST

Request Path

/api/video/manifest/<channel-id>/hlsplaylist/clipmanifest?

Query String Parameters

http
tenantId: <tenantId>
applicationId: <application-id>

Request Body

json
{
  "requests": [
    {
      "streamId": "<stream-id>",
      "startTime": "Start time of day",
      "endTime": "End time of day"
    }
    ...
  ]
}

NOTE

Times are UTC+0 and to be formatted as yyyy-MM-ddThh:mm:ss.fffZ

Response

hls
#EXTM3U
#EXT-X-STREAM-INF:BANDWIDTH=1500000,RESOLUTION=768x432,FRAME-RATE=30,CODECS="avc1.64001e"
https://edge-za-n.mobii.com/api/video/manifest/46cb9b86-6bc1-43fd-8339-43b9d58d6d08/HlsPlaylist/2/clipplaylist.m3u8?applicationId=b56d4152-30a7-4db2-8517-a758018367d6&tenantId=1656dd2b-6ef7-4b86-b9b1-3227fad4beaa&clipId=27722218-b28f-4a3d-ae6f-0be8431f03f5&mode=0&protectionScheme=CENC
#EXT-X-I-FRAME-STREAM-INF:BANDWIDTH=1500000,RESOLUTION=768x432,CODECS="avc1.64001e",URI="https://edge-za-n.mobii.com/api/video/manifest/46cb9b86-6bc1-43fd-8339-43b9d58d6d08/HlsPlaylist/2/iframe/clipplaylist.m3u8?applicationId=b56d4152-30a7-4db2-8517-a758018367d6&tenantId=1656dd2b-6ef7-4b86-b9b1-3227fad4beaa&clipId=27722218-b28f-4a3d-ae6f-0be8431f03f5&mode=0&protectionScheme=CENC"
...