2025-07-27 23:33:45 -05:00
|
|
|
namespace StreamShorts.Library.Transcription;
|
|
|
|
|
|
|
|
|
|
public interface ITranscriber
|
|
|
|
|
{
|
|
|
|
|
IAsyncEnumerable<TranscriptionSegment> TranscribeAsync(Stream audio);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public record TranscriptionSegment(
|
|
|
|
|
TimeSpan StartTime,
|
|
|
|
|
TimeSpan EndTime,
|
|
|
|
|
string Text
|
|
|
|
|
);
|