- upload recording of call in chunks - recordings are merged on server side in jobs - improve UI of the recording tab
25 lines
826 B
PHP
25 lines
826 B
PHP
<?php
|
|
|
|
return [
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Maximum Interviewer Panelists Limit
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
'max_interviewer' => (int) env('MAX_INTERVIEWER', 2),
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Candidate Recordings Storage Configuration
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Base folder and temporary chunk storage locations for session recordings.
|
|
|
|
|
*/
|
|
'recordings' => [
|
|
'base_folder' => env('INTERVIEW_RECORDINGS_FOLDER', 'uploads/candidate_recordings'),
|
|
'temp_folder' => env('INTERVIEW_RECORDINGS_TEMP_FOLDER', 'app/temp_recordings'),
|
|
],
|
|
];
|