Skip to content

Commit

Permalink
updated enable_drm to enable_drm_for_recording
Browse files Browse the repository at this point in the history
  • Loading branch information
chiranjeevi committed Dec 20, 2023
1 parent c1307f7 commit 57b6c73
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docs/live-stream-api/live-stream/schedule-a-live-stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ https://app.tpstreams.com/api/v1/<organization_id>/assets/live_streams/
| ----------- | ----------- | ----------- | ---------- |
| title | string | Specify a text string or identifier which can be used for filtering or searching the live stream.| Yes |
| start | string | Specify the date and time (in the format: "YYYY-MM-DD HH:MM:SS") when the live stream should be scheduled.| Yes |
| enable_drm | boolean | A boolean value to enable or disable DRM for live stream recording.| No |
| enable_drm_for_recording | boolean | A boolean value to enable or disable DRM for live stream recording.| No |

**Sample request body**

```json
{
"title": "Data science Live class",
"start": "2024-10-05 15:30:00",
"enable_drm": false
"enable_drm_for_recording": false
}

```
Expand All @@ -48,7 +48,7 @@ For valid requests the API server returns a JSON:
"hls_url": "https://d28qihy7z761lk.cloudfront.net/live/gnarys/AuC9yX2EtBr/video.m3u8",
"start": "2024-10-05 15:30:00",
"transcode_recorded_video": true,
"enable_drm": false,
"enable_drm_for_recording": false,
"chat_embed_url": null,
"resolutions": [
"240p",
Expand Down
2 changes: 1 addition & 1 deletion docs/live-stream-api/live-stream/start-server.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ For valid requests the API server returns a JSON:
"hls_url": "https://d3cydmgt9q030i.cloudfront.net/live/edee9b/8XGEEj6ptnB/video.m3u8",
"start": "2024-10-05 15:30:00",
"transcode_recorded_video": true,
"enable_drm": false,
"enable_drm_for_recording": false,
"chat_embed_url": "https://app.tpstreams.com/live-chat/edee9b/8XGEEj6ptnB/",
"resolutions": [
"240p",
Expand Down

0 comments on commit 57b6c73

Please sign in to comment.