Skip to content

List recordings

Description: List recordings of the spec live event job

GET https://lms-api.swiftfederation.com/v7.4.0/live_event_job/recordings/{app}/{stream}

Request

  • Header

  • Body

Field Required Description
app M app name.
stream M stream name.
page_offset O offset of page. Default is 0.
page_length O no. of items for each page. Default is 20.

Response

  • Header

  • Body

Field Type Description
request_id String Unique id of current HTTP request.
recordings Array Array of recording object

Examples

  • Common
  • Request

GET https://lms-api.swiftfederation.com/v7.4.0/live_event_job/recordings/lms_demo/this_is_a_demo
Content-Type: application/json; charset=UTF-8
Authorization: ...

*

  • Response
{
     "request_id": "bd9fea0cb9a441c6a99b819d90bcf2fa.19.16351470701230001",
     "recordings": [
          {
               "app": "a2021091703",
               "stream": "s20210917",
               "status": "success",
               "started": 1631877774041,
               "ended": 1631878000625,
               "origin": {
                    "protocol": "hls",
                    "manifest": "/20210916/a2021091703/s20210917/4095200B0BEC2C0454B80B0A35586915/recording-master.m3u8",
                    "playlist": [
                         {
                              "preset": "360H",
                              "uri": "/20210916/a2021091703/s20210917/4095200B0BEC2C0454B80B0A35586915/360H-123/recording.m3u8"
                         },
                         {
                              "preset": "transmux",
                              "uri": "/20210916/a2021091703/s20210917/4095200B0BEC2C0454B80B0A35586915/transmux-123/recording.m3u8"
                         }
                    ]
               }
          }
     ]
}