Skip to content

Merge recordings

Description: Merge all corresponding recordings into one for the spec live event job from requested started time to ended time.

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

Request

  • Header

  • Body

Field Required Type Description
app M String app name. this should be unique and doesn't conflict with other customers.
stream M String stream name
started M Long started time to filter recordings for merging. Unit:unix_timestamp
ended M Long end time to filter recordings for merging. Unit:unix_timestamp
  • Header

  • Body

Field Type Description
request_id String Unique id of current HTTP request.
code String The status code.
message String The description of the status.

Examples

  • Request
PUT https://lms-api.swiftfederation.com/v7.4.0/live_event_job/recording/merge/lms_demo/this_is_a_demo
Content-Type: application/json; charset=UTF-8
Authorization: ...
{
  "started" : 1496226600000,
  "ended" : 1496227000000
}
  • Response
{
  "request_id" : "ac1c0303j5krk80o42"
}