Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/transcoding-service/transcode-a-video.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Upon a successful request, you will receive a response like below with informati
"video_duration": null,
"status": "Queued",
"enable_drm": true,
"drm_content_id": "8216dcdb-90c3-4a4f-8abf-1671630a8817",
"drm_content_id": "8216dcdb90c34a4f8abf1671630a8817",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The format of drm_content_id is now a non-hyphenated hexadecimal string. This change creates a potential inconsistency with other documentation files (e.g., docs/drm-service/widevine-configuration.md and docs/drm-service/fairplay-configuration.md), which still describe the corresponding content_id as a 'UUID'. While technically a UUID can be represented without hyphens, the term often implies the hyphenated format, which could confuse developers. For better clarity, consider updating the descriptions in those files to be more specific, for example, 'a 32-character hexadecimal string representing the UUID'.

"input_url": "https://example.com/input-video.mp4",
"output_path": "s3://example-bucket/path/?access_key=<access_key>&secret_key=<secret_key>&region=<region>",
"start_time": null,
Expand Down Expand Up @@ -105,7 +105,7 @@ Upon registering a webhook, you will receive a status change along with informat
"video_duration": null,
"status": "transcoding",
"enable_drm": true,
"drm_content_id": "8216dcdb-90c3-4a4f-8abf-1671630a8817",
"drm_content_id": "8216dcdb90c34a4f8abf1671630a8817",
"input_url": "https://example.com/input-video.mp4",
"output_path": "s3://example-bucket/path/?access_key=<access_key>&secret_key=<secret_key>&region=<region>",
"start_time": "2023-11-22T12:30:00Z",
Expand Down