-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
76 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
#pragma once | ||
|
||
#include <utility> | ||
|
||
#if defined(_WIN32) || defined(_WIN64) | ||
#define DllExport __declspec(dllexport) | ||
#else | ||
#define DllExport | ||
#endif | ||
|
||
/** | ||
* @fn | ||
* 初期化する | ||
* @brief 音声合成するための初期化を行う。他の関数を正しく実行するには先に初期化が必要 | ||
* @param root_dir_path 必要なファイルがあるディレクトリ。相対パス・絶対パスどちらも指定可能。文字コードはUTF-8 | ||
* @param use_gpu trueならGPU用、falseならCPU用の初期化を行う | ||
* @return 成功したらtrue、失敗したらfalse | ||
* @detail | ||
* 何度も実行可能。use_gpuを変更して実行しなおすことも可能。 | ||
* 最後に実行したuse_gpuに従って他の関数が実行される。 | ||
*/ | ||
extern "C" DllExport bool initialize(char *root_dir_path, bool use_gpu); | ||
|
||
/** | ||
* @fn | ||
* メタ情報を取得する | ||
* @brief 話者名や話者IDのリストを取得する | ||
* @return メタ情報が格納されたjson形式の文字列 | ||
*/ | ||
extern "C" DllExport const char *metas(); | ||
|
||
/** | ||
* @fn | ||
* 音素ごとの長さを求める | ||
* @brief 音素列から、音素ごとの長さを求める | ||
* @param length 音素列の長さ | ||
* @param phoneme_list 音素列 | ||
* @param speaker_id 話者番号 | ||
* @return 音素ごとの長さ | ||
*/ | ||
extern "C" DllExport bool yukarin_s_forward(int length, long *phoneme_list, long *speaker_id, float *output); | ||
|
||
/** | ||
* @fn | ||
* モーラごとの音高を求める | ||
* @brief モーラごとの音素列とアクセント情報から、モーラごとの音高を求める | ||
* @param length モーラ列の長さ | ||
* @param vowel_phoneme_list 母音の音素列 | ||
* @param consonant_phoneme_list 子音の音素列 | ||
* @param start_accent_list アクセントの開始位置 | ||
* @param end_accent_list アクセントの終了位置 | ||
* @param start_accent_phrase_list アクセント句の開始位置 | ||
* @param end_accent_phrase_list アクセント句の終了位置 | ||
* @param speaker_id 話者番号 | ||
* @return モーラごとの音高 | ||
*/ | ||
extern "C" DllExport bool yukarin_sa_forward(int length, long *vowel_phoneme_list, long *consonant_phoneme_list, | ||
long *start_accent_list, long *end_accent_list, | ||
long *start_accent_phrase_list, long *end_accent_phrase_list, | ||
long *speaker_id, float *output); | ||
|
||
/** | ||
* @fn | ||
* 波形を求める | ||
* @brief フレームごとの音素と音高から、波形を求める | ||
* @param length フレームの長さ | ||
* @param phoneme_size 音素の種類数 | ||
* @param f0 フレームごとの音高 | ||
* @param phoneme フレームごとの音素 | ||
* @param speaker_id 話者番号 | ||
* @return 音声波形 | ||
*/ | ||
extern "C" DllExport bool decode_forward(int length, int phoneme_size, float *f0, float *phoneme, long *speaker_id, | ||
float *output); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters