我想分段上传视频,我有一个读取视频的功能,可以在框架上进行一些处理,现在我无需将其写入本地磁盘,而是希望将其发送到AWS s3。 我想出了使用boto3客户端上传部分内容的方法
$filepath = $this->_log_path.'log-'.date('Y-m-d').'.'.$this->_file_ext;
$filepath = $this->_log_path.'log-'.date('Y-m-d').'.'.$this->_file_ext;
if($level == 'ERROR'){
$filepath = $this->_log_path.'error-'.date('Y-m-d').'.'.$this->_file_ext;
}