This is small library, that adds Facade in laravel 5, that implements Yandex Speech Kit Cloud.
At this moment, library can transform audio file to text only.
Composer
Run the following to include this via Composer
composer require pyatnitsev/yandex-speech
Laravel 5 Configuration
To install into a Laravel project, first do the composer install then add class to your config/app.php service providers list.
Pyatnitsev\YandexSpeech\YandexSpeechServiceProvider::class,
Add using for facade:
use Pyatnitsev\YandexSpeech\YandexSpeechFacade;
and next use it in controller:
YandexSpeechFacade::getTextByAudioByURL($filePath);
this method returns best suggestion or false if no suggestions
This package is licensed under the MIT license.