Spaces:
Runtime error
Runtime error
File size: 271 Bytes
b9354c2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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 |