You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a problem - the library works fine when there is Internet access. However, when this access is not available (i.e. there is no physical connection to the Internet, but the cameras are available via IP), it throws an error in the browser:
Failed to execute 'setRemoteDescription' on 'RTCPeerConnection': Failed to parse SessionDescription. Expect line: v=
Url: http://nnn:8083/stream/receiver/nn then it returns nothing and throws an error. How can this problem be fixed to make the library work even when the Internet is offline?
The text was updated successfully, but these errors were encountered:
Modify line 212 of a file deepch/vdk/format/webrtcv3/adapter.go that he references the library,
case <-waitT. C:
return "", errors.New("gatherCompletePromise wait")
The above two lines are commented out, and then a line is added after the end of the select block.
time.Sleep(time.Millisecond * 1)
Then try compiling the program again.
Hello,
I have a problem - the library works fine when there is Internet access. However, when this access is not available (i.e. there is no physical connection to the Internet, but the cameras are available via IP), it throws an error in the browser:
Failed to execute 'setRemoteDescription' on 'RTCPeerConnection': Failed to parse SessionDescription. Expect line: v=
Url: http://nnn:8083/stream/receiver/nn then it returns nothing and throws an error. How can this problem be fixed to make the library work even when the Internet is offline?
The text was updated successfully, but these errors were encountered: