Your own Cloudinary — upload images & videos, resize on-the-fly, convert to WebP/AVIF, serve via CDN cache. Built for developers.
Resize, crop, format convert (WebP, AVIF, JPG, PNG) — all on-the-fly via URL query params. Cached on NVMe SSD.
Auto-thumbnail generation, H.264 transcode for web streaming, multi-threaded encoding. Upload any format.
NVMe SSD cache + Nginx proxy cache (30 day retention). Transforms cached permanently. Sub-50ms response.
Per-key upload limits, allowed origins, file type restrictions. Full control over who can upload what.
Track uploads, bandwidth, requests per day. Storage usage per API key. Real-time dashboard.
Your data stays in India. Self-hosted on enterprise hardware with ZFS RAID storage. 99.9% uptime.
Start free, scale when ready. 18% GST applicable on paid plans.
// 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" />