Upload, Transform &
Serve Media at Scale

Your own Cloudinary — upload images & videos, resize on-the-fly, convert to WebP/AVIF, serve via CDN cache. Built for developers.

📷

Image Transforms

Resize, crop, format convert (WebP, AVIF, JPG, PNG) — all on-the-fly via URL query params. Cached on NVMe SSD.

🎥

Video Processing

Auto-thumbnail generation, H.264 transcode for web streaming, multi-threaded encoding. Upload any format.

Lightning Fast

NVMe SSD cache + Nginx proxy cache (30 day retention). Transforms cached permanently. Sub-50ms response.

🔑

API Key Auth

Per-key upload limits, allowed origins, file type restrictions. Full control over who can upload what.

📊

Usage Analytics

Track uploads, bandwidth, requests per day. Storage usage per API key. Real-time dashboard.

🛡️

India Hosted

Your data stays in India. Self-hosted on enterprise hardware with ZFS RAID storage. 99.9% uptime.

Simple Pricing

Start free, scale when ready. 18% GST applicable on paid plans.

Loading plans...

Dead Simple API

// Upload
curl -X POST https://media.sasksoftware.in/api/v1/upload \
  -H "X-API-Key: nxs_your_key" \
  -F "file=@photo.jpg"

// Response
{ "id": "abc123", "url": "https://media.sasksoftware.in/media/abc123" }

// Serve with transforms
https://media.sasksoftware.in/media/abc123?w=400&h=300&format=webp&q=80

// HTML responsive image
<img src="https://media.sasksoftware.in/media/abc123?w=800&format=webp"
     srcset="...?w=400&format=webp 400w, ...?w=800&format=webp 800w"
     loading="lazy" />