# 安装 SDK
pip install pili2
# 示例代码
import time
import pili
AccessKey = "" # 替换成自己 Qiniu 账号的 AccessKey
SecretKey = "" # 替换成自己 Qiniu 账号的 SecretKey
hub_name = "" # Hub 必须事先存在
mac = pili.Mac(AccessKey, SecretKey)
client = pili.Client(mac)
stream_title1 = 'demo'
stream_pre = ''
# Generate RTMP publish URL
print ("RTMP publish URL:")
print (pili.rtmp_publish_url("publish-rtmp.yourdomain.com", hub_name, stream_title1, mac, 60))
#Generate RTMP play URL
print ("RTMP play URL:")
print (pili.rtmp_play_url("live-rtmp.yourdomain.com", hub_name, stream_title1))
#Generate HLS play URL
print ("HLS live URL:")
print (pili.hls_play_url("live-hls.yourdomain.com", hub_name, stream_title1))
# http://live-hls.yourdomain.com/PiliSDKTest/streamtitle.m3u8
#Generate HDL play URL
print ("HDL live URL:")
print (pili.hdl_play_url("live-hdl.yourdomain.com", hub_name, stream_title1))
# Generate Snapshot play URL
print ("snapshot URL:")
print (pili.snapshot_play_url("live-snapshot.yourdomain.com", hub_name, stream_title1))
# Hub
# Instantiate a Pili Hub object
mac = pili.Mac(AccessKey, SecretKey)
client = pili.Client(mac)
hub = client.hub(hub_name)
# Create a new Stream
# stream = hub.create(stream_title1)
# print ("create stream:")
# print (stream)
# Get a Stream
print ("get stream:")
stream = hub.get(stream_title1)
print (stream)
# List Streams
print ("list streams:")
print (hub.list(prefix=stream_pre, limit=2))