Videos
Create video object
This endpoint is used to programmatically create a video object.
The request body when create a video object will look like this:
{
"description": "string",
"is_public": true,
"metadata": [
{
"key": "string",
"value": "string"
}
],
"qualities": ["string"],
"tags": ["string"],
"title": "video's title"
}
Notice the title
is required.
For example, this would be a simplified body for this request:
{
"title": "video's title"
}
Headers
Body
Response
curl --location https://api.aiozstream.network/api/videos \
--header 'Accept-Language: en-US,en;q=0.9' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--data '{
"title": "video'\''s title"
}'
List videos
This API will list all your videos.
Headers
Body
Response
curl 'https://api.aiozstream.network/api/videos' \
-H 'accept: application/json, text/plain, */*' \
-H 'authorization: Bearer <YOUR_JWT_TOKEN>' \
--data-raw '{"limit":10,"offset":0,"sort_by":"created_at","order_By":"desc"}' \
Get video object
This API will show video's detail.
Parameters
Headers
Response
curl --location 'https://api.aiozstream.network/api/videos/video_id' \
--header 'accept: application/json, text/plain, */*' \
--header 'authorization: Bearer <YOUR_JWT_TOKEN>'
Calculate transcode price
This endpoint allows you to calculate the price to transcode your video based on your choice of qualities and video's duration.
Query
Headers
Response
curl --location 'https://api.aiozstream.network/api/videos/cost?duration=60&qualities=360p%2C1080p' \
--header 'accept: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>'
Upload video part
This API allows you to upload your video or a part of it if your video's size is larger than chunk size (chunk size: 50MB - 200MB).
Parameters
Headers
Body
Response
curl --location 'https://api.aiozstream.network/api/videos/video_id/part' \
--header 'accept: application/json, text/plain, */*' \
--header 'authorization: Bearer <YOUR_JWT_TOKEN>' \
--header 'content-range: bytes {start_pos}-{end_pos}/{file_size}' \
--form 'hash="part'\''s content MD5 hash"' \
--form 'index="part'\''s index"' \
--form 'file=@"/path/to/file"'
Upload video completed
This API notify server that video's uploading process is done.
Parameters
Headers
Response
curl --location 'https://api.aiozstream.network/api/videos/:id/complete' \
--header 'accept: application/json, text/plain, */*' \
--header 'authorization: Bearer <YOUR_JWT_TOKEN>'
Update video object
This API allow you to update video's information.
Parameters
Headers
Body
Response
curl --location --request PATCH 'https://api.aiozstream.network/api/videos/video_id' \
--header 'accept: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--header 'Content-Type: application/json' \
--data '{
"description": "string",
"player_id": "string",
"is_public": true,
"metadata": [
{
"key": "string",
"value": "string"
}
],
"tags": [
"string"
],
"title": "string"
}'
Upload video thumbnail
This API allows you to upload a thumbnail for a certain video.
Parameters
Headers
Body
Response
curl --location 'https://api.aiozstream.network/api/videos/video_id/thumbnail' \
--header 'accept: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>' \
--form 'file=@"/path/to/file"'
Delete video
This API will delete certain video.
Parameters
Headers
Response
curl --location --request DELETE 'https://api.aiozstream.network/api/videos/video_id' \
--header 'accept: application/json' \
--header 'Authorization: Bearer <YOUR_JWT_TOKEN>'