xberg 1.0.8

High-performance document intelligence library for Rust. Extract text, metadata, and structured data from PDFs, Office documents, images, and 101 formats and 306 programming languages via tree-sitter code intelligence with async/sync APIs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Audio/video transcription (speech-to-text) pipeline.
//!
//! This is the internal implementation behind the `transcription` feature.
//! The public surface is the `TranscriptionConfig` (under `transcription-types`)
//! and the automatic routing that happens when an audio/video MIME type is
//! presented to the extractor registry.

pub mod decode;
#[cfg(feature = "transcription")]
pub mod engine;
#[cfg(feature = "transcription")]
pub mod model;
#[cfg(feature = "transcription")]
pub mod tags;