PHP code example of dragonzap / subtitle-generator
1. Go to this page and download the library: Download dragonzap/subtitle-generator library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
/*
* Licensed under GPLv2
* Author: Daniel McCarthy
* Dragon Zap Publishing
* Website: https://dragonzap.com
*/
return [
'subtitle_generator' => [
'google' => [
'project_id' => env('GOOGLE_CLOUD_SPEECH_TO_TEXT_PROJECT_ID'),
'credentials' => env('GOOGLE_CLOUD_SPEECH_TO_TEXT_APPLICATION_CREDENTIALS'),
'bucket' => env('GOOGLE_CLOUD_SPEECH_TO_TEXT_STORAGE_BUCKET'),
// This is where the extracted WAV files will be stored for processing by google speech to text
// They will be deleted automatically after the job has been completed
'audio_file_tmp_directory' => env('GOOGLE_CLOUD_SPEECH_TO_TEXT_AUDIO_FILE_TMP_DIRECTORY', 'audio-files'),
]
],
];
php artisan make:command TestCommand
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.