From 73dcb4ff77adc24a83764d002d01e0ba93bc75b7 Mon Sep 17 00:00:00 2001 From: anthonyjclark Date: Mon, 26 Jan 2026 14:21:02 -0800 Subject: [PATCH] Removed `env` from `_run_ffmpeg` --- mediapy/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/mediapy/__init__.py b/mediapy/__init__.py index b0ffe94..ded5cc5 100644 --- a/mediapy/__init__.py +++ b/mediapy/__init__.py @@ -1233,7 +1233,6 @@ def _run_ffmpeg( The subprocess.Popen object with running ffmpeg process. """ argv = [] - env: Any = {} ffmpeg_path = _get_ffmpeg_path() # Allowed input and output files are not supported in open source. @@ -1249,7 +1248,6 @@ def _run_ffmpeg( stdout=stdout, stderr=stderr, encoding=encoding, - env=env, )