#subtitle #srt #generate #vtt #sub-title

bin+lib subtitler

Subtitler is a library for parsing and generating subtitles

3 releases

new 0.0.4 Jan 11, 2025
0.0.3 Jan 11, 2025
0.0.2 Jan 10, 2025
0.0.1 Jan 8, 2025

#460 in Text processing

Download history 216/week @ 2025-01-05

216 downloads per month

Apache-2.0

18KB
344 lines

Subtitler

subtitler is a library for parsing and generating subtitles

Crates.io Crates.io License Build Status Contributors

Install

cargo install subtitler

parse subtitle from url

subtitler url your_subtitle_url

parse subtitle from file

subtitler file your_subtitle_file

Examples

more examples

parse srt file

use thiserror::Error;
#[derive(Debug, Error)]
pub enum Error {
  #[error("json error {0:?}")]
  Json(#[from] serde_json::Error),
  #[error("IO error {0:?}")]
  IO(#[from] std::io::Error),
  #[error("any error {0:?}")]
  Any(#[from] anyhow::Error),
}

pub type Result<T> = std::result::Result<T, Error>;

#[macro_use]
extern crate tracing;

use std::env;
use std::path::PathBuf;
use subtitler::srt::parse_file;
use tracing::Level;
use tracing_subscriber::FmtSubscriber;
#[tokio::main]
async fn main() -> Result<()> {
  let subscriber = FmtSubscriber::builder()
    .with_max_level(Level::INFO)
    .finish();
  tracing::subscriber::set_global_default(subscriber).expect("setting default subscriber failed");
  let mut file_path: PathBuf = env::current_dir().expect("Failed to get current_dir");
  file_path.push("examples/example.srt");

  let subtitle = parse_file(file_path.to_str().unwrap()).await?;
  info!("subtitle {:#?}", subtitle);
  info!("subtitle json {}", serde_json::to_string_pretty(&subtitle)?);
  Ok(())
}

Dependencies

~7–20MB
~266K SLoC