We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6dbde2c commit a7016ffCopy full SHA for a7016ff
1 file changed
mediapy/__init__.py
@@ -104,7 +104,7 @@
104
from __future__ import annotations
105
106
__docformat__ = 'google'
107
-__version__ = '1.2.5'
+__version__ = '1.2.6'
108
__version_info__ = tuple(int(num) for num in __version__.split('.'))
109
110
import base64
@@ -1233,7 +1233,9 @@ def _run_ffmpeg(
1233
The subprocess.Popen object with running ffmpeg process.
1234
"""
1235
argv = []
1236
- env: Any = {}
+ # In open source, keep env=None to preserve default behavior.
1237
+ # Context: https://github.com/google/mediapy/pull/62
1238
+ env: Any = None # pylint: disable=unused-variable
1239
ffmpeg_path = _get_ffmpeg_path()
1240
1241
# Allowed input and output files are not supported in open source.
0 commit comments