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


Python OpenTok.get_broadcast方法代碼示例

本文整理匯總了Python中opentok.OpenTok.get_broadcast方法的典型用法代碼示例。如果您正苦於以下問題:Python OpenTok.get_broadcast方法的具體用法?Python OpenTok.get_broadcast怎麽用?Python OpenTok.get_broadcast使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在opentok.OpenTok的用法示例。


在下文中一共展示了OpenTok.get_broadcast方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: OpenTokBroadcastTest

# 需要導入模塊: from opentok import OpenTok [as 別名]
# 或者: from opentok.OpenTok import get_broadcast [as 別名]

#.........這裏部分代碼省略.........
            httpretty.POST,
            u('https://api.opentok.com/v2/project/{0}/broadcast/{1}/stop').format(
                self.api_key,
                broadcast_id
            ),
            body=textwrap.dedent(u("""\
                {
                    "id": "1748b7070a81464c9759c46ad10d3734",
                    "sessionId": "2_MX4xMDBfjE0Mzc2NzY1NDgwMTJ-TjMzfn4",
                    "projectId": 100,
                    "createdAt": 1437676551000,
                    "updatedAt": 1437676551000,
                    "resolution": "640x480",
                    "broadcastUrls": null
                }""")),
            status=200,
            content_type=u('application/json')
        )

        broadcast = self.opentok.stop_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'), u('1748b7070a81464c9759c46ad10d3734')))
        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')))

    @httpretty.activate
    def test_get_broadcast(self):
        """
        Test get_broadcast() method
        """
        broadcast_id = u('1748b707-0a81-464c-9759-c46ad10d3734')

        httpretty.register_uri(
            httpretty.GET,
            u('https://api.opentok.com/v2/project/{0}/broadcast/{1}').format(
                self.api_key,
                broadcast_id
            ),
            body=textwrap.dedent(u("""\
                {
                    "id": "1748b707-0a81-464c-9759-c46ad10d3734",
                    "sessionId": "2_MX4xMDBfjE0Mzc2NzY1NDgwMTJ-TjMzfn4",
                    "projectId": 100,
                    "createdAt": 1437676551000,
                    "updatedAt": 1437676551000,
                    "resolution": "640x480",
                    "broadcastUrls": {
                        "hls" : "http://server/fakepath/playlist.m3u8",
                        "rtmp": {
                            "foo": {
                                "serverUrl": "rtmp://myfooserver/myfooapp",
                                "streamName": "myfoostream",
                                "status": "live"
                            },
                            "bar": {
                                "serverUrl": "rtmp://mybarserver/mybarapp",
                                "streamName": "mybarstream",
                                "status": "live"
                            }
開發者ID:opentok,項目名稱:Opentok-Python-SDK,代碼行數:70,代碼來源:test_broadcast.py


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