From 6c408c0315854b2d55f3c56b23ecfd51fb85e41d Mon Sep 17 00:00:00 2001 From: deepbeepmeep Date: Thu, 7 Aug 2025 12:05:46 +0200 Subject: [PATCH] updated import --- preprocessing/matanyone/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preprocessing/matanyone/app.py b/preprocessing/matanyone/app.py index 67813ee..0c8a44c 100644 --- a/preprocessing/matanyone/app.py +++ b/preprocessing/matanyone/app.py @@ -535,7 +535,7 @@ def video_matting(video_state,video_input, end_slider, matting_type, interactive file_name= video_state["video_name"] file_name = ".".join(file_name.split(".")[:-1]) - from wan.utils.utils import extract_audio_tracks, combine_video_with_audio_tracks, cleanup_temp_audio_files + from shared.utils.utils import extract_audio_tracks, combine_video_with_audio_tracks, cleanup_temp_audio_files source_audio_tracks, audio_metadata = extract_audio_tracks(video_input) output_fg_path = f"./mask_outputs/{file_name}_fg.mp4" output_fg_temp_path = f"./mask_outputs/{file_name}_fg_tmp.mp4"