Files
stream-shorts/src/StreamShorts.Library/Transcription/ITranscriber.cs
T

12 lines
248 B
C#
Raw Normal View History

namespace StreamShorts.Library.Transcription;
public interface ITranscriber
{
IAsyncEnumerable<TranscriptionSegment> TranscribeAsync(Stream audio);
}
public record TranscriptionSegment(
TimeSpan StartTime,
TimeSpan EndTime,
string Text
);