Spaces:
Runtime error
Runtime error
from abc import ABC, abstractmethod | |
class Interpreter(ABC): | |
""" | |
An interpreter make some audio operations to transcribe or translate | |
the video content. | |
""" | |
def transcribe(self): | |
pass | |
def translate(self): | |
pass |