1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
//! Web Video Text Tracks (WebVTT) subtitle format implementation.
//!
//! This module exposes the [`VttFormat`] adapter that implements the
//! [`SubtitleFormat`] trait. The actual logic is split across:
//!
//! - `parser`: parsing logic and the malformed-input disposition matrix
//! - `serializer`: serialization logic
//! - `time`: WebVTT timestamp parsing and formatting helpers
//!
//! # Examples
//!
//! ```rust
//! use subx_cli::core::formats::{SubtitleFormat, vtt::VttFormat};
//! let vtt = VttFormat;
//! let content = "WEBVTT\n\n00:00:01.000 --> 00:00:03.000\nHello";
//! let subtitle = vtt.parse(content).unwrap();
//! ```
use crateResult;
use crate;
/// Subtitle format implementation for WebVTT.
///
/// The `VttFormat` struct implements parsing, serialization, and
/// detection for WebVTT files. See the `parser` module documentation
/// for the malformed-input disposition matrix observed by
/// [`VttFormat::parse`].
;