File size: 269 Bytes
f1ef7e2
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
class TranscriptSpeakerAligner:
    def __init__(self):
        pass

    def align(self, diarization_turns: list, transcription_words: list):
        # Aligns word boundaries with speaker diarization turns
        aligned_segments = []
        return aligned_segments