hlskit 0.1.3

HlsKit provides strong HLS video conversion features backed by ffmpeg. Prepare your mp4 files for streaming
Documentation
1
2
3
4
5
6
7
8
9
10
11
use thiserror::Error;

#[derive(Error, Debug)]
pub enum HlsKitError {
    #[error(transparent)]
    IO(#[from] std::io::Error),
    #[error("[HlsKit] Failed to spawn Ffmpeg: {error:?}")]
    FfmpegError { error: String },
    #[error("File {file_path:?} not found")]
    FileNotFound { file_path: String },
}