Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions mediapy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
from __future__ import annotations

__docformat__ = 'google'
__version__ = '1.2.5'
__version__ = '1.2.6'
__version_info__ = tuple(int(num) for num in __version__.split('.'))

import base64
Expand Down Expand Up @@ -1233,7 +1233,9 @@ def _run_ffmpeg(
The subprocess.Popen object with running ffmpeg process.
"""
argv = []
env: Any = {}
# In open source, keep env=None to preserve default behavior.
# Context: https://github.com/google/mediapy/pull/62
env: Any = None # pylint: disable=unused-variable
ffmpeg_path = _get_ffmpeg_path()

# Allowed input and output files are not supported in open source.
Expand Down
Loading