submaster/whisper_project/cli/srt_to_kokoro.py

20 lines
460 B
Python

"""CLI wrapper: srt_to_kokoro
Thin wrapper that delegates to the legacy
`whisper_project.srt_to_kokoro` script. Placed under
`whisper_project.cli` for a clearer layout.
"""
from whisper_project.srt_to_kokoro import main as _legacy_main
from whisper_project.logging_config import configure_logging
def main():
# configurar logging con nivel INFO por defecto
configure_logging(False)
return _legacy_main()
if __name__ == "__main__":
main()