七牛云存储 - 七牛 php sdk 上传 转码 问题

WBOY
Release: 2016-06-06 20:36:18
Original
1722 people have browsed it

实在是不会用 sdk 呀 都蒙圈了

求大神 指点

<code>        vendor('Qiniu.io');
        vendor('Qiniu.rs');

        $bucket = 'icunzai-voice';
        $key = $filename;

        $client = new \Qiniu_MacHttpClient(null);
        $putPolicy = new \Qiniu_RS_PutPolicy("$bucket:$key");
        $putPolicy->CallbackUrl = U('/Wechat/Bottle/voic_allback','','',true);  //回调地址
        $putPolicy->CallbackBody = 'key=$(key)&hash=$(etag)';
        $upToken = $putPolicy->Token();
        $putExtra = new \Qiniu_PutExtra();
        list($ret, $err) = Qiniu_Put($upToken, $key, $media["mediaBody"], $putExtra);
        if ($ret !== null) {
            return $ret;
        }else{
            return $err;
        }
</code>
Copy after login
Copy after login

现在的情况是 上传成功 但是 我如何 上传 并且 同时 进行转码呢 ?

求大神指点一下

还有 官方demo 是7.0 但是客服推荐使用 6.113

我使用的是 6.113

回复内容:

实在是不会用 sdk 呀 都蒙圈了

求大神 指点

<code>        vendor('Qiniu.io');
        vendor('Qiniu.rs');

        $bucket = 'icunzai-voice';
        $key = $filename;

        $client = new \Qiniu_MacHttpClient(null);
        $putPolicy = new \Qiniu_RS_PutPolicy("$bucket:$key");
        $putPolicy->CallbackUrl = U('/Wechat/Bottle/voic_allback','','',true);  //回调地址
        $putPolicy->CallbackBody = 'key=$(key)&hash=$(etag)';
        $upToken = $putPolicy->Token();
        $putExtra = new \Qiniu_PutExtra();
        list($ret, $err) = Qiniu_Put($upToken, $key, $media["mediaBody"], $putExtra);
        if ($ret !== null) {
            return $ret;
        }else{
            return $err;
        }
</code>
Copy after login
Copy after login

现在的情况是 上传成功 但是 我如何 上传 并且 同时 进行转码呢 ?

求大神指点一下

还有 官方demo 是7.0 但是客服推荐使用 6.113

我使用的是 6.113

有6.x版本的demo https://github.com/jemygraw/qiniu-lab-php/blob/v6/demos/upload/video_u... 上传的时候指定转码操作的demo,修改下 PersistentOps 的处理参数就可以。

第一次使用 七牛 不是很懂

官方demo 是7.0 和本地的 6.113 对应不起来

主要想实现的功能是

从微信接口下载来的 .amr 音频文件 转码成 .MP3从网页播放

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!