Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
faroit committed May 13, 2024
1 parent b830efc commit 234c6f5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions stempeg/cmds.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,14 @@ def ffprobe_exists():

def mp4box_exists():
global MP4BOX_PATH
print(MP4BOX_PATH)

if "MP4BOX_PATH" in os.environ:
env_path = os.environ["MP4BOX_PATH"]
MP4BOX_PATH = find_cmd(env_path)
else:
MP4BOX_PATH = find_cmd("MP4Box")
print(MP4BOX_PATH)

return MP4BOX_PATH is not None

Expand Down

0 comments on commit 234c6f5

Please sign in to comment.