This commit is contained in:
nose
2025-12-17 17:42:46 -08:00
parent d2e7385280
commit 76691dbbf5
9 changed files with 762 additions and 119 deletions

View File

@@ -474,6 +474,10 @@ def get_ipc_pipe_path() -> str:
Returns:
Path to IPC pipe (Windows) or socket (Linux/macOS)
"""
override = os.environ.get("MEDEIA_MPV_IPC") or os.environ.get("MPV_IPC_SERVER")
if override:
return str(override)
system = platform.system()
if system == "Windows":