1

我有一个sipml5网络客户端,我可以成功地调用它。但是当呼叫者挂断时,Web 客户端并没有挂断电话。我想我错过了sipml5API 中的一个事件。我在 chrome 控制台中收到此错误,

this.o_local_stream.stop is not a function  

但我不确定如何解决这个问题。

4

2 回答 2

2

由于某些媒体流弃用,这发生在 chrome 版本 > 45 中。在较新版本的 chrome 中,MediaStream.stop() 已被弃用并由 MediaStreamTrack.stop() 取代。sipML5 API 尚未修改以接受这些更改。 https://github.com/DoubangoTelecom/sipml5/issues/231

Just checkout this link for more info.
于 2016-01-21T06:42:28.633 回答
0

当我更新库时,我的问题解决了。

我用过:https ://raw.githubusercontent.com/DoubangoTelecom/sipml5/master/release/SIPml-api.js

于 2016-02-22T11:04:52.677 回答