Files
tpro/transcript_processing/converters/__init__.py

12 lines
332 B
Python

from .amazon import AmazonConverter
from .speechmatics import SpeechmaticsConverter
from .gentle import GentleConverter
from .google import GoogleConverter
services = {
'amazon': AmazonConverter,
'gentle': GentleConverter,
'speechmatics': SpeechmaticsConverter,
'google': GoogleConverter,
}