From 197fe76f7a887371dd42689393280f00bbca0cd9 Mon Sep 17 00:00:00 2001 From: CodeName393 Date: Wed, 31 Dec 2025 19:27:10 +0900 Subject: [PATCH] Replace ffmpeg string with FFMPEG variable --- unshackle/core/tracks/hybrid.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unshackle/core/tracks/hybrid.py b/unshackle/core/tracks/hybrid.py index f6631fb..7e7936b 100644 --- a/unshackle/core/tracks/hybrid.py +++ b/unshackle/core/tracks/hybrid.py @@ -8,7 +8,7 @@ from pathlib import Path from rich.padding import Padding from rich.rule import Rule -from unshackle.core.binaries import DoviTool, HDR10PlusTool +from unshackle.core.binaries import FFMPEG, DoviTool, HDR10PlusTool from unshackle.core.config import config from unshackle.core.console import console @@ -109,7 +109,7 @@ class Hybrid: """Simple ffmpeg execution without progress tracking""" p = subprocess.run( [ - "ffmpeg", + str(FFMPEG), "-nostdin", "-i", str(save_path),