10 lines
205 B
Python
10 lines
205 B
Python
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
class BaseVideoGen:
|
|
def generate(self, image_path: str, prompt: dict, output_path: str | Path) -> str:
|
|
raise NotImplementedError
|
|
|