mirror of
https://github.com/Paillat-dev/viralfactory.git
synced 2026-01-02 17:24:54 +00:00
11 lines
229 B
Python
11 lines
229 B
Python
|
|
from abc import ABC, abstractmethod
|
||
|
|
from ..BaseEngine import BaseEngine
|
||
|
|
|
||
|
|
from moviepy.editor import TextClip
|
||
|
|
|
||
|
|
|
||
|
|
class BaseCaptioningEngine(BaseEngine):
|
||
|
|
@abstractmethod
|
||
|
|
def get_captions(self) -> list[TextClip]:
|
||
|
|
...
|