#v2 - Inicia testes da v2
- Adiciona rastreamento de objetos - Facial detection - Legenda interativa - Cortes mais precisos - Refinamento do Prompt
This commit is contained in:
14
main.py
14
main.py
@@ -1,3 +1,17 @@
|
||||
import os
|
||||
import warnings
|
||||
|
||||
# Suppress FFmpeg/AV1 warnings for cleaner logs
|
||||
os.environ['OPENCV_FFMPEG_CAPTURE_OPTIONS'] = 'loglevel;quiet'
|
||||
os.environ['OPENCV_LOG_LEVEL'] = 'ERROR'
|
||||
|
||||
# Suppress MoviePy verbose logging
|
||||
os.environ['PYGAME_HIDE_SUPPORT_PROMPT'] = '1'
|
||||
|
||||
# Filter deprecation warnings
|
||||
warnings.filterwarnings('ignore', category=DeprecationWarning)
|
||||
warnings.filterwarnings('ignore', category=UserWarning, module='moviepy')
|
||||
|
||||
from video_render.config import load_settings
|
||||
from video_render.logging_utils import setup_logging
|
||||
from video_render.messaging import RabbitMQWorker
|
||||
|
||||
Reference in New Issue
Block a user