\r
https://user-images.githubusercontent.com/1991296/194935793-76afede7-cfa8-48d8-a80f-28ba83be7d09.mp4\r
\r
-## Slidingwindow mode\r
+## Sliding window mode with VAD\r
\r
Setting the `--step` argument to `0` enables the sliding window mode:\r
\r
const int n_new_line = params.length_ms / params.step_ms - 1; // number of steps to print new line
- const bool use_vad = n_samples_step <= 0;
+ const bool use_vad = n_samples_step <= 0; // sliding window mode uses VAD
params.no_timestamps = !use_vad;
params.no_context = use_vad;