File size: 413 Bytes
6f03d40 |
1 2 3 4 5 6 7 8 9 10 11 12 |
class SaverCSV:
def __init__(self):
pass
'''
Сохраняет файл на постоянно и сохраняет для него транскрипцию
'''
def save_with_transcribe(self, audio_data, transcribe_data):
# save file (local or in IPFS)
# add trinscribe + link to file (for example file path or file hash for 16000 rate)
pass |