mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 19:32:10 +00:00
23 lines
692 B
C#
23 lines
692 B
C#
namespace AIStudio.Tools.Services;
|
|
|
|
/// <summary>Visible phases of the serialized media import lane.</summary>
|
|
public enum MediaTranscriptionPhase
|
|
{
|
|
/// <summary>No import is active.</summary>
|
|
IDLE,
|
|
|
|
/// <summary>The operation is waiting for the serialized runtime lane.</summary>
|
|
QUEUED,
|
|
|
|
/// <summary>The runtime is inspecting the input.</summary>
|
|
PROBING,
|
|
|
|
/// <summary>The runtime is preparing normalized audio.</summary>
|
|
TRANSCODING,
|
|
|
|
/// <summary>The normalized audio is being transcribed by the provider.</summary>
|
|
UPLOADING,
|
|
|
|
/// <summary>Cancellation was requested and runtime cleanup is in progress.</summary>
|
|
CANCELING,
|
|
} |