mirror of
https://github.com/Paillat-dev/viralfactory.git
synced 2026-01-02 09:16:19 +00:00
11 lines
227 B
Python
11 lines
227 B
Python
|
|
from abc import ABC, abstractmethod
|
||
|
|
from ..BaseEngine import BaseEngine
|
||
|
|
|
||
|
|
from moviepy.editor import VideoClip
|
||
|
|
|
||
|
|
|
||
|
|
class BaseBackgroundEngine(BaseEngine):
|
||
|
|
@abstractmethod
|
||
|
|
def get_background(self) -> VideoClip:
|
||
|
|
...
|