1234567891011121314151617181920212223 |
- <?php
- use Volc\Service\Notify;
- require('../../../vendor/autoload.php');
- require('../../src/Service/Notify.php');
- $client = Notify::getInstance();
- $client->setAccessKey("your ak");
- $client->setSecretKey("your sk");
- $body = [
- 'Name'=>'测试',
- 'TtsTemplateContent'=>'测试',
- 'Remark'=>"测试",
- 'TtsOption'=>"{\"loop\":0,\"loop_interval\":0,\"speed\":10,\"volume\":10,\"pitch\":10,\"voice_type\":\"BV001_streaming\",\"lang\":\"ch\",\"voice\":\"other\"}",
- ];
- $response = $client->CreateTtsResource($body);
- echo $response;
|