$config['token_endtime'])) { $auth = new \Qiniu\Auth($config['appkey'], $config['appsecret']); # 暂时没用到callback $policy = array( 'callbackUrl' => Dever::url('yun.callback?config=' . $config['id'], 'upload'), 'callbackBody' => 'filename=$(fname)&key=$(key)&filesize=$(fsize)&width=$(imageInfo.width)&height=$(imageInfo.height)' ); $token = $auth->uploadToken($upload['bucket'], null, 3600); $up['token'] = $token; $up['token_endtime'] = $cur + 3600 - 60; $up['where_id'] = $config['id']; Dever::db('upload/yun')->update($up); } else { $token = $config['token']; } $domain = 'http://up-z1.qiniup.com/'; return array('qiniu', $token, $domain, $upload['bucket']); } public function callback() { $body = file_get_contents('php://input'); Dever::log($body, 'qiniu_callback'); $body = json_decode($body, true); return $body; } # 连接 public function connect($config, $upload) { list($type, $token, $domain, $bucket) = $this->token($config, $upload); $this->token = $token; // 构建 UploadManager 对象 $this->client = new \Qiniu\Storage\UploadManager(); return $this; } # 上传文件 public function upload($file, $source_file, $options = array(), $base64 = false) { if (!$this->client) { return array(); } $method = 'putFile'; if ($base64) { $method = 'put'; } list($ret, $err) = $this->client->$method($this->token, $file, $source_file, $options); return $ret; } # 视频转码 public function convert($key, $file, $config, $upload) { $accessKey = $config['appkey']; $secretKey = $config['appsecret']; $host = $yun['host']; $auth = new \Qiniu\Auth($accessKey, $secretKey); $bucket = $upload['bucket']; # 转码 //转码是使用的队列名称。 https://portal.qiniu.com/mps/pipeline $pipeline = $upload['pipeline']; if ($pipeline) { $array = explode(',', $pipeline); $index = array_rand($array); if (isset($array[$index])) { $pipeline = $array[$index]; } } else { $pipeline = 'convert'; } $ext = 'mp4'; if (strstr($file, '.mp3') || strstr($file, '.wma') || strstr($file, '.wav')) { $ext = 'mp3'; } $force = false; //转码完成后通知到你的业务服务器。 $notifyUrl = 'http://375dec79.ngrok.com/notify.php'; $notifyUrl = false; $config = new \Qiniu\Config(); //$config->useHTTPS=true; $pfop = new \Qiniu\Processing\PersistentFop($auth, $config); //要进行转码的转码操作。 http://developer.qiniu.com/docs/v6/api/reference/fop/av/avthumb.html //$fops = "avthumb/m3u8/s/640x360/vb/1.4m|saveas/" . \Qiniu\base64_urlSafeEncode($bucket . ":qiniu_640x360.mp4"); $fops = "avthumb/mp4/vb/1.4m|saveas/" . \Qiniu\base64_urlSafeEncode($bucket . ':' . $file . '_c.' . $ext); list($id, $err) = $pfop->execute($bucket, $file, $fops, $pipeline, $notifyUrl, $force); /* echo "\n====> pfop avthumb result: \n"; if ($err != null) { var_dump($err); } else { echo "PersistentFop Id: $id\n"; } die; //查询转码的进度和状态 list($ret, $err) = $pfop->status($id); echo "\n====> pfop avthumb status: \n"; if ($err != null) { var_dump($err); } else { var_dump($ret); }*/ } }