Skip to content

Commit 3f15bb8

Browse files
committed
ref ggerganov#10 : add "step" argument for "stream" example
Controls how often we run the inference. By default, we run it every 3 seconds.
1 parent 7787b87 commit 3f15bb8

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

stream.cpp

+7-2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ std::string to_timestamp(int64_t t) {
3636
struct whisper_params {
3737
int32_t seed = -1; // RNG seed, not used currently
3838
int32_t n_threads = std::min(4, (int32_t) std::thread::hardware_concurrency());
39+
int32_t step_ms = 3000;
3940

4041
bool verbose = false;
4142
bool translate = false;
@@ -57,6 +58,8 @@ bool whisper_params_parse(int argc, char ** argv, whisper_params & params) {
5758
params.seed = std::stoi(argv[++i]);
5859
} else if (arg == "-t" || arg == "--threads") {
5960
params.n_threads = std::stoi(argv[++i]);
61+
} else if (arg == "--step") {
62+
params.step_ms = std::stoi(argv[++i]);
6063
} else if (arg == "-v" || arg == "--verbose") {
6164
params.verbose = true;
6265
} else if (arg == "--translate") {
@@ -97,6 +100,7 @@ void whisper_print_usage(int argc, char ** argv, const whisper_params & params)
97100
fprintf(stderr, " -h, --help show this help message and exit\n");
98101
fprintf(stderr, " -s SEED, --seed SEED RNG seed (default: -1)\n");
99102
fprintf(stderr, " -t N, --threads N number of threads to use during computation (default: %d)\n", params.n_threads);
103+
fprintf(stderr, " --step N audio step size in milliseconds (default: %d)\n", params.step_ms);
100104
fprintf(stderr, " -v, --verbose verbose output\n");
101105
fprintf(stderr, " --translate translate from source language to english\n");
102106
fprintf(stderr, " -ps, --print_special print special tokens\n");
@@ -197,6 +201,7 @@ int main(int argc, char ** argv) {
197201

198202
struct whisper_context * ctx = whisper_init(params.model.c_str());
199203

204+
const int n_samples = (params.step_ms/1000.0)*WHISPER_SAMPLE_RATE;
200205
const int n_samples_30s = 30*WHISPER_SAMPLE_RATE;
201206
std::vector<float> pcmf32(n_samples_30s, 0.0f);
202207
std::vector<float> pcmf32_old;
@@ -212,7 +217,7 @@ int main(int argc, char ** argv) {
212217
}
213218
}
214219
printf("%s: processing %d samples (%.1f sec), %d threads, lang = %s, task = %s, timestamps = %d ...\n",
215-
__func__, int(pcmf32.size()), float(pcmf32.size())/WHISPER_SAMPLE_RATE, params.n_threads,
220+
__func__, n_samples, float(n_samples)/WHISPER_SAMPLE_RATE, params.n_threads,
216221
params.language.c_str(),
217222
params.translate ? "translate" : "transcribe",
218223
params.no_timestamps ? 0 : 1);
@@ -238,7 +243,7 @@ int main(int argc, char ** argv) {
238243
}
239244

240245
// process 3 seconds of new audio
241-
while (SDL_GetQueuedAudioSize(g_dev_id_in) < 3*WHISPER_SAMPLE_RATE*sizeof(float)) {
246+
while (SDL_GetQueuedAudioSize(g_dev_id_in) < n_samples*sizeof(float)) {
242247
SDL_Delay(1);
243248
}
244249
const int n_samples_new = SDL_GetQueuedAudioSize(g_dev_id_in)/sizeof(float);

0 commit comments

Comments
 (0)