Skip to content

Commit

Permalink
Merge pull request #2345 from cerushdope/patch-1
Browse files Browse the repository at this point in the history
Update config.py check() to log correct binary name
  • Loading branch information
OsaAjani authored Jan 26, 2025
2 parents 52329a1 + 9009cbc commit 5810a64
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions moviepy/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ def check():
print(f"MoviePy: can't find or access ffmpeg in '{FFMPEG_BINARY}'.")

if try_cmd([FFPLAY_BINARY])[0]:
print(f"MoviePy: ffmpeg successfully found in '{FFPLAY_BINARY}'.")
print(f"MoviePy: ffplay successfully found in '{FFPLAY_BINARY}'.")
else: # pragma: no cover
print(f"MoviePy: can't find or access ffmpeg in '{FFPLAY_BINARY}'.")
print(f"MoviePy: can't find or access ffplay in '{FFPLAY_BINARY}'.")

if DOTENV:
print(f"\n.env file content at {DOTENV}:\n")
Expand Down

0 comments on commit 5810a64

Please sign in to comment.