Add 'api/' from commit '14ac229098e65aa643f84e8e17e0c5f1aaf8d639'

git-subtree-dir: api
git-subtree-mainline: 4743f19aef
git-subtree-split: 14ac229098
This commit is contained in:
Alireza Vaezi
2025-08-07 20:57:34 -04:00
146 changed files with 31249 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
"""
Video Infrastructure Layer.
Contains implementations of domain interfaces using external dependencies
like file systems, FFmpeg, OpenCV, etc.
"""
from .repositories import FileSystemVideoRepository
from .converters import FFmpegVideoConverter
from .metadata_extractors import OpenCVMetadataExtractor
from .caching import InMemoryStreamingCache
__all__ = [
"FileSystemVideoRepository",
"FFmpegVideoConverter",
"OpenCVMetadataExtractor",
"InMemoryStreamingCache",
]