12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?php
- namespace Upload\Lib\View;
- use Dever;
- Dever::apply('sdk/qiniu', 'upload');
- class Qiniu
- {
- public function token($config, $upload)
- {
- $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);
- $domain = 'http://up-z1.qiniup.com/';
- return array('qiniu', $token, $domain);
- }
- public function callback()
- {
- $body = file_get_contents('php://input');
- Dever::log($body, 'qiniu_callback');
- $body = json_decode($body, true);
- return $body;
- }
- # 视频转码
- 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);
- }*/
- }
- }
|