RamAnanth1's picture
Upload with huggingface_hub
b9354c2
raw
history blame contribute delete
271 Bytes
from abc import ABC, abstractmethod
class Interpreter(ABC):
"""
An interpreter make some audio operations to transcribe or translate
the video content.
"""
@abstractmethod
def transcribe(self):
pass
@abstractmethod
def translate(self):
pass