bump v0.0.5

This commit is contained in:
Roy Shilkrot 2023-10-19 22:55:52 -04:00
parent 5caf95ebc3
commit 3ebef8503a
2 changed files with 4 additions and 4 deletions

View File

@ -45,7 +45,7 @@
}
},
"name": "obs-localvocal",
"version": "0.0.4",
"version": "0.0.5",
"author": "Roy Shilkrot",
"website": "https://github.com/obs-ai/obs-localvocal",
"email": "roy.shil@gmail.com",

View File

@ -216,7 +216,7 @@ void set_text_callback(struct transcription_filter_data *gf, const DetectionResu
if (gf->caption_to_stream) {
obs_output_t *streaming_output = obs_frontend_get_streaming_output();
if (streaming_output) {
obs_output_output_caption_text1(streaming_output, result.text.c_str());
obs_output_output_caption_text1(streaming_output, str_copy.c_str());
obs_output_release(streaming_output);
}
}
@ -231,7 +231,7 @@ void set_text_callback(struct transcription_filter_data *gf, const DetectionResu
// Write raw sentence to file, do not append
std::ofstream output_file(gf->output_file_path,
std::ios::out | std::ios::trunc);
output_file << result.text << std::endl;
output_file << str_copy << std::endl;
output_file.close();
} else {
obs_log(gf->log_level, "Saving sentence to file %s, sentence #%d",
@ -260,7 +260,7 @@ void set_text_callback(struct transcription_filter_data *gf, const DetectionResu
format_ts_for_srt(result.end_timestamp_ms);
output_file << std::endl;
output_file << result.text << std::endl;
output_file << str_copy << std::endl;
output_file << std::endl;
output_file.close();
gf->sentence_number++;