Hesedvid is built for companies who serve high volume of videos and need unbeatable pricing.
Hesedvid is simple.
Hesedvid is built to load and start playing unbelievably fast, even with a cache miss. You can read about our engineering approach to this here.
Click Benchmark to start playback and measure time‑to‑play.
To upload a video, either request a pre-signed URL from us or pass through a GCS URL with the video on it.
import requests
API_BASE = "https://api.hesedvid.com"
def upload_via_presign(file_path: str) -> None:
# 1) request pre-signed URL from Hesedvid
resp = requests.post(f"{API_BASE}/v1/uploads/presign", json={"filename": file_path})
resp.raise_for_status()
presign = resp.json()["url"]
# 2) PUT the file to the returned URL
with open(file_path, "rb") as f:
put = requests.put(presign, data=f)
put.raise_for_status()
# 3) notify Hesedvid that the upload is complete (optional)
# requests.post(f"{API_BASE}/v1/uploads/complete", json={"presign": presign})
upload_via_presign("/path/to/video.mp4") Hesedvid gives you two toggles for video quality. The first is the pre-set which offers max bit rates and resolution. The second is the ffmpeg encoding control which determines quality at a given bitrate.
TL;DR we give you control of the encoding speed vs quality trade off. Read more in our documentation here.
Hesedvid has a 100% video delivery SLA on every plan. We use Uptrends to create a public uptime monitoring tool.
Hesedvid bills $0.000097 per minute of video delivered, regardless of video resolution.
Standardized to $ per GB‑month (select profile bitrate for conversion).
| Platform | $ / GB‑month |
|---|---|
| HesedVid Storage | — |
| Mux Storage | — |
| Cloudflare Stream Storage | — |
| Bunny Stream (Video Library) | — |
Prices are per minute.
| Profile | Total bit-rate (bps) | GB/s | Mux (per minute) | Our price (per minute) |
|---|---|---|---|---|
| Standard 720 p | 2,384,000 | 0.000298 | $0.003 | $0.0022 |
| Standard 1080 p | 5,140,000 | 0.000643 | $0.004 | $0.0035 |
| High 720 p | 2,384,000 | 0.000298 | $0.0024 | $0.0024 |
| High 1080 p | 6,204,000 | 0.000776 | $0.003 | $0.00264 |
| High 1440 p | 11,024,000 | 0.001378 | $0.0045 | $0.00396 |
| High 4 K | 19,344,000 | 0.002418 | $0.009 | $0.008 |
| Ultra 720 p | 2,384,000 | 0.000298 | $0.0036 | $0.003 |
| Ultra 1080 p | 7,704,000 | 0.000963 | $0.0045 | $0.004 |
| Ultra 1440 p | 14,024,000 | 0.001753 | $0.00675 | $0.006 |
| Ultra 4 K | 26,344,000 | 0.003293 | $0.0135 | $0.012 |
Enterprises can pay $7500/year for 3-year price locks and a shared Slack channel with an engineer.