28-12-2023 , 28-12-2023
アカウントに資金を供給した後にのみ、APIが利用可能です。
JSON APIの声 https://speechgen.io/index.php?r=api/voices。
APIを通じて利用可能なテキスト音声化のオプションは2つあります:
1つ目のオプション - 短文の迅速な音声化。
2つ目のオプション - 音声化タスクの設定。
バリアント1のためのURL: https://speechgen.io/index.php?r=api/text
このオプションは最大2000文字の制限があります。また、最大2回の声の変更が可能です。制限を超えると、エラーが発生します(status = -1)。
$data = [
'token'=>'SekretKeyInYourProfile',
'email'=>'yourMail@gmail.com',
'voice'=>'John',
'text'=>"Text for text to Speech",
'format'=>'mp3',
'speed'=>1.1,
'pitch'=>0.8,
'emotion'=>'good',
'pause_sentence'=>300,
'pause_paragraph'=>400,
'bitrate'=>48000,
];
'token' - 'SekretKeyInYourProfile'
'email' - 'yourMail@gmail.com'
'voice' - 'Voice'
'text' - 'Text for text to Speech'
'format' - 結果ファイルの形式、デフォルトはmp3、可能な値('mp3', 'wav', 'ogg')
'speed' - 再生速度、デフォルトは1、(範囲は0.1から2.0まで)
'pitch'- 声のピッチ、デフォルトは0、(範囲は-20から20まで)
'emotion' - 声の感情、デフォルトは'good'、可能な値('good', 'evil', 'neutral')。
感情はすべての声に利用可能ではありません、こちらをご覧ください。
{
"id":"4153594",
"status":"0",
"file":"result.mp3",
"file_cors":"result_cors.mp3",
"parts":"5",
"parts_done":"2",
"duration":"0",
"format":"mp3",
"error":"",
"balans":"3331.2720000314",
"cost":"0.06"
}
"id" - ユニークな声のID
"status" - 現在の音声化の状態。3つの値から利用可能:
0 - 処理中
1 - 成功裏に完了
-1 - エラー
"file" - 音声ファイルのパス、status= 1の場合に利用可能
"file_cors" - CORSの音声ファイルのパス
"error" - エラーテキスト、status = -1の場合に発生
"parts" - 音声化の数
"parts_done" - 完了した部分の数
"duration" - 音声ファイルの秒数、status = 1の場合に利用可能
"format" - 音声ファイルの形式
"balans" - 制限残高
"cost" - 音声化のコスト。(音声部分がダビングされるにつれて増加)
$data = [
'token' => '123456',
'email' => 'mail@mail.com',
'voice' => 'John',
'text' => "Text",
'format' => 'mp3',
'speed' => 1.1,
'pitch' => 0,
'emotion' => 'good',
];
$url = "https://speechgen.io/index.php?r=api/text";
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
$response = curl_exec($ch);
var_dump($response);
$response = json_decode($response, true);
if (curl_errno($ch)) {
var_dump("Connection error with text recognition server, " . curl_error($ch));
} else {
var_dump($response);
if ($response["status"] == 1) {
//Copy
echo " ok " . $response["file"];
copy($response["file"], 'Filename.' . $response["format"]);
} else {
//Error, no voiceover possible
echo $response["error"];
}
}
curl_close($ch);
ステップ1:テキストをAPIに送信し、ユニークな声のID(id)を取得します。
ステップ2: 音声化の結果を確認するために、音声化識別子(id)を送信します。
この方法には制限がなく、最大1,000,000文字のテキスト音声化が可能です。音声化は優先順位に従って行われ(先着順)、テキストの長さに応じて1分から数分かかることがあります。
$data = [
'token'=>'SekretKeyInYourProfile',
'email'=>'yourMail@gmail.com',
'voice'=>'John',
'text'=>"Text",
'format'=>'mp3',
'speed'=>1.1,
'pitch'=>0.8,
'emotion'=>'good',
];
'token' - 'SekretKeyInYourProfile'
'email' - 'yourMail@gmail.com'
'voice' - 'Voice'
'text' - 'Text'
'format' - 結果ファイルの形式、デフォルトはmp3、可能な値( 'mp3', 'wav', 'ogg')
'speed' - 速度、デフォルトは1、(範囲は0.1から2.0まで)
'pitch'- 声のピッチ、デフォルトは0、(範囲は-20から20まで)
'emotion' - 感情の色合い、デフォルトは'good'、可能な値('good', 'evil', 'neutral')。
すべての声に利用可能ではありません、こちらをご覧ください。
{
"id":"4153594",
"status":"0",
"parts":"5",
"parts_done":"0",
"format":"mp3",
"error":"",
"balans":"3331.2720000314",
"cost":"0.00"
}
"id" - ユニークな声のID
"status" - 現在の音声化の状態。2つの値から利用可能:
1 - タスクが正常に追加されました
-1 - エラー
"error" - エラーテキスト、status = -1の場合に発生
"parts" - 音声化の数
"parts_done" - 完了した部分の数
"format" - 音声ファイルの形式
"balans" - アカウント制限の残高
"cost" - 音声化のコスト。(音声部分がダビングされるにつれて増加)
ステップ2。タスクを作成し、識別子(id)を取得した後、https://speechgen.io/index.php?r=api/resultにリクエストを送信して、結果を確認する必要があります。
$data = [
'token'=>'SekretKeyInYourProfile',
'email'=>'yourMail@gmail.com',
'id'=>4153594,
];
'token' - SekretKeyInYourProfile
'email' - yourMail@gmail.com
'id' - ステップ1で取得したユニークな声のID
{
"id":"4153594",
"status":"0",
"file":"result.mp3",
"cuts":["result_1.mp3","result_2.mp3",...],
"parts":"5",
"parts_done":"0",
"format":"mp3",
"error":"",
"balans":"3331.2720000314",
"cost":"0.00"
}
"id" - ユニークな声のID
"status" - 現在の音声化の状態。3つの値から利用可能:
0 - 途中
1 - 正常に完了
-1 - エラー
"file" - 音声ファイルのパス、status = 1の場合に利用可能
"error" - エラーテキスト、status = -1の場合に発生
"parts" - 音声化の数
"parts_done" - 完了した部分の数
"duration" - 音声ファイルの秒数、status = 1の場合に利用可能
"format" - 音声ファイルの形式
"balans" - アカウント制限の残高
"cost" - 音声化のコスト。(音声部分がダビングされるにつれて増加)
"cuts" - テキスト内で「cut」タグが使用された場合の断片の配列
//STEP 1
$data = [
'token' => '123456',
'email' => 'mail@mail.com',
'voice' => 'John',
'text' => "Text",
'format' => 'mp3',
'speed' => 1.1,
'pitch' => 0,
'emotion' => 'good',
];
$url = "https://speechgen.io/index.php?r=api/longtext";
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
$response = curl_exec($ch);
var_dump($response);
$response = json_decode($response, true);
$resultId = 0;
if (curl_errno($ch)) {
var_dump("Error in connecting to the text recognition server, " . curl_error($ch));
} else {
var_dump($response);
if ($response["status"] == 1) {
//Copy
echo " ok " . $response["file"];
copy($response["file"], 'FileName.' . $response["format"]);
} elseif ($response["status"] == 0) {
//Remember the voice ID, and ask for the result later
$resultId = $response["id"];
} else {
//Error, no voiceover possible
echo $response["error"];
}
}
curl_close($ch);
//STEP 2
// Every minute we make a query-check of the result
if($resultId){
$data = [
'token'=>'123456',
'email'=>'mail@mail.com',
'id'=>$resultId,
];
$url = "https://speechgen.io/index.php?r=api/result";
$ch = curl_init();
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
$response = curl_exec($ch);
var_dump($response);
$response = json_decode($response,true);
if (curl_errno($ch)) {
var_dump("Error in connecting to the text recognition server, ".curl_error($ch));
}else{
var_dump($response);
if($response["status"] == 1){
//Copy
echo " ok ".$response["file"];
copy($response["file"], 'FileMane.' . $response["format"]);
}elseif($response["status"] == 0){
//Not ready yet, we will ask for the result later
echo "In process...";
}else{
//Error, no voiceover possible
echo $response["error"];
}
}
curl_close($ch);
}