mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
43 lines
1.1 KiB
PHP
43 lines
1.1 KiB
PHP
<?php
|
|
require_once __DIR__ . '/../autoload.php';
|
|
|
|
use Qiniu\Auth;
|
|
use Qiniu\Processing\PersistentFop;
|
|
|
|
//对已经上传到七牛的视频发起异步转码操作
|
|
|
|
$accessKey = 'Access_Key';
|
|
$secretKey = 'Secret_Key';
|
|
$auth = new Auth($accessKey, $secretKey);
|
|
|
|
//要转码的文件所在的空间和文件名。
|
|
$bucket = 'Bucket_Name';
|
|
$key = 'File_Name_On_Qiniu';
|
|
|
|
//转码是使用的队列名称。 https://portal.qiniu.com/mps/pipeline
|
|
$pipeline = 'pipeline_name';
|
|
|
|
//转码完成后通知到你的业务服务器。
|
|
$notifyUrl = 'http://375dec79.ngrok.com/notify.php';
|
|
$pfop = new PersistentFop($auth, $bucket, $pipeline, $notifyUrl);
|
|
|
|
//要进行视频截图操作
|
|
$fops = "vframe/jpg/offset/1/w/480/h/360/rotate/90";
|
|
|
|
list($id, $err) = $pfop->execute($key, $fops);
|
|
echo "\n====> pfop avthumb result: \n";
|
|
if ($err != null) {
|
|
var_dump($err);
|
|
} else {
|
|
echo "PersistentFop Id: $id\n";
|
|
}
|
|
|
|
//查询转码的进度和状态
|
|
list($ret, $err) = $pfop->status($id);
|
|
echo "\n====> pfop avthumb status: \n";
|
|
if ($err != null) {
|
|
var_dump($err);
|
|
} else {
|
|
var_dump($ret);
|
|
}
|