|
|
@ -60,7 +60,10 @@ class SynthesizerParam implements ModelInterface, ArrayAccess, \JsonSerializable |
|
|
|
protected static $openAPITypes = [ |
|
|
|
protected static $openAPITypes = [ |
|
|
|
'text' => 'string', |
|
|
|
'text' => 'string', |
|
|
|
'model' => 'string', |
|
|
|
'model' => 'string', |
|
|
|
'format' => 'string' |
|
|
|
'format' => 'string', |
|
|
|
|
|
|
|
'volume' => 'int', |
|
|
|
|
|
|
|
'rate' => 'float', |
|
|
|
|
|
|
|
'pitch' => 'float' |
|
|
|
]; |
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -73,7 +76,10 @@ class SynthesizerParam implements ModelInterface, ArrayAccess, \JsonSerializable |
|
|
|
protected static $openAPIFormats = [ |
|
|
|
protected static $openAPIFormats = [ |
|
|
|
'text' => null, |
|
|
|
'text' => null, |
|
|
|
'model' => null, |
|
|
|
'model' => null, |
|
|
|
'format' => null |
|
|
|
'format' => null, |
|
|
|
|
|
|
|
'volume' => 'int32', |
|
|
|
|
|
|
|
'rate' => 'float', |
|
|
|
|
|
|
|
'pitch' => 'float' |
|
|
|
]; |
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -84,7 +90,10 @@ class SynthesizerParam implements ModelInterface, ArrayAccess, \JsonSerializable |
|
|
|
protected static array $openAPINullables = [ |
|
|
|
protected static array $openAPINullables = [ |
|
|
|
'text' => false, |
|
|
|
'text' => false, |
|
|
|
'model' => false, |
|
|
|
'model' => false, |
|
|
|
'format' => false |
|
|
|
'format' => false, |
|
|
|
|
|
|
|
'volume' => false, |
|
|
|
|
|
|
|
'rate' => false, |
|
|
|
|
|
|
|
'pitch' => false |
|
|
|
]; |
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -175,7 +184,10 @@ class SynthesizerParam implements ModelInterface, ArrayAccess, \JsonSerializable |
|
|
|
protected static $attributeMap = [ |
|
|
|
protected static $attributeMap = [ |
|
|
|
'text' => 'text', |
|
|
|
'text' => 'text', |
|
|
|
'model' => 'model', |
|
|
|
'model' => 'model', |
|
|
|
'format' => 'format' |
|
|
|
'format' => 'format', |
|
|
|
|
|
|
|
'volume' => 'volume', |
|
|
|
|
|
|
|
'rate' => 'rate', |
|
|
|
|
|
|
|
'pitch' => 'pitch' |
|
|
|
]; |
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -186,7 +198,10 @@ class SynthesizerParam implements ModelInterface, ArrayAccess, \JsonSerializable |
|
|
|
protected static $setters = [ |
|
|
|
protected static $setters = [ |
|
|
|
'text' => 'setText', |
|
|
|
'text' => 'setText', |
|
|
|
'model' => 'setModel', |
|
|
|
'model' => 'setModel', |
|
|
|
'format' => 'setFormat' |
|
|
|
'format' => 'setFormat', |
|
|
|
|
|
|
|
'volume' => 'setVolume', |
|
|
|
|
|
|
|
'rate' => 'setRate', |
|
|
|
|
|
|
|
'pitch' => 'setPitch' |
|
|
|
]; |
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -197,7 +212,10 @@ class SynthesizerParam implements ModelInterface, ArrayAccess, \JsonSerializable |
|
|
|
protected static $getters = [ |
|
|
|
protected static $getters = [ |
|
|
|
'text' => 'getText', |
|
|
|
'text' => 'getText', |
|
|
|
'model' => 'getModel', |
|
|
|
'model' => 'getModel', |
|
|
|
'format' => 'getFormat' |
|
|
|
'format' => 'getFormat', |
|
|
|
|
|
|
|
'volume' => 'getVolume', |
|
|
|
|
|
|
|
'rate' => 'getRate', |
|
|
|
|
|
|
|
'pitch' => 'getPitch' |
|
|
|
]; |
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -260,6 +278,9 @@ class SynthesizerParam implements ModelInterface, ArrayAccess, \JsonSerializable |
|
|
|
$this->setIfExists('text', $data ?? [], null); |
|
|
|
$this->setIfExists('text', $data ?? [], null); |
|
|
|
$this->setIfExists('model', $data ?? [], null); |
|
|
|
$this->setIfExists('model', $data ?? [], null); |
|
|
|
$this->setIfExists('format', $data ?? [], null); |
|
|
|
$this->setIfExists('format', $data ?? [], null); |
|
|
|
|
|
|
|
$this->setIfExists('volume', $data ?? [], null); |
|
|
|
|
|
|
|
$this->setIfExists('rate', $data ?? [], null); |
|
|
|
|
|
|
|
$this->setIfExists('pitch', $data ?? [], null); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -298,6 +319,15 @@ class SynthesizerParam implements ModelInterface, ArrayAccess, \JsonSerializable |
|
|
|
if ($this->container['format'] === null) { |
|
|
|
if ($this->container['format'] === null) { |
|
|
|
$invalidProperties[] = "'format' can't be null"; |
|
|
|
$invalidProperties[] = "'format' can't be null"; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
if ($this->container['volume'] === null) { |
|
|
|
|
|
|
|
$invalidProperties[] = "'volume' can't be null"; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if ($this->container['rate'] === null) { |
|
|
|
|
|
|
|
$invalidProperties[] = "'rate' can't be null"; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
if ($this->container['pitch'] === null) { |
|
|
|
|
|
|
|
$invalidProperties[] = "'pitch' can't be null"; |
|
|
|
|
|
|
|
} |
|
|
|
return $invalidProperties; |
|
|
|
return $invalidProperties; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -393,6 +423,87 @@ class SynthesizerParam implements ModelInterface, ArrayAccess, \JsonSerializable |
|
|
|
|
|
|
|
|
|
|
|
return $this; |
|
|
|
return $this; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Gets volume |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @return int |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function getVolume() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return $this->container['volume']; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Sets volume |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param int $volume 返回音频音量,取值范围是0~100。(默认50) |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @return self |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function setVolume($volume) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (is_null($volume)) { |
|
|
|
|
|
|
|
throw new \InvalidArgumentException('non-nullable volume cannot be null'); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
$this->container['volume'] = $volume; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return $this; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Gets rate |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @return float |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function getRate() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return $this->container['rate']; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Sets rate |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param float $rate 返回音频语速,取值范围0.5-2(默认1.0) |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @return self |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function setRate($rate) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (is_null($rate)) { |
|
|
|
|
|
|
|
throw new \InvalidArgumentException('non-nullable rate cannot be null'); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
$this->container['rate'] = $rate; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return $this; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Gets pitch |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @return float |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function getPitch() |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
return $this->container['pitch']; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Sets pitch |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @param float $pitch 返回音频语调,取值范围:0.5-2(默认1.0) |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @return self |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public function setPitch($pitch) |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
if (is_null($pitch)) { |
|
|
|
|
|
|
|
throw new \InvalidArgumentException('non-nullable pitch cannot be null'); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
$this->container['pitch'] = $pitch; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return $this; |
|
|
|
|
|
|
|
} |
|
|
|
/** |
|
|
|
/** |
|
|
|
* Returns true if offset exists. False otherwise. |
|
|
|
* Returns true if offset exists. False otherwise. |
|
|
|
* |
|
|
|
* |
|
|
|