pili-engineering / pili-sdk-php.v2
Pili Streaming Cloud Server-Side Library For PHP.
Installs: 55 655
Dependents: 0
Suggesters: 0
Security: 0
Stars: 46
Watchers: 13
Forks: 30
Open Issues: 6
Requires
- php: >=5.3.0
Requires (Dev)
- phpunit/phpunit: ~4.0
- squizlabs/php_codesniffer: ~2.0
This package is auto-updated.
Last update: 2024-10-29 04:14:44 UTC
README
Features
- URL
- RTMP推流地址: RTMPPublishURL(domain, hub, streamKey, mac, expireAfterSeconds)
- RTMP直播地址: RTMPPlayURL(domain, hub, streamKey)
- HLS直播地址: HLSPlayURL(domain, hub, streamKey)
- HDL直播地址: HDLPlayURL(domain, hub, streamKey)
- 截图直播地址: SnapshotPlayURL(domain, hub, streamKey)
- Hub
- 创建流: hub->create(streamKey)
- 获得流: hub->stream(streamKey)
- 列出流: hub->listLiveStreams(prefix, limit, marker)
- 列出正在直播的流: hub->listStreams(prefix, limit, marker)
- Stream
- 流信息: stream->info()
- 启用流: stream->enable()
- 禁用流: stream->disable()
- 查询直播状态: stream->liveStatus()
- 保存直播回放: stream->save(start, end)
- 查询直播历史: stream->historyActivity(start, end)
- Room
- 创建房间: room->createRoom()
- 查看房间: room->getRoom()
- 删除房间: room->deleteRoom()
- 生成房间token: room->roomToken()
Contents
Installation
Requirements
- PHP >= 5.3.0
Install with Composer
If you're using Composer to manage dependencies, you can add pili-sdk-php with it.
# Install Composer curl -sS https://getcomposer.org/installer | php
You can add Pili as a dependency using the composer.phar
CLI:
php composer.phar require pili-engineering/pili-sdk-php.v2:dev-master
Alternatively, you can specify pili-sdk-php as a dependency in your project's
existing composer.json
file:
{ "require": { "pili-engineering/pili-sdk-php.v2": "dev-master" } }
After installing, you need to require Composer's autoloader:
require 'vendor/autoload.php';
You can find out more on how to install Composer, configure autoloading, and other best-practices for defining dependencies at http://getcomposer.org.
Install source from GitHub
The pili-sdk-php
requires PHP v5.3+
. Download the PHP library from Github, and require in your script like so:
To install the source code:
$ git clone https://github.com/pili-engineering/pili-sdk-php.v2.git
And include it in your scripts:
require_once '/path/to/pili-sdk-php/lib/Pili_v2.php';
Install source from zip/tarball
Alternatively, you can fetch a tarball or zipball:
$ curl -L https://github.com/pili-engineering/pili-sdk-php.v2/tarball/master | tar xzv (or) $ wget https://github.com/pili-engineering/pili-sdk-php.v2/tarball/master -O - | tar xzv
And include it in your scripts:
require_once '/path/to/pili-sdk-php/lib/Pili_v2.php';
Usage
Configuration
// Change API host as necessary // // pili.qiniuapi.com as default // pili-lte.qiniuapi.com is the latest RC version // // $cfg = \Pili\Config::getInstance(); // $cfg->API_HOST = 'pili.qiniuapi.com'; // default
Url
Generate RTMP publish URL
$url=$stream->RTMPPublishURL("publish-rtmp.test.com", $hubName, $streamKey, 3600,$ak,$sk); /* rtmp://publish-rtmp.test.com/PiliSDKTest/streamkey?e=1463023142&token=7O7hf7Ld1RrC_fpZdFvU8aCgOPuhw2K4eapYOdII:-5IVlpFNNGJHwv-2qKwVIakC0ME= */
Generate RTMP play URL
$url=$stream->RTMPPlayURL("live-rtmp.test.com", $hubName, $streamKey); /* rtmp://live-rtmp.test.com/PiliSDKTest/streamkey */
Generate HLS play URL
$url=$stream->HLSPlayURL("live-hls.test.com", $hubName, $streamKey); /* http://live-hls.test.com/PiliSDKTest/streamkey.m3u8 */
Generate HDL play URL
$url=$stream->HDLPlayURL("live-hdl.test.com", $hubName, $streamKey); /* http://live-hdl.test.com/PiliSDKTest/streamkey.flv */
Generate snapshot play URL
$url=$stream->SnapshotPlayURL("live-snapshot.test.com", $hubName, $streamKey); /* http://live-snapshot.test.com/PiliSDKTest/streamkey.jpg */
Hub
Instantiate a pili hub object
// Instantiate an Hub object $ak = "7O7hf7Ld1RrC_fpZdFvU8aCgOPuhw2K4eapYOdII"; $sk = "6Rq7rMSUHHqOgo0DJjh15tHsGUBEH9QhWqqyj4ka"; $hubName = "PiliSDKTest"; $mac = new Qiniu\Pili\Mac($ak, $sk); $client = new Qiniu\Pili\Client($mac); $hub = $client->hub($hubName);
Create a new stream
try{ $streamKey="php-sdk-test".time(); $resp=$hub->create($streamKey); print_r($resp); }catch(\Exception $e) { echo "Error:",$e; } /* {hub:hubname,key:streamkey,disabled:false} */
Get a stream
try{ $streamKey="php-sdk-test".time(); $resp=$hub->stream($streamKey); print_r($resp); }catch(\Exception $e) { echo "Error:",$e; } /* {hub:hubname,key:streamkey,disabled:false} */
List streams
try{ $streamKey="php-sdk-test".time(); $resp=$hub->listStreams($streamKey, 1, ""); print_r($resp); }catch(\Exception $e) { echo "Error:",$e; } /* keys=[streamkey] marker= */
List live streams
try{ $streamKey="php-sdk-test".time(); $resp=$hub->listLiveStreams($streamKey, 1, ""); print_r($resp); }catch(\Exception $e) { echo "Error:",$e; } /* keys=[streamkey] marker= */
Stream
Get stream info
try{ $resp = $stream->info(); }catch(\Exception $e) { echo "Error:",$e; } /* {hub:PiliSDKTest,key:streamkey,disabled:false} */
Disable a stream
try{ $resp = $stream->info(); print_r($resp); $stream->disable(); $resp = $stream->info(); print_r($resp); }catch(\Exception $e) { echo "Error:",$e; } /* before disable: {hub:PiliSDKTest,key:streamkey,disabled:false} after disable: {hub:PiliSDKTest,key:streamkey,disabled:true} */
Enable a stream
try{ $resp = $stream->info(); print_r($resp); $stream->enable(); $resp = $stream->info(); print_r($resp); }catch(\Exception $e) { echo "Error:",$e; } /* before enable: {hub:PiliSDKTest,key:streamkey,disabled:true} after enable: {hub:PiliSDKTest,key:streamkey,disabled:false} */
Get stream live status
try{ $status=$stream->liveStatus(); print_r($status); }catch(\Exception $e) { echo "Error:",$e; } /* {StartAt:1463382400 ClientIP:172.21.1.214:52897 BPS:128854 FPS:{Audio:38 Video:23 Data:0}} */
Get stream history activity
$records= $stream->historyActivity(0,0); print_r($records); /* [{1463382401 1463382441}] */
Save stream live playback
try{ $fname=$stream->save(0,0); print_r($fname); }catch(\Exception $e) { echo "Error:",$e; } /* recordings/z1.PiliSDKTest.streamkey/1463156847_1463157463.m3u8 */
Room
Create a room
$ak = "Tn8WCjE_6SU7q8CO3-BD-yF4R4IZbHBHeL8Q9t"; $sk = "vLZNvZDojo1F-bYOjOqQ43-NYqlKAej0e9OweInh"; $mac = new Qiniu\Pili\Mac($ak, $sk); $client = new Qiniu\Pili\RoomClient($mac); $resp=$client->createRoom("901","testroom"); print_r($resp);
Get a room
$ak = "Tn8WCjE_6SU7q8CO3-BD-yF4R4IZbHBHeL8Q9t"; $sk = "vLZNvZDojo1F-bYOjOqQ43-NYqlKAej0e9OweInh"; $mac = new Qiniu\Pili\Mac($ak, $sk); $client = new Qiniu\Pili\RoomClient($mac); $resp=$client->getRoom("testroom"); print_r($resp);
Delete a room
$ak = "Tn8WCjE_6SU7q8CO3-BD-yF4R4IZbHBHeL8Q9t"; $sk = "vLZNvZDojo1F-bYOjOqQ43-NYqlKAej0e9OweInh"; $mac = new Qiniu\Pili\Mac($ak, $sk); $client = new Qiniu\Pili\RoomClient($mac); $resp=$client->deleteRoom("testroom"); print_r($resp);
Generate a room token
$ak = "Tn8WCjE_6SU7q8CO3-BD-yF4R4IZbHBHeL8Q9t"; $sk = "vLZNvZDojo1F-bYOjOqQ43-NYqlKAej0e9OweInh"; $mac = new Qiniu\Pili\Mac($ak, $sk); $client = new Qiniu\Pili\RoomClient($mac); $resp=$client->roomToken("testroom","123",'admin',1785600000000); print_r($resp);
History
-
2.0.0
- pili.v2
-
1.5.4
- Use $stream->saveAs in $stream->hlsPlaybackUrls
-
1.5.3
- Update $stream->disable($disabledTill)
-
1.5.2
- Update $stream->rtmpPublishUrl()
-
1.5.1
- Update API
- $hub->listStreams($marker=NULL, $limit=NULL, $title_prefix=NULL, $status=NULL)
- $stream->saveAs($name, $format=NULL, $start=NULL, $end=NULL, $notifyUrl=NULL, $pipeline=NULL)
- $stream->snapshot($name, $format, $time=NULL, $notifyUrl=NULL, $pipeline=NULL)
- $stream->hlsPlaybackUrls($start=-1, $end=-1)
- Update API
-
1.5.0
- Add Credentials and Transport class
- Renamed $client to $hub
-
1.4.0
- Add Stream Create,Get,List
- $hub->createStream()
- $hub->getStream()
- $hub->listStreams()
- Add Stream operations else
- $stream->toJSONString()
- $stream->update()
- $stream->disable()
- $stream->enable()
- $stream->status()
- $stream->segments()
- $stream->rtmpPublishUrl()
- $stream->rtmpLiveUrls()
- $stream->hlsLiveUrls()
- $stream->httpFlvLiveUrls()
- $stream->hlsPlaybackUrls()
- $stream->snapshot()
- $stream->saveAs()
- $stream->delete()
- Add Stream Create,Get,List