diff options
Diffstat (limited to 'common/src/jhls.rs')
-rw-r--r-- | common/src/jhls.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/common/src/jhls.rs b/common/src/jhls.rs index b365b3f..f4448b6 100644 --- a/common/src/jhls.rs +++ b/common/src/jhls.rs @@ -31,3 +31,10 @@ pub enum EncodingProfile { codec: String, }, } + +#[derive(Debug, Serialize, Deserialize)] +pub struct SubtitleCue { + pub start: f64, + pub end: f64, + pub content: String, +} |