DeepSpeech/native_client/dotnet/DeepSpeechClient/Models/MetadataItem.cs
2019-04-24 20:12:39 +02:00

21 lines
573 B
C#

namespace DeepSpeechClient.Models
{
/// <summary>
/// Stores each individual character, along with its timing information.
/// </summary>
public class MetadataItem
{
/// <summary>
/// Char of the current timestep.
/// </summary>
public string Character;
/// <summary>
/// Position of the character in units of 20ms.
/// </summary>
public int Timestep;
/// <summary>
/// Position of the character in seconds.
/// </summary>
public float StartTime;
}
}