當前位置: 首頁>>代碼示例>>Python>>正文


Python CloudFrontConnection.get_all_streaming_distributions方法代碼示例

本文整理匯總了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)
開發者ID:mattmeisinger,項目名稱:a2bamberg,代碼行數:14,代碼來源:cloudfront.py


注:本文中的boto.cloudfront.CloudFrontConnection.get_all_streaming_distributions方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。