//! Transcript and caption fetching from media platforms.
//!
//! Provides a source-agnostic library for retrieving transcripts/captions from
//! external media platforms (YouTube first; Vimeo, podcasts, generic VTT/SRT
//! URLs to follow). The [`source::TranscriptSource`] trait is the extension
//! point — concrete sources live under [`sources`], format converters under
//! [`mod@format`], and shared value types ([`cue::Cue`], [`source::Transcript`])
//! are reused across all sources.
//!
//! This module has no `clap` dependency and is reusable from other commands or
//! external consumers.
pub use Cue;
pub use ;
pub use Format;
pub use ;