parser.add_argument("--sample-rate",type=int,help="Must match SideKit SR model",default=16000)
parser.add_argument("--vad",default=False,action='store_true',help="Apply vad before extracting the x-vector")
parser.add_argument("--vad-num-samples-per-window",type=int,default=2000,help="Number of samples in each window, (2000 -> 125ms) per window. Check https://github.com/snakers4/silero-vad for more info")
parser.add_argument("--vad-min-silence-samples",type=int,default=1500,help="Minimum silence duration in samples between to separate speech chunks, (1500). Check https://github.com/snakers4/silero-vad for more info")