mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-08-11 21:12:11 +00:00
17 lines
488 B
C#
17 lines
488 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 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,
|
|
} |