diff options
Diffstat (limited to 'transcoder')
-rw-r--r-- | transcoder/Cargo.toml | 1 | ||||
-rw-r--r-- | transcoder/src/fragment.rs | 6 | ||||
-rw-r--r-- | transcoder/src/subtitles.rs | 2 |
3 files changed, 5 insertions, 4 deletions
diff --git a/transcoder/Cargo.toml b/transcoder/Cargo.toml index f1e5062..d0ddf9c 100644 --- a/transcoder/Cargo.toml +++ b/transcoder/Cargo.toml @@ -4,7 +4,6 @@ version = "0.1.0" edition = "2021" [dependencies] -jellycommon = { path = "../common" } jellybase = { path = "../base" } jellyremuxer = { path = "../remuxer" } log = { workspace = true } 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( |