This package is the Rust implementation of Deepgram's WebVTT and SRT formatting. Given a transcription, this package can return a valid string to store as WebVTT or SRT caption files.
This implmentation is based (a direct port) on Deepgram's Python implementation of the same functionality. The original Python implementation can be found here.
Use cargo to install the package:
cargo add deepgram-rust-captions
use deepgram_rust_captions::{converters::DeepgramConverter, srt::srt, webvtt::webvtt};
use deepgram::transcription::prerecorded::Response as DGResponse;
fn main() {
let response: DGResponse = ...
let converter = DeepgramConverter::new(&response);
let srt_caption = srt(&converter, Some(10));
let webvtt_caption = webvtt(&converter, Some(10));
println!("{}", srt_caption);
println!("{}", webvtt_caption);
}