codeigniter教程之上传视频并使用ffmpeg转flv示例

Tanya ·
更新时间:2024-09-20
· 736 次阅读

代码如下:
$file = 'video_file';
$config['upload_path'] = './video_folder/';
$config['allowed_types'] = 'mov|mpeg|mp3|avi';
$config['max_size'] = '50000';
$config['max_width']   = '';
$config['max_height']   = '';

$this->upload->initialize($config);
$this->load->library('upload', $config);

if(!$this->upload->do_upload($file))
{
// If there is any error
$err_msgs .= 'Error in Uploading video '.$this->upload->display_errors().'<br />';
}
else
{
$data=array('upload_data' => $this->upload->data());
$video_path = $data['upload_data']['file_name'];
  $directory_path = $data['upload_data']['file_path'];
$directory_path_full      = $data['upload_data']['full_path'];
$file_name = $data['upload_data']['raw_name'];

// ffmpeg command to convert video

exec("ffmpeg -i ".$directory_path_full." ".$directory_path.$file_name.".flv");

// $file_name is same file name that is being uploaded but you can give your custom video name after converting So use something like myfile.flv.

/// In the end update video name in DB
$array = array(
'video' => $file_name.'.'.'flv',
);
$this->db->set($array);
$this->db->where('id',$id); // Table where you put video name
$query = $this->db->update('user_videos');
}

您可能感兴趣的文章:CI框架文件上传类及图像处理类用法分析SWFUpload与CI不能正确上传识别文件MIME类型解决方法分享2个Codeigniter文件批量上传控制器写法例子Codeigniter实现多文件上传并创建多个缩略图codeigniter教程之多文件上传使用示例php基于CodeIgniter实现图片上传、剪切功能codeigniter上传图片不能正确识别图片类型问题解决方法Codeigniter上传图片出现“You did not select a file to upload”错误解决办法使用CodeIgniter的类库做图片上传CodeIgniter上传图片成功的全部过程分享CI框架实现优化文件上传及多文件上传的方法



程之 codeigniter ffmpeg

需要 登录 后方可回复, 如果你还没有账号请 注册新账号