Search results

  1. Max

    change wss default port

    WCS has no network packets routing functions. You need to place both WCS and SIP server to your private network and set up a router with NAT to forward websocket and media ports connections from web clients to WCS:
  2. Max

    change wss default port

    If piblic IP and local IP are bound to a different network interfaces, you should 1. Set WCS IP options as follows ip=your_public_ip ip_local=your_public_ip 2. In /etc/hosts file, set SIP server domain name sip_server_ip sip-server 3. When making a call, use SIP server domain name in SIP...
  3. Max

    change wss default port

    Try to detect WCS IP settings automatically: cd /usr/local/FlashphonerWebCallServer/bin sudo ./webcallserver set-ip Then restart server. Check if WebRTC is working (without SIP) using Two Way Streaming example. If it works, test SIP case.
  4. Max

    change wss default port

    Please clarify: is WCS instance in private network behind NAT? If yes, you should either set up a router to forward media ports (31000-32000 by default) to the WCS instance (both TCP and UDP) or use a TURN server to bypass.
  5. Max

    Проблема с разрешением на ios

    Room Api дает только дополнительный сигналинг для комнаты, за публикацию в Room Api примерах и других примерах отвечают одни и те же модули. Мы воспроизвели проблему, в том числе и в Media Devices, и выглядит так, что это проблема браузера именно на iOS. Мы передаем браузеру нужные констрейнты...
  6. Max

    change wss default port

    Option 1 To have public address for demo interface, you would need to configure nginx as a reverse proxy I.e. Nginx listening public address 88.88.88.88 on port 8444 > 127.0.0.1:8444 So when you open demo page https://88.88.88.88:8444, nginx will display content of the page...
  7. Max

    Mixer text - can't remove room name from stream label text

    Good day. We confirm the issue. Raised the ticket WCS-3805, will let you know about progress here.
  8. Max

    mixer question

    Good day. We fixed the issue in build 5.2.1621. A mixer can be used with compact_media_port_usage=true now.
  9. Max

    Проблема с разрешением на ios

    Добрый день. Проверьте, воспроизводится ли проблема в примере Media Devices (исходный код) в последней сборке Web SDK 2.0.228. Если проблема не воспроизводится, модифицируйте код примера минимально таким образом, чтобы проблема воспроизводилась, и пришлите, используя эту форму. Возможно...
  10. Max

    App not responding

    Good day. This is a SIP stack initialization performing on server startup. You can disable it with the option: sip.pre_init=false The report contains no significant errors except SSL certificates issue: Seems like SSL certificate storage wss.jks with a valid certificate is not provided in a...
  11. Max

    Filter Rest API Streams & Terminate by Custom Data

    You should establish your own websocket connection to your custom backend and send appropriate message to the client. Then in client code you can display the message. Another option is to form a web page on custom backend and periodically check it from a client.
  12. Max

    Download SDKs buttons opens Atlassian page

    We fixed the web page, links are actual now.
  13. Max

    webrtc Stream going delay

    Use Stream.muteAudio() or Stream.muteVideo() methods to mute publishing audio/video and a corresponding unmute method: example code. Use Stream.muteRemoteAudio() method to mute playing audio and a corresponding unmute method: example code.
  14. Max

    Download SDKs buttons opens Atlassian page

    Hello We had docs automation issues. Some release notes links have been changed. iOS SDK Docs https://docs.flashphoner.com/display/IOSSDK2EN Release notes IOS SDK 2.6 https://docs.flashphoner.com/static/iOSSDK2/iOS_SDK_release_notes/iOS_SDK_2.6_release_notes/#ios_sdk_26_release_notes Release...
  15. Max

    Urgent - Wss failed

    Hello Make sure port 8443 is listening and reachable: $ telnet studiowss.styck.com 8443 telnet: could not resolve studiowss.styck.com/8443: Name or service not known netstat -nlp | grep 8443 Make sure server is running: ps aux | grep java
  16. Max

    webrtc Stream going delay

    Yes. The configuration seems to be close to tested configs, so it can be used for 1000 viewers per one 720p stream Please read the articles: 1, 2, 3, the case description. The recommendations for a loaded origin or edge will be the same as for single server. You need 5 edge server of...
  17. Max

    webrtc Stream going delay

    You should use the same or more powerful config for a second server which emulates viewers. In this case you should use CDN (1 origin and 5 edge servers). Please look at this article and the technical docs.
  18. Max

    webrtc Stream going delay

    What server configuration do you use? What is the source stream parameters? Do you test according to the method described in the article? Usually, we do not recommend more than 2000 subscribers per one server. Also, we recommend to use a hardware dedicated server for high load, not virtual. Note...
  19. Max

    webrtc Stream going delay

    Good day. Please read this article about a high load tuning and testing: What kind of server do you need to run a thousand WebRTC streams?
  20. Max

    RTP/RTSP/RTMP

    Проблема исправлена в сборке 5.2.1609.
Top