本文整理汇总了Python中opentok.OpenTok.set_broadcast_layout方法的典型用法代码示例。如果您正苦于以下问题:Python OpenTok.set_broadcast_layout方法的具体用法?Python OpenTok.set_broadcast_layout怎么用?Python OpenTok.set_broadcast_layout使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类opentok.OpenTok
的用法示例。
在下文中一共展示了OpenTok.set_broadcast_layout方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: OpenTokBroadcastTest
# 需要导入模块: from opentok import OpenTok [as 别名]
# 或者: from opentok.OpenTok import set_broadcast_layout [as 别名]
#.........这里部分代码省略.........
"streamName": "myfoostream",
"status": "live"
},
"bar": {
"serverUrl": "rtmp://mybarserver/mybarapp",
"streamName": "mybarstream",
"status": "live"
}
}
},
"status": "started"
}""")),
status=200,
content_type=u('application/json')
)
broadcast = self.opentok.get_broadcast(broadcast_id)
validate_jwt_header(self, httpretty.last_request().headers[u('x-opentok-auth')])
expect(httpretty.last_request().headers[u('user-agent')]).to(contain(
u('OpenTok-Python-SDK/')+__version__))
expect(httpretty.last_request().headers[u('content-type')]).to(equal(u('application/json')))
expect(broadcast).to(be_an(Broadcast))
expect(broadcast).to(have_property(u('id'), broadcast_id))
expect(broadcast).to(have_property(u('sessionId'), u('2_MX4xMDBfjE0Mzc2NzY1NDgwMTJ-TjMzfn4')))
expect(broadcast).to(have_property(u('projectId'), 100))
expect(broadcast).to(have_property(u('createdAt'), 1437676551000))
expect(broadcast).to(have_property(u('updatedAt'), 1437676551000))
expect(broadcast).to(have_property(u('resolution'), u('640x480')))
expect(broadcast).to(have_property(u('status'), u('started')))
expect(list(broadcast.broadcastUrls)).to(have_length(2))
expect(list(broadcast.broadcastUrls['rtmp'])).to(have_length(2))
@httpretty.activate
def test_set_broadcast_layout(self):
""" Test set_broadcast_layout() functionality """
broadcast_id = u('1748b707-0a81-464c-9759-c46ad10d3734')
httpretty.register_uri(
httpretty.PUT,
u('https://api.opentok.com/v2/project/{0}/broadcast/{1}/layout').format(
self.api_key,
broadcast_id
),
status=200,
content_type=u('application/json')
)
self.opentok.set_broadcast_layout(broadcast_id, 'horizontalPresentation')
validate_jwt_header(self, httpretty.last_request().headers[u('x-opentok-auth')])
expect(httpretty.last_request().headers[u('user-agent')]).to(contain(
u('OpenTok-Python-SDK/')+__version__))
expect(httpretty.last_request().headers[u('content-type')]).to(equal(u('application/json')))
@httpretty.activate
def test_set_custom_broadcast_layout(self):
""" Test set a custom broadcast layout specifying the 'stylesheet' parameter """
broadcast_id = u('1748b707-0a81-464c-9759-c46ad10d3734')
httpretty.register_uri(
httpretty.PUT,
u('https://api.opentok.com/v2/project/{0}/broadcast/{1}/layout').format(
self.api_key,
broadcast_id
),
status=200,