reactphp-x / tts
v1.0.0
2024-08-10 02:20 UTC
Requires
- reactphp-x/asyncify: ^1.0
- reactphp-x/framework-x: ^0.16.0
This package is not auto-updated.
Last update: 2024-11-03 03:07:43 UTC
README
install
composer require reactphp-x/tts -vvv
Usage
require __DIR__ . "/vendor/autoload.php"; use ReactphpX\Tts\Tts; (new Tts(getenv('X_LIMIT') ?: 10, getenv('X_PUBLIC_PATH') ?: __DIR__ . '/public/'))->run();
run
X_LISTEN=0.0.0.0:8080 php tts.php
api
get /voices
post or get /tts
{ "text": "hello world", "voice": "zh-CN-shaanxi-XiaoniNeural" }
get /voices/{voice}
docker
docker build -t reactphp-x-tts .
docker run -it --rm -p 8012:8080 -e X_LISTEN=0.0.0.0:8080 -e X_LIMIT=10 -e X_PUBLIC_PATH=/var/www/examples/public/ reactphp-x-tts php /var/www/examples/01.php
License
MIT