aboutsummaryrefslogtreecommitdiff
path: root/import/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'import/src/lib.rs')
-rw-r--r--import/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/import/src/lib.rs b/import/src/lib.rs
index 0c0e235..e8c9708 100644
--- a/import/src/lib.rs
+++ b/import/src/lib.rs
@@ -26,7 +26,7 @@ use jellycommon::{
NodePublic, PeopleGroup, Rating, SourceTrack, TrackSource,
};
use jellymatroska::read::EbmlReader;
-use jellyremuxer::import::import_metadata;
+use jellyremuxer::metadata::import_metadata;
use log::{debug, info, warn};
use regex::Regex;
use std::{
@@ -456,7 +456,7 @@ async fn process_source(
let metadata = {
let abspath = abspath.clone();
spawn_blocking(move || {
- cache_memory(&["mkv-probe", abspath.to_str().unwrap()], || {
+ cache_memory(&["probe", abspath.to_str().unwrap()], || {
let input = File::open(&abspath).context("opening media file")?;
let mut input = EbmlReader::new(BufReader::new(input));
import_metadata(&mut input)