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
2 changes: 1 addition & 1 deletion src/torchcodec/_core/ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def load_torchcodec_shared_libraries() -> tuple[int, str]:
if ffmpeg_path := shutil.which("ffmpeg"):

def expose_ffmpeg_dlls(): # noqa: F811
ffmpeg_dir = Path(ffmpeg_path).parent
ffmpeg_dir = Path(ffmpeg_path).parent.absolute()
return os.add_dll_directory(str(ffmpeg_dir)) # that's the actual CM


Expand Down
Loading