memvid-rs 1.2.0

High-performance QR code video encoding for text storage and semantic retrieval
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Video processing functionality for memvid-rs
//!
//! This module provides video encoding and decoding capabilities using static FFmpeg
//! with pure Rust fallbacks for maximum compatibility.

pub mod decoder;
pub mod encoder;

// Re-export main types and functions
pub use decoder::{VideoDecoder, VideoInfo};
pub use encoder::VideoEncoder;