All Projects → aliyunapi → php-aliyun-open-api-live

aliyunapi / php-aliyun-open-api-live

Licence: Apache-2.0 license
阿里云直播API,使用guzzleHttp 中间件方式实现,单文件

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to php-aliyun-open-api-live

Ant-Live
【基于JAVA开发的在线直播平台】Ant Live;腾讯云直播服务;直播鉴黄;礼物;支付宝充值提现;弹幕聊天室;前端后分离;SpringBoot;直播平台开发;
Stars: ✭ 28 (+55.56%)
Mutual labels:  live
live-graph
Simple live graph with Flask and SocketIO
Stars: ✭ 17 (-5.56%)
Mutual labels:  live
aliddns
阿里云动态DNS解析。
Stars: ✭ 17 (-5.56%)
Mutual labels:  aliyun
SuperCTF
A multiplayer capture the flag game made in Godot with love and blood. Running live at www.superctf.com
Stars: ✭ 26 (+44.44%)
Mutual labels:  live
TianChiProj
🏆🥈🥉 TianChiProj 天池
Stars: ✭ 22 (+22.22%)
Mutual labels:  aliyun
node-rtmp-hls
NodeJS live stream server with HLS ABR support
Stars: ✭ 55 (+205.56%)
Mutual labels:  live
open-securekos
Open Secure-K OS is an operating system booting from a USB key in which you can safely create and store your personal and private data. It is a next generation live operating system following liveng patterns. Please refer to Resilient Linux, a fork of Open Secure-K OS which is actively developed.
Stars: ✭ 23 (+27.78%)
Mutual labels:  live
rt-mrcnn
Real time instance segmentation with Mask R-CNN, live from webcam feed.
Stars: ✭ 47 (+161.11%)
Mutual labels:  live
ali-img
阿里云图像处理工具包
Stars: ✭ 16 (-11.11%)
Mutual labels:  aliyun
acfunlive-backend
AcFun直播通用后端
Stars: ✭ 19 (+5.56%)
Mutual labels:  live
comfy-channel
A 24/7 live video broadcast with automatic content selection and overlays using FFMPEG and Python!
Stars: ✭ 37 (+105.56%)
Mutual labels:  live
craft-youtubeliveembed
This plugin allows you to embed a YouTube live stream and/or live chat on your webpage
Stars: ✭ 14 (-22.22%)
Mutual labels:  live
react-native-agoraio
声网agora.io React-Native模块封装 支持iOS / Android
Stars: ✭ 22 (+22.22%)
Mutual labels:  live
i3blocks-crypto
💵 View your favorite coins' ticker prices with i3blocks.
Stars: ✭ 30 (+66.67%)
Mutual labels:  live
ee.Yrewind
Can rewind and save YouTube live stream
Stars: ✭ 133 (+638.89%)
Mutual labels:  live
kiel-live
This app allows you to view live updates of bus arrivals.
Stars: ✭ 20 (+11.11%)
Mutual labels:  live
pixiv func android
功能齐全的Pixiv第三方客户端 免代理 支持查看动图查看直播
Stars: ✭ 167 (+827.78%)
Mutual labels:  live
liveshop
融合电商与直播的跨平台APP,主要采用了Flutter技术开发而成,目前开发中
Stars: ✭ 24 (+33.33%)
Mutual labels:  live
yii2-dysms
阿里云 dysms 官方 SDK 的 Composer 封装,支持 yii2 项目。
Stars: ✭ 13 (-27.78%)
Mutual labels:  aliyun
aliyun-oss-wordpress
使用阿里云对象存储 OSS 作为附件存储空间的WordPress插件。QQ交流群:887595381
Stars: ✭ 56 (+211.11%)
Mutual labels:  aliyun

php-aliyun-open-api-live

Build Status Latest Stable Version Total Downloads

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist aliyunapi/php-aliyun-open-api-live

or add

"aliyunapi/php-aliyun-open-api-live": "~1.0"

to the require section of your composer.json.

使用方式

$live = new \aliyun\live\Client([
    'accessKeyId' => '123456',
    'accessSecret' => '123456'
    'appName' => 'live',
    'domain' => 'live.cctv.com',
    'pushAuth' => '1234567',
]);

//发送接口请求
$package = [
    'Action' => 'DescribeLiveStreamsPublishList',
    'DomainName' => 'live.cctv.com',
    'StartTime' => gmdate('Y-m-d\TH:i:s\Z', strtotime('2017-03-15')),
    'EndTime' => gmdate('Y-m-d\TH:i:s\Z', strtotime('2017-04-01')),
];
$response = $live->createRequest($package);
print_r($response);
//非请求接口
生成推流地址
$live->getPushPath();
$live->getPushArg($uuid);

//获取播放地址
$live->getPlayUrls($uuid);

exit;
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].