diff options
Diffstat (limited to 'transcoder/src')
-rw-r--r-- | transcoder/src/fragment.rs | 6 | ||||
-rw-r--r-- | transcoder/src/subtitles.rs | 2 |
2 files changed, 5 insertions, 3 deletions
diff --git a/transcoder/src/fragment.rs b/transcoder/src/fragment.rs index 4b72eaf..8822fa2 100644 --- a/transcoder/src/fragment.rs +++ b/transcoder/src/fragment.rs @@ -5,8 +5,10 @@ */ use crate::LOCAL_VIDEO_TRANSCODING_TASKS; -use jellybase::cache::{async_cache_file, CachePath}; -use jellycommon::jhls::EncodingProfile; +use jellybase::{ + cache::{async_cache_file, CachePath}, + common::jhls::EncodingProfile, +}; use log::{debug, info}; use std::process::Stdio; use tokio::{ diff --git a/transcoder/src/subtitles.rs b/transcoder/src/subtitles.rs index d7e7b29..77b423d 100644 --- a/transcoder/src/subtitles.rs +++ b/transcoder/src/subtitles.rs @@ -4,7 +4,7 @@ Copyright (C) 2025 metamuffin <metamuffin.org> */ use anyhow::{anyhow, bail, Context}; -use jellycommon::jhls::SubtitleCue; +use jellybase::common::jhls::SubtitleCue; use std::fmt::Write; pub fn parse_subtitles( |