Expand description
Subtitle transformers for converting between different subtitle formats.
This module provides utility methods to transform subtitle objects
into various target formats using the FormatConverter.
§Examples
ⓘ
use subx_cli::core::formats::{FormatConverter, Subtitle};
// Convert a subtitle object to a target format
let converter = FormatConverter::new();
let transformed = converter.transform_subtitle(subtitle.clone(), "ass").unwrap();