开源C++智能语音识别库whisper.cpp开发使用入门

whisper.cpp是一个C++编写的轻量级开源智能语音识别库,是基于openai的开源python智能语音模型whisper的移植版本,依赖项少,内存占用低,性能更优,方便作为依赖库集成的到应用程序中提供语音识别功能。

以下基于whisper.cpp的源码利用C++ api来开发实例demo演示读取本地音频文件并转成文字。

项目结构

whispercpp_starter- whisper.cpp-v1.5.0- src|- main.cpp- CMakeLists.txt

CMakeLists.txt

cmake_minimum_required(VERSION 3.15)# this only works for unix, xapian source code not support compile in windows yetproject(whispercpp_starter)set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)add_subdirectory(whisper.cpp-v1.5.0)include_directories(${CMAKE_CURRENT_SOURCE_DIR}/whisper.cpp-v1.5.0${CMAKE_CURRENT_SOURCE_DIR}/whisper.cpp-v1.5.0/examples
)file(GLOB SRCsrc/*.hsrc/*.cpp
)add_executable(${PROJECT_NAME} ${SRC})target_link_libraries(${PROJECT_NAME}commonwhisper # remember to copy dll or so to bin folder
)

main.cpp

#include <cmath>
#include <fstream>
#include <cstdio>
#include <string>
#include <thread>
#include <vector>
#include <cstring>#include "common.h"
#include "whisper.h"#if defined(_MSC_VER)
#pragma warning(disable: 4244 4267) // possible loss of data
#endif// Terminal color map. 10 colors grouped in ranges [0.0, 0.1, ..., 0.9]
// Lowest is red, middle is yellow, highest is green.
const std::vector<std::string> k_colors = {"\033[38;5;196m", "\033[38;5;202m", "\033[38;5;208m", "\033[38;5;214m", "\033[38;5;220m","\033[38;5;226m", "\033[38;5;190m", "\033[38;5;154m", "\033[38;5;118m", "\033[38;5;82m",
};//  500 -> 00:05.000
// 6000 -> 01:00.000
std::string to_timestamp(int64_t t, bool comma = false)
{int64_t msec = t * 10;int64_t hr = msec / (1000 * 60 * 60);msec = msec - hr * (1000 * 60 * 60);int64_t min = msec / (1000 * 60);msec = msec - min * (1000 * 60);int64_t sec = msec / 1000;msec = msec - sec * 1000;char buf[32];snprintf(buf, sizeof(buf), "%02d:%02d:%02d%s%03d", (int)hr, (int)min, (int)sec, comma ? "," : ".", (int)msec);return std::string(buf);
}int timestamp_to_sample(int64_t t, int n_samples)
{return std::max(0, std::min((int)n_samples - 1, (int)((t * WHISPER_SAMPLE_RATE) / 100)));
}// helper function to replace substrings
void replace_all(std::string& s, const std::string& search, const std::string& replace)
{for (size_t pos = 0; ; pos += replace.length()){pos = s.find(search, pos);if (pos == std::string::npos) break;s.erase(pos, search.length());s.insert(pos, replace);}
}// command-line parameters
struct whisper_params
{int32_t n_threads = std::min(4, (int32_t)std::thread::hardware_concurrency());int32_t n_processors = 1;int32_t offset_t_ms = 0;int32_t offset_n = 0;int32_t duration_ms = 0;int32_t progress_step = 5;int32_t max_context = -1;int32_t max_len = 0;int32_t best_of = whisper_full_default_params(WHISPER_SAMPLING_GREEDY).greedy.best_of;int32_t beam_size = whisper_full_default_params(WHISPER_SAMPLING_BEAM_SEARCH).beam_search.beam_size;float word_thold = 0.01f;float entropy_thold = 2.40f;float logprob_thold = -1.00f;bool speed_up = false;bool debug_mode = false;bool translate = false;bool detect_language = false;bool diarize = false;bool tinydiarize = false;bool split_on_word = false;bool no_fallback = false;bool output_txt = false;bool output_vtt = false;bool output_srt = false;bool output_wts = false;bool output_csv = false;bool output_jsn = false;bool output_jsn_full = false;bool output_lrc = false;bool print_special = false;bool print_colors = false;bool print_progress = false;bool no_timestamps = false;bool log_score = false;bool use_gpu = true;std::string language = "en";std::string prompt;std::string font_path = "/System/Library/Fonts/Supplemental/Courier New Bold.ttf";std::string model = "models/ggml-base.en.bin";// [TDRZ] speaker turn stringstd::string tdrz_speaker_turn = " [SPEAKER_TURN]"; // TODO: set from command linestd::string openvino_encode_device = "CPU";std::vector<std::string> fname_inp = {};std::vector<std::string> fname_out = {};
};struct whisper_print_user_data
{const whisper_params* params;const std::vector<std::vector<float>>* pcmf32s;int progress_prev;
};std::string estimate_diarization_speaker(std::vector<std::vector<float>> pcmf32s, int64_t t0, int64_t t1, bool id_only = false)
{std::string speaker = "";const int64_t n_samples = pcmf32s[0].size();const int64_t is0 = timestamp_to_sample(t0, n_samples);const int64_t is1 = timestamp_to_sample(t1, n_samples);double energy0 = 0.0f;double energy1 = 0.0f;for (int64_t j = is0; j < is1; j++){energy0 += fabs(pcmf32s[0][j]);energy1 += fabs(pcmf32s[1][j]);}if (energy0 > 1.1 * energy1){speaker = "0";}else if (energy1 > 1.1 * energy0){speaker = "1";}else{speaker = "?";}//printf("is0 = %lld, is1 = %lld, energy0 = %f, energy1 = %f, speaker = %s\n", is0, is1, energy0, energy1, speaker.c_str());if (!id_only){speaker.insert(0, "(speaker ");speaker.append(")");}return speaker;
}
void whisper_print_progress_callback(struct whisper_context* /*ctx*/, struct whisper_state* /*state*/, int progress, void* user_data)
{int progress_step = ((whisper_print_user_data*)user_data)->params->progress_step;int* progress_prev = &(((whisper_print_user_data*)user_data)->progress_prev);if (progress >= *progress_prev + progress_step){*progress_prev += progress_step;fprintf(stderr, "%s: progress = %3d%%\n", __func__, progress);}
}void whisper_print_segment_callback(struct whisper_context* ctx, struct whisper_state* /*state*/, int n_new, void* user_data)
{const auto& params = *((whisper_print_user_data*)user_data)->params;const auto& pcmf32s = *((whisper_print_user_data*)user_data)->pcmf32s;const int n_segments = whisper_full_n_segments(ctx);std::string speaker = "";int64_t t0 = 0;int64_t t1 = 0;// print the last n_new segmentsconst int s0 = n_segments - n_new;if (s0 == 0){printf("\n");}for (int i = s0; i < n_segments; i++){if (!params.no_timestamps || params.diarize){t0 = whisper_full_get_segment_t0(ctx, i);t1 = whisper_full_get_segment_t1(ctx, i);}if (!params.no_timestamps){printf("[%s --> %s]  ", to_timestamp(t0).c_str(), to_timestamp(t1).c_str());}if (params.diarize && pcmf32s.size() == 2){speaker = estimate_diarization_speaker(pcmf32s, t0, t1);}if (params.print_colors){for (int j = 0; j < whisper_full_n_tokens(ctx, i); ++j){if (params.print_special == false){const whisper_token id = whisper_full_get_token_id(ctx, i, j);if (id >= whisper_token_eot(ctx)){continue;}}const char* text = whisper_full_get_token_text(ctx, i, j);const float  p = whisper_full_get_token_p(ctx, i, j);const int col = std::max(0, std::min((int)k_colors.size() - 1, (int)(std::pow(p, 3) * float(k_colors.size()))));printf("%s%s%s%s", speaker.c_str(), k_colors[col].c_str(), text, "\033[0m");}}else{const char* text = whisper_full_get_segment_text(ctx, i);printf("%s%s", speaker.c_str(), text);}if (params.tinydiarize){if (whisper_full_get_segment_speaker_turn_next(ctx, i)){printf("%s", params.tdrz_speaker_turn.c_str());}}// with timestamps or speakers: each segment on new lineif (!params.no_timestamps || params.diarize){printf("\n");}fflush(stdout);}
}bool output_txt(struct whisper_context* ctx, const char* fname, const whisper_params& params, std::vector<std::vector<float>> pcmf32s)
{std::ofstream fout(fname);if (!fout.is_open()){fprintf(stderr, "%s: failed to open '%s' for writing\n", __func__, fname);return false;}fprintf(stderr, "%s: saving output to '%s'\n", __func__, fname);const int n_segments = whisper_full_n_segments(ctx);for (int i = 0; i < n_segments; ++i){const char* text = whisper_full_get_segment_text(ctx, i);std::string speaker = "";if (params.diarize && pcmf32s.size() == 2){const int64_t t0 = whisper_full_get_segment_t0(ctx, i);const int64_t t1 = whisper_full_get_segment_t1(ctx, i);speaker = estimate_diarization_speaker(pcmf32s, t0, t1);}fout << speaker << text << "\n";}return true;
}int main(int argc, char** argv)
{const std::string model_file_path = "./ggml-base.en.bin";const std::string audio_file_path = "sample.wav"; // should be wav 16bit format// set whisper paramswhisper_params params;params.model = model_file_path;params.fname_inp.emplace_back(audio_file_path);// whisper initstruct whisper_context_params cparams;cparams.use_gpu = params.use_gpu;struct whisper_context* ctx = whisper_init_from_file_with_params(params.model.c_str(), cparams);if (ctx == nullptr){fprintf(stderr, "error: failed to initialize whisper context\n");return 3;}// initialize openvino encoder. this has no effect on whisper.cpp builds that don't have OpenVINO configuredwhisper_ctx_init_openvino_encoder(ctx, nullptr, params.openvino_encode_device.c_str(), nullptr);for (int f = 0; f < (int)params.fname_inp.size(); ++f){const auto fname_inp = params.fname_inp[f];const auto fname_out = f < (int)params.fname_out.size() && !params.fname_out[f].empty() ? params.fname_out[f] : params.fname_inp[f];std::vector<float> pcmf32;               // mono-channel F32 PCMstd::vector<std::vector<float>> pcmf32s; // stereo-channel F32 PCMif (!read_wav(fname_inp, pcmf32, pcmf32s, params.diarize)){fprintf(stderr, "error: failed to read WAV file '%s'\n", fname_inp.c_str());continue;}// print system information{fprintf(stderr, "\n");fprintf(stderr, "system_info: n_threads = %d / %d | %s\n",params.n_threads * params.n_processors, std::thread::hardware_concurrency(), whisper_print_system_info());}// print some info about the processing{fprintf(stderr, "\n");if (!whisper_is_multilingual(ctx)){if (params.language != "en" || params.translate){params.language = "en";params.translate = false;fprintf(stderr, "%s: WARNING: model is not multilingual, ignoring language and translation options\n", __func__);}}if (params.detect_language){params.language = "auto";}fprintf(stderr, "%s: processing '%s' (%d samples, %.1f sec), %d threads, %d processors, %d beams + best of %d, lang = %s, task = %s, %stimestamps = %d ...\n",__func__, fname_inp.c_str(), int(pcmf32.size()), float(pcmf32.size()) / WHISPER_SAMPLE_RATE,params.n_threads, params.n_processors, params.beam_size, params.best_of,params.language.c_str(),params.translate ? "translate" : "transcribe",params.tinydiarize ? "tdrz = 1, " : "",params.no_timestamps ? 0 : 1);fprintf(stderr, "\n");}// run the inference{whisper_full_params wparams = whisper_full_default_params(WHISPER_SAMPLING_GREEDY);wparams.strategy = params.beam_size > 1 ? WHISPER_SAMPLING_BEAM_SEARCH : WHISPER_SAMPLING_GREEDY;wparams.print_realtime = false;wparams.print_progress = params.print_progress;wparams.print_timestamps = !params.no_timestamps;wparams.print_special = params.print_special;wparams.translate = params.translate;wparams.language = params.language.c_str();wparams.detect_language = params.detect_language;wparams.n_threads = params.n_threads;wparams.n_max_text_ctx = params.max_context >= 0 ? params.max_context : wparams.n_max_text_ctx;wparams.offset_ms = params.offset_t_ms;wparams.duration_ms = params.duration_ms;wparams.token_timestamps = params.output_wts || params.output_jsn_full || params.max_len > 0;wparams.thold_pt = params.word_thold;wparams.max_len = params.output_wts && params.max_len == 0 ? 60 : params.max_len;wparams.split_on_word = params.split_on_word;wparams.speed_up = params.speed_up;wparams.debug_mode = params.debug_mode;wparams.tdrz_enable = params.tinydiarize; // [TDRZ]wparams.initial_prompt = params.prompt.c_str();wparams.greedy.best_of = params.best_of;wparams.beam_search.beam_size = params.beam_size;wparams.temperature_inc = params.no_fallback ? 0.0f : wparams.temperature_inc;wparams.entropy_thold = params.entropy_thold;wparams.logprob_thold = params.logprob_thold;whisper_print_user_data user_data = { &params, &pcmf32s, 0 };// this callback is called on each new segmentif (!wparams.print_realtime){wparams.new_segment_callback = whisper_print_segment_callback;wparams.new_segment_callback_user_data = &user_data;}if (wparams.print_progress){wparams.progress_callback = whisper_print_progress_callback;wparams.progress_callback_user_data = &user_data;}// examples for abort mechanism// in examples below, we do not abort the processing, but we could if the flag is set to true// the callback is called before every encoder run - if it returns false, the processing is aborted{static bool is_aborted = false; // NOTE: this should be atomic to avoid data racewparams.encoder_begin_callback = [](struct whisper_context* /*ctx*/, struct whisper_state* /*state*/, void* user_data) {bool is_aborted = *(bool*)user_data;return !is_aborted;};wparams.encoder_begin_callback_user_data = &is_aborted;}// the callback is called before every computation - if it returns true, the computation is aborted{static bool is_aborted = false; // NOTE: this should be atomic to avoid data racewparams.abort_callback = [](void* user_data) {bool is_aborted = *(bool*)user_data;return is_aborted;};wparams.abort_callback_user_data = &is_aborted;}if (whisper_full_parallel(ctx, wparams, pcmf32.data(), pcmf32.size(), params.n_processors) != 0){fprintf(stderr, "%s: failed to process audio\n", argv[0]);return 10;}}// output stuff{printf("\n");// output to text fileif (params.output_txt){const auto fname_txt = fname_out + ".txt";output_txt(ctx, fname_txt.c_str(), params, pcmf32s);}}}// whisper releasewhisper_print_timings(ctx);whisper_free(ctx);return 0;
}

注:

  • whisper支持的模型文件需要自己去下载
  • whisper.cpp编译可以配置多种类型的增强选项,比如支持CPU/GPU加速,数据计算加速库
  • whisper.cpp的编译cmake文件做了少量改动,方便集成到项目,具体可参看demo

源码

whispercpp_starter

本文由博客一文多发平台 OpenWrite 发布!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/182575.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

低调使用。推荐一个 GPT4 Turbo、Vision、GPTs、DELL·E3 等所有最新功能同步可用国内网站

在 11 月 6 日&#xff0c;万众期待的 OpenAI DevDay&#xff0c;ChatGPT 发布了一系列新的产品&#xff0c;其中推出了 GPT4 Turbo&#xff0c;并且将GPT4 Vision&#xff0c;DELLE3 等等能力全部集合到一起&#xff0c;不需要再分开使用&#xff0c;原来的局限的文本聊天也进…

python类的多重继承继承和查找顺序

1 python类的多重继承继承和查找顺序 python中&#xff0c;类的多重继承允许子类继承多个基类&#xff0c;子类可以访问多个基类的属性和方法。 1.1 多重继承基础 用法 class MulClass(BaseC1,BaseC2,...BaseCn):pass描述 Mulclass&#xff1a;子类&#xff08;或者称混合…

JavaScript包装类型

前端面试大全JavaScript包装类型 &#x1f31f;经典真题 &#x1f31f;包装类型 &#x1f31f;真题解答 &#x1f31f;总结 &#x1f31f;经典真题 是否了解 JavaScript 中的包装类型&#xff1f; &#x1f31f;包装类型 在 ES 中&#xff0c;数据的分类分为基本数据类型…

微信预约小程序制作

对于许多新手来说&#xff0c;制作微信预约小程序可能是一项挑战&#xff0c;但并非不可能。本文将通过详细的步骤&#xff0c;指导您从零开始制作一个微信预约小程序。首先&#xff0c;您需要找一个合适的第三方制作平台或工具&#xff0c;乔拓云网就是其中之一。 找一个合适的…

【数据结构】八大排序 (三)

目录 前言&#xff1a; 快速排序 快速排序非递归实现 快速排序特性总结 归并排序 归并排序的代码实现 归并排序的特性总结 计数排序 计数排序的代码实现 计数排序的特性总结 前言&#xff1a; 前文快速排序采用了递归实现&#xff0c;而递归会开辟函数栈帧&#xff0…

信号类型(通信)——最小频移键控(MSK)

系列文章目录 《信号类型&#xff08;通信&#xff09;——仿真》 《信号类型&#xff08;通信&#xff09;——QAM调制信号》 《信号类型&#xff08;通信&#xff09;——QPSK、OQPSK、IJF_OQPSK调制信号》 目录 前言 一、MSK信号特点 1.1、最小频移 1.2、相位连续 二…

小红书API接口测试 | 小红书笔记详情 API 接口测试指南

一、引言 随着互联网的发展&#xff0c;越来越多的应用开始使用API接口来提供服务。而API接口的测试也变得越来越重要。本文将介绍如何使用Python语言进行小红书笔记详情API接口的测试。 二、小红书笔记详情API接口介绍 小红书笔记详情API接口是用于获取指定笔记详细信息的接…

Ubuntu16.04.4系统本地提权实验

目录 1.介绍&#xff1a; 2.实验&#xff1a; 3.总结&#xff1a; 1.介绍&#xff1a; 1.1&#xff1a;eBPF简介&#xff1a;eBPF(extendedBerkeleyPacketFilter)是内核源自于BPF的一套包过滤机制&#xff0c;BPF可以理解成用户与内核之间的一条通道&#xff0c;有非常强大的…

Python的控制流语句使用

Python的控制流语句使用 判断语句 if分支示意图语法介绍注意事项示例 for循环示意图语法介绍列表推导式示例 while循环与for的区别语法介绍示例 判断语句 if分支 示意图 单、双、多分支&#xff1a; 语法介绍 # 单分支 if condition:expression # 双分支 if condition:exp…

Spark-java版

SparkContext初始化 相关知识 SparkConf 是SparkContext的构造参数&#xff0c;储存着Spark相关的配置信息&#xff0c;且必须指定Master(比如Local)和AppName&#xff08;应用名称&#xff09;&#xff0c;否则会抛出异常&#xff1b;SparkContext 是程序执行的入口&#xf…

设计好的测试用例,6大注意事项

设计好的测试用例对于发现缺陷、验证功能、提高可靠性、降低风险和提高效率都具有重要的作用&#xff0c;是保证产品质量和稳定性的重要环节。如果测试用例有问题&#xff0c;可能会导致遗漏缺陷、功能验证不充分、测试效率低下以及误报漏报等问题&#xff0c;从而影响项目的质…

Ubuntu安装nfs服务步骤

Ubuntu安装nfs服务步骤 一、NFS&#xff1f; NFS&#xff1a;网络文件系统&#xff08;Network File system File&#xff09;缩写&#xff0c;可通过网络让不同的机器&#xff0c;不同操作系统之间可以彼此共享文件和目录。 二、安装 1.安装nfs服务器命令&#xff1a;sudo…

BUUCTF-pwn-ciscn_2019_ne_51

简单查看保护&#xff1a; 32为程序没有canary没有PIE&#xff0c;应该是简单的栈溢出。我们照着这个思路去找溢出点在哪&#xff0c;运行下程序看看什么情况&#xff1a; 程序上来是输入一个密码验证。随便输入下错误直接退出。因此我们需要到IDA中看看怎么回事&#xff1a; 主…

F. Magic Will Save the World

首先积攒了能量打了怪再积攒是没有意义的&#xff0c;可以直接积攒好&#xff0c;然后一次性进行攻击 那么怎么进行攻击了&#xff1f;可以尽量的多选怪物使用水魔法攻击剩余的再用火魔法进行攻击&#xff0c; 也就是只要存在合法的体积&#xff08;即装入背包的怪物的体积之…

qt-C++笔记之主线程中使用异步逻辑来处理ROS事件循环和Qt事件循环解决相互阻塞的问题

qt-C笔记之主线程中使用异步逻辑来处理ROS事件循环和异步循环解决相互阻塞的问题 code review! 文章目录 qt-C笔记之主线程中使用异步逻辑来处理ROS事件循环和异步循环解决相互阻塞的问题1.Qt的app.exec()详解2.ros::spin()详解3.ros::AsyncSpinner详解4.主线程中结合使用的示…

MySQL练习题及答案

一 、表结构 用户表(user)&#xff1a;id(主键)、username、password、email、phone、age商品表(product)&#xff1a;id(主键)、name、price、stock、description订单表(order)&#xff1a;id(主键)、user_id(外键&#xff0c;关联用户表)、total_price、status、create_time…

【刷题】 哈希表

哈希表 LCR 169. 招式拆解 II&#xff08;有序哈希表&#xff09; 某套连招动作记作仅由小写字母组成的序列 arr&#xff0c;其中 arr[i] 第 i 个招式的名字。请返回第一个只出现一次的招式名称&#xff0c;如不存在请返回空格。 示例 1&#xff1a; 输入&#xff1a;arr “…

笔记63:注意力评分函数

本地笔记地址&#xff1a;D:\work_file\&#xff08;4&#xff09;DeepLearning_Learning\03_个人笔记\3.循环神经网络\第10章&#xff1a;动手学深度学习~注意力机制 a a a a a a a a a a a a a a a a a a a

Python语言学习笔记之五(Python代码注解)

本课程对于有其它语言基础的开发人员可以参考和学习&#xff0c;同时也是记录下来&#xff0c;为个人学习使用&#xff0c;文档中有此不当之处&#xff0c;请谅解。 注解与注释是不一样的&#xff0c;注解有更广泛的应用&#xff1b; 通过注解与注释都能提高代码的可读性和规…

带大家做一个,易上手的家常蒜薹炒瘦肉

首先 从冰箱那一块瘦肉 用水化一下冰 然后 那一把蒜薹 将所有蒜薹头和尾部去掉一小节 这个地方是不能吃的 然后 剩下的部分 切成如下图这样 一小条一小条的样子 然后 将蒜薹倒入盆中清水洗一下 瘦肉清洗一下 然后切片 然后 直接起锅烧油 油烧热后马上下肉翻炒 一定要大点翻…