Add background engine classes

This commit is contained in:
2024-02-20 14:54:49 +01:00
parent 3ca3732102
commit 6338f016d2
3 changed files with 91 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
from abc import ABC, abstractmethod
from ..BaseEngine import BaseEngine
from moviepy.editor import VideoClip
class BaseBackgroundEngine(BaseEngine):
@abstractmethod
def get_background(self) -> VideoClip:
...