Files
clei-flow/app/core/flow.py
2026-02-08 23:07:50 +00:00

16 lines
421 B
Python
Executable File

from .renamer import RenamerCore
from .ffmpeg_engine import FFmpegCore
from .bot import BotCore
class CleiFlow:
"""
Gerencia o ciclo de vida do arquivo.
Modos: Manual, Híbrido, Automático.
"""
def start_pipeline(self, file_path):
# 1. Identificar
# 2. Se ambíguo -> Chamar Bot.ask_for_decision() -> Pausar Thread
# 3. Converter (FFmpegCore)
# 4. Mover
pass