diff options
Diffstat (limited to 'stream/src/webvtt.rs')
-rw-r--r-- | stream/src/webvtt.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/stream/src/webvtt.rs b/stream/src/webvtt.rs index 02a4181..f78ac2f 100644 --- a/stream/src/webvtt.rs +++ b/stream/src/webvtt.rs @@ -4,8 +4,11 @@ Copyright (C) 2025 metamuffin <metamuffin.org> */ use anyhow::{anyhow, Context, Result}; -use jellybase::{cache::async_cache_memory, CONF}; -use jellycommon::{stream::StreamSpec, LocalTrack, Node}; +use jellybase::{ + cache::async_cache_memory, + common::{stream::StreamSpec, LocalTrack, Node}, + CONF, +}; use jellyremuxer::extract::extract_track; use jellytranscoder::subtitles::{parse_subtitles, write_webvtt}; use std::sync::Arc; |