Below is the code I am using for the video and image uploading. Image preview is showing on selction but when i select the video to upload it will upload but not showing any preview.
Any suggestion if i am missing something.
$form->field($model, 'sessionvideos')->widget(FileInput::classname(), [
'options' => ['accept' => 'pdf', 'mp3', 'mp4', 'multiple' => true],
'pluginOptions' => [
'previewFileType' => 'any',
'validateInitialCount' => true,
'initialPreviewAsData' => true,
'allowedFileExtensions' => ['pdf', 'mp3', 'mp4'],
'maxFileCount' => 18,
'showUpload' => false,
]]);