LongVU / longvu /file_io.py
Vision-CAIR's picture
Upload 39 files
85efb5b verified
raw
history blame
321 Bytes
# Copyright (c) Meta Platforms, Inc. and its affiliates.
# (c) Meta Platforms, Inc. and affiliates. Confidential and proprietary.
from iopath.common.file_io import HTTPURLHandler, PathManager as PathManagerBase
__all__ = ["PathManager"]
PathManager = PathManagerBase()
PathManager.register_handler(HTTPURLHandler())