本文整理匯總了Python中boto.cloudfront.CloudFrontConnection.get_all_streaming_distributions方法的典型用法代碼示例。如果您正苦於以下問題:Python CloudFrontConnection.get_all_streaming_distributions方法的具體用法?Python CloudFrontConnection.get_all_streaming_distributions怎麽用?Python CloudFrontConnection.get_all_streaming_distributions使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類boto.cloudfront.CloudFrontConnection
的用法示例。
在下文中一共展示了CloudFrontConnection.get_all_streaming_distributions方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: distribute
# 需要導入模塊: from boto.cloudfront import CloudFrontConnection [as 別名]
# 或者: from boto.cloudfront.CloudFrontConnection import get_all_streaming_distributions [as 別名]
def distribute(s3_url):
c = CloudFrontConnection(config['aws-access-key'].strip(), config['aws-secret-access-key'].strip())
rs = c.get_all_streaming_distributions()
try:
ds = rs[0]
distro = ds.get_distribution()
except IndexError:
origin = '{}.s3.amazonaws.com'.format(config['aws-bucket-name'])
s3_origin = S3Origin(dns_name=origin)
distro = c.create_streaming_distribution(origin=s3_origin, enabled=True, comment="Streaming Videos")
key_name = s3_url.split('/')[-1]
return 'rtmp://{}/cfx/st/mp4:{}'.format(distro.domain_name, key_name)