mirror of
https://github.com/snakers4/silero-vad.git
synced 2026-02-04 09:29:22 +08:00
21 lines
522 B
C#
21 lines
522 B
C#
namespace VadDotNet;
|
|
|
|
public class SileroSpeechSegment
|
|
{
|
|
public int? StartOffset { get; set; }
|
|
public int? EndOffset { get; set; }
|
|
public float? StartSecond { get; set; }
|
|
public float? EndSecond { get; set; }
|
|
|
|
public SileroSpeechSegment()
|
|
{
|
|
}
|
|
|
|
public SileroSpeechSegment(int startOffset, int? endOffset, float? startSecond, float? endSecond)
|
|
{
|
|
StartOffset = startOffset;
|
|
EndOffset = endOffset;
|
|
StartSecond = startSecond;
|
|
EndSecond = endSecond;
|
|
}
|
|
} |