Codeigniter: MP4 Video Upload not working

前端 未结 3 1016
我寻月下人不归
我寻月下人不归 2020-12-19 20:38

I am researching on a problem for long time but still could not find any solution.

I am uploading mp4 file using codeigniter. Before that I added mime type for mp4

3条回答
  •  太阳男子
    2020-12-19 21:05

    I depend on video mime file types when we upload video with extension mp4 but in CodeIgniter upload library use php function finfo_file for detect file_type by this function we get other file_type. Ex. I get video/3gpp

    So I changed in config/mimes.php

    'mp4' => array('video/mp4', 'video/3gpp'),

    and its working for me.

    Thanks

提交回复
热议问题