Now in Private Beta
High-Fidelity
Video APIs
Encode, transcode, analyze and stream video at any scale. Video-Fi gives developers the tools to build powerful video workflows — fast, reliable, and developer-first.
Join the waitlistexample.ts
// Transcode a video with Video-Fi API
const videofi = new VideoFi({ apiKey: 'vf_live_...' });
const job = await videofi.transcode({
input: 's3://my-bucket/input.mp4',
output: 's3://my-bucket/output/',
format: 'hls',
});
// { jobId: 'jb_abc123', status: 'queued' }