11 lines
319 B
Python
11 lines
319 B
Python
"""Deprecated implementation module.
|
|
|
|
All functionality has been moved into adapter classes under
|
|
`whisper_project.infra`. Importing this module will raise an
|
|
ImportError to encourage use of the adapter APIs.
|
|
"""
|
|
|
|
raise ImportError(
|
|
"process_video_impl has been removed: use whisper_project.infra.ffmpeg_adapter"
|
|
)
|