for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TTS\Driver;
/**
* Class Festival
* @package TTS\Driver
*/
class Festival extends AbstractAdapter
{
protected $name = 'Festival';
protected $voice = 'male';
protected $languageMap = [
'ru_RU' => 'ru'
];
public function make($text, $fileName)
system('echo \''. $text .'\' | /usr/bin/text2wave -o ' . $fileName);
return $fileName;
}
public function getUri()
return null;