AIOZ Stream API
Video caption

Video caption

Add video caption in certain language for video

This endpoint is used to add caption in certain language for video.

POSThttps://api.aiozstream.network/api/videos/:id/captions/:lan

Parameters

id* The unique identifier of the video
lan* The language of video's caption (ex: en, fr)

Headers

Authorization Bearer your_access_token_here
stream-public-key your_public_key_here
stream-secret-key your_secret_key_here

Body

file* Caption file (allow: .vtt)

Response

201: Created
{
    "status": "success",
    "data": {
      "caption": {
            "id": "string",
            "video_id": "string",
            "url": "string",
            "language": "string",
            "is_default" true,
            "created_at": "2023-06-11T11:11:11.111111Z"
      }
    }
}
curl --location 'https://api.aiozstream.network/api/videos/video_id/captions/en' \
--header 'accept: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--form 'file=@"/path/to/file"'

Get video captions list

This endpoint will list all your video's captions.

GEThttps://api.aiozstream.network/api/videos/:id/captions

Parameters

id* The unique identifier of the video

Query

offset The number of records to skip before starting to return the results (default: 0)
limit The maximum number of records to return in a query (default: 25, max: 100)

Headers

Authorization Bearer your_access_token_here
stream-public-key your_public_key_here
stream-secret-key your_secret_key_here

Response

200: OK
{
    "status": "success",
    "data": {
      "captions": [
        {
            "id": "string",
            "video_id": "string",
            "url": "string",
            "language": "string",
            "is_default": true,
            "created_at": "2023-06-11T11:11:11.111111Z"
        }
      ],
      "total":1
    }
}
curl --location 'https://api.aiozstream.network/api/videos/video_id/captions?offset=0&limit=10' \
--header 'accept: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>'

Set video's default caption

This endpoint will set your video's default caption.

PATCHhttps://api.aiozstream.network/api/videos/:id/captions/:lan

Parameters

id* The unique identifier of the video
lan* The language of video's caption (ex: en, fr)

Headers

Authorization Bearer your_access_token_here
stream-public-key your_public_key_here
stream-secret-key your_secret_key_here

Body

is_default* The value that indicates whether a caption is the default choice

Response

200: OK
{
    "status": "success",
    "message": "Set default caption successfully."
}
curl --location --request PATCH 'https://api.aiozstream.network/api/videos/video_id/captions/en' \
--header 'accept: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--header 'Content-Type: application/json' \
--data '{
    "is_default":true
}'

Remove video caption

This endpoint will remove your video's caption.

DELETEhttps://api.aiozstream.network/api/videos/:id/captions/:lan

Parameters

id* The unique identifier of the video
lan* The language of video's caption (ex: en, fr)

Headers

Authorization Bearer your_access_token_here
stream-public-key your_public_key_here
stream-secret-key your_secret_key_here

Body

is_default* The value that indicates whether a caption is the default choice

Response

200: OK
{
    "status": "success",
    "message": "Delete caption successfully."
}
curl --location --request DELETE 'https://api.aiozstream.network/api/videos/video_id/captions/en' \
--header 'accept: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>'