1 unstable release
0.1.2 | Jul 13, 2024 |
---|
#3 in #captions
3MB
175 lines
Deepgram Rust Captions
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.
Installation
Use cargo to install the package:
cargo add deepgram-rust-captions
Usage
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);
}
Dependencies
~9–22MB
~289K SLoC