fagai / laravel-voicetext
dev-master
2015-06-28 15:50 UTC
Requires
- php: >=5.5.9
- fagai/voicetext: 0.2
- illuminate/support: 5.1.*
This package is auto-updated.
Last update: 2024-10-29 04:31:02 UTC
README
fagai/voicetext base laravel package.
Require System
- Laravel 5
- PHP 5.5.9~
Install
composer require fagai/laravel-voicetext
adding config/app.php providers.
Fagai\VoiceText\ServiceProvider::class,
adding config/app.php aliases.
'VoiceText' => Fagai\VoiceText\Facade::class
install or update composer.
composer update
publish config files
php artisan vendor:publish --tag=config
Example
$voice = app('voicetext');
$voice->speaker('hikari')
->emotion('happiness')
->emotion_level(2)
->pitch(150)
->speed(120)
->volume(150)
->text('今日も一日がんばるぞい!');
// get wav binary data
$binaryData = $voice->get();
License
MIT License.