Public Access
Add resilient Azure offline transcription backlog
PR and Push Build/Test / build-and-test (push) Successful in 18m41s
PR and Push Build/Test / build-and-test (push) Successful in 18m41s
This commit is contained in:
@@ -1,3 +1,16 @@
|
||||
namespace MeetingAssistant.Transcription;
|
||||
|
||||
public sealed record TranscriptionSegment(TimeSpan Start, TimeSpan End, string Speaker, string Text);
|
||||
public sealed record TranscriptionSegment(
|
||||
TimeSpan Start,
|
||||
TimeSpan End,
|
||||
string Speaker,
|
||||
string Text,
|
||||
TranscriptionSegmentKind Kind = TranscriptionSegmentKind.Speech,
|
||||
string? MarkerId = null,
|
||||
string? ReplacesMarkerId = null);
|
||||
|
||||
public enum TranscriptionSegmentKind
|
||||
{
|
||||
Speech,
|
||||
Marker
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user