1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- <?php
- require dirname(__FILE__, 2) . '/vendor/autoload.php';
- $secretId = "SECRETID";
- $secretKey = "SECRETKEY";
- $region = "ap-beijing";
- $cosClient = new Qcloud\Cos\Client(
- array(
- 'region' => $region,
- 'scheme' => 'https',
- 'credentials'=> array(
- 'secretId' => $secretId,
- 'secretKey' => $secretKey)));
- try {
-
-
- $result = $cosClient->createVoiceTtsJobs(array(
- 'Bucket' => 'examplebucket-125000000',
- 'Tag' => 'Tts',
- 'Operation' => array(
- 'TemplateId' => 't1460606b9752148c4ab182f55163ba7cd',
- 'TtsConfig' => array(
- 'InputType' => 'Text',
- 'Input' => '床前明月光,疑是地上霜',
- ),
- 'Output' => array(
- 'Region' => $region,
- 'Bucket' => 'examplebucket-125000000',
- 'Object' => 'demo.mp3',
- ),
- ),
- ));
-
- print_r($result);
-
- $result = $cosClient->createVoiceTtsJobs(array(
- 'Bucket' => 'examplebucket-125000000',
- 'Tag' => 'Tts',
- 'Operation' => array(
- 'TtsConfig' => array(
- 'InputType' => 'Text',
- 'Input' => '床前明月光,疑是地上霜',
- ),
- 'TtsTpl' => array(
- 'Mode' => 'Sync',
- 'Codec' => 'pcm',
- 'VoiceType' => 'aixiaoxing',
- 'Volume' => '2',
- 'Speed' => '200',
- 'Emotion' => 'arousal',
- ),
- 'Output' => array(
- 'Region' => $region,
- 'Bucket' => 'examplebucket-125000000',
- 'Object' => 'demo.mp3',
- ),
- ),
- ));
-
- print_r($result);
- } catch (\Exception $e) {
-
- echo($e);
- }
|