簡體   English   中英

Pubnub-歷史API的問題

[英]Pubnub - Issue with history API

我們正在使用Pubnub Webrtc API進行Webrtc視頻通話,並且已在我們的Pubnub帳戶中啟用了“媒體回放選項”。

我們能夠成功進行視頻通話,但是在訪問歷史記錄API時,我們僅獲取快照而不是視頻。

歷史API的代碼:

PHONE.history = function(settings) {
            pubnub.history({
                channel  : settings['number'],
                callback : function(call_history) {
                    settings['history'](call_history[0]);
                },
                count:10,
                reverse: true
            })
        };

任何的意見都將會有幫助。

Pubnub負責信令而不是媒體。

如果您想處理媒體-諸如錄音或進行多方通話等操作,則還需要其他功能。

如果您想使用托管服務,請嘗試使用Tokbox( https://tokbox.com/ )。 如果您想自己動手做,請嘗試Kurento( http://www.kurento.org )。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM