Skip to content

Commit

Permalink
Update the output url path
Browse files Browse the repository at this point in the history
  • Loading branch information
root authored and root committed Nov 22, 2023
1 parent e291b13 commit 04c70da
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/transcoding-service/transcode-a-video.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ You have the flexibility to choose the method that best fits your workflow. Whet
```json
{
"input_url": "https://example.com/input-video.mp4",
"output_path": "s3://example-bucket/video.mp4/?access_key=<access_key>&secret_key=<secret_key>&region=<region>",
"output_path": "s3://example-bucket/path/?access_key=<access_key>&secret_key=<secret_key>&region=<region>",
"resolutions": ["240p", "480p"]
}
```
Expand All @@ -28,7 +28,7 @@ You have the flexibility to choose the method that best fits your workflow. Whet
Copy code
{
"input_path": "s3://example-bucket/video.mp4/?access_key=<access_key>&secret_key=<secret_key>&region=<region>",
"output_path": "s3://example-bucket/video.mp4/?access_key=<access_key>&secret_key=<secret_key>&region=<region>",
"output_path": "s3://example-bucket/path/?access_key=<access_key>&secret_key=<secret_key>&region=<region>",
"resolutions": ["240p", "480p"]
}
```
Expand Down Expand Up @@ -56,7 +56,7 @@ Upon a successful request, you will receive a response like below with informati
"video_duration": null,
"status": "Queued",
"input_url": "https://example.com/input-video.mp4",
"output_path": "s3://example-bucket/video.mp4/?access_key=<access_key>&secret_key=<secret_key>&region=<region>",
"output_path": "s3://example-bucket/path/?access_key=<access_key>&secret_key=<secret_key>&region=<region>",
"start_time": null,
"end_time": null,
"error_message" : null,
Expand Down Expand Up @@ -84,7 +84,7 @@ Upon registering a webhook, you will receive a status change along with informat
"video_duration": null,
"status": "transcoding",
"input_url": "https://example.com/input-video.mp4",
"output_path": "s3://example-bucket/video.mp4/?access_key=<access_key>&secret_key=<secret_key>&region=<region>",
"output_path": "s3://example-bucket/path/?access_key=<access_key>&secret_key=<secret_key>&region=<region>",
"start_time": "2023-11-22T12:30:00Z",
"end_time": null,
"error_message": null
Expand Down

0 comments on commit 04c70da

Please sign in to comment.