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


Python OpenTok.set_broadcast_layout方法代碼示例

本文整理匯總了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,
開發者ID:opentok,項目名稱:Opentok-Python-SDK,代碼行數:70,代碼來源:test_broadcast.py


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