6 lines
156 B
Python
6 lines
156 B
Python
class Transcriber:
|
|
def __init__(self):
|
|
pass
|
|
|
|
def execute(self, audio_file):
|
|
print("Transcribing audio file: " + audio_file.pathname) |