#srt #subtitle #title #parser #extracting #plain #cues

title_parser

Library for parsing SRT and VTT title cues

3 releases

0.1.2 Nov 12, 2021
0.1.1 Nov 12, 2021
0.1.0 Nov 10, 2021

#16 in #plain

MIT license

12KB
164 lines

title_parser

Rust Publish in Crate Package Registry

Rust library for extracting plain text from SRT and WebVTT Subtitle Cues.

Getting Started

These instructions will give you a copy of the project up and running on your local machine for development and testing purposes.

Prerequisites

Requirements for the software and other tools to build, test and push

Installing

Add crate to your Cargo.toml

[dependencies]
title_parser = "0.1.2"

To parse a cue, such as:

1 - Cue Identifier
00:01:14.815 --> 00:01:18.114
- I'm text for a cue
- Me too!

You can import the trait to convert the cue string into a struct:

use title_parser::{CueTrait};

let text = "1 - Cue\n00:01:14.815 --> 00:01:18.114\n- I'm text for a cue\n- Me too!";
let cue = text.to_cue().unwrap();
assert_eq!(cue.text, "I'm text for a cue\nMe too!");

Development

Running the tests

cargo test

Docs

Opens local docsite for library and dependencies. Displays useful usage information

cargo docs --open

Style test

Checks if the best practices and the right coding style has been used.

cargo clippy

and

cargo fmt

Deployment

Add additional notes to deploy this on a live system

Built With

Versioning

We use Semantic Versioning for versioning. For the versions available, see the tags on this repository.

Authors

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE file for details

Acknowledgments

  • Billie Thompson - Provided README Template - PurpleBooth

Dependencies

~2.2–3MB
~54K SLoC