Expand description
Example: Basic proxy generation.
use oximedia_proxy::{ProxyGenerator, ProxyPreset};
let generator = ProxyGenerator::new();
// Generate a quarter-resolution proxy
generator
.generate("input.mov", "proxy.mp4", ProxyPreset::QuarterResH264)
.await?;Functionsยง
- generate_
custom_ proxy - Generate a proxy with custom settings.
- generate_
simple_ proxy - Generate a single proxy with default settings.