sls/config/interview.php
kushal.saha 121b4beaf8 feat(call recording): chuked recoding upload
- upload recording of call in chunks 
- recordings are merged on server side in jobs
- improve UI of the recording tab
2026-08-19 05:43:32 +00:00

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'),
],
];