16 lines
421 B
Python
Executable File
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
|