Zephiel API

Video Processing

Free tier

Transcode, clip, and caption video over HTTP.

4.512 reviewsby Northwind Data11k subscribers
videotranscodinghlssubtitlesthumbnails

Starts at

$34/mo

Choose a plan

Create a free account to subscribe.

Latency
3200ms
Uptime
99.92%
Endpoints
4

About this API

Submit a file or URL and get back adaptive renditions, thumbnails, animated previews, burned-in or sidecar subtitles, and scene-change markers. Progress and completion arrive by webhook rather than a held-open connection.

Common use cases

User-generated video pipelines
Adaptive streaming delivery
Automatic subtitle burn-in
Preview and thumbnail generation

Quickstart

Every Zephiel API uses the same base URL, the same key header, and the same error envelope.

curl -X GET "https://zephiel.com/api/v1/video-processing/transcode" \
  -H "X-Zephiel-Key: $ZEPHIEL_API_KEY" \
  -H "Accept: application/json"

Example response

{
  "id": "vid_9a20cc",
  "status": "completed",
  "duration": 184.6,
  "renditions": [
    { "height": 1080, "bitrate": 5200, "url": "https://cdn.zephiel.com/v/9a20cc/1080.m3u8" },
    { "height": 720, "bitrate": 2800, "url": "https://cdn.zephiel.com/v/9a20cc/720.m3u8" }
  ]
}

Related APIs in Media & Files