Skip to content

Commit

Permalink
File reading IO refactoring into backends (#1421)
Browse files Browse the repository at this point in the history
* File reading IO refactoring into backends

* Fixes

* fix for older python version
  • Loading branch information
pzelasko authored Nov 26, 2024
1 parent e955f29 commit b8fcd3a
Show file tree
Hide file tree
Showing 3 changed files with 325 additions and 61 deletions.
11 changes: 10 additions & 1 deletion lhotse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,16 @@
from .lazy import dill_enabled, is_dill_enabled, set_dill_enabled
from .manipulation import combine, split_parallelize_combine, to_manifest
from .qa import fix_manifests, validate, validate_recordings_and_supervisions
from .serialization import load_manifest, load_manifest_lazy, store_manifest
from .serialization import (
available_io_backends,
get_current_io_backend,
get_default_io_backend,
io_backend,
load_manifest,
load_manifest_lazy,
set_current_io_backend,
store_manifest,
)
from .supervision import SupervisionSegment, SupervisionSet
from .tools.env import add_tools_to_path as _add_tools_to_path
from .utils import (
Expand Down
Loading

0 comments on commit b8fcd3a

Please sign in to comment.