Search results

  1. Max

    Flashphoner to listen only in local IP

    This is a default WCS bindings and ports. You should restart WCS after changing the IP and listening address options systemctl restart webcallserver
  2. Max

    Flashphoner to listen only in local IP

    Hello Websocket configuration: 8080 ws.address = 0.0.0.0 8443 wss.address = 0.0.0.0
  3. Max

    Плохое качество связи и согласование вызовов по TCP

    Добрый день. Настройка sip_force_tcp=false должна помочь. При этом лучше добавить настройку allow_outside_codecs=false чтобы SDP звонка не раздувалась лишними кодеками от клиентского браузера.
  4. Max

    Flashphoner to listen only in local IP

    Good day. Try to set as follows: https.address=10.121.120.26 ws.address=10.121.120.26 wss.address=10.121.120.26 client_mode=true
  5. Max

    ios Звук из верхнего динамика при воспроизведении видео

    Добрый день. Пожалуйста, используйте метод WCSStream.setLoudspeakerStatus() для того, чтобы переключиться на внешний динамик. setLoudspeakerStatus(true) переключает звук на внешний динамик, setLoudspeakerStatus(false) возвращает на голосовой. Пример использования в приложении Media Devices...
  6. Max

    change wss default port

    You can also try the recommended setup with the following WCS option client_mode=true
  7. Max

    change wss default port

    Please check is there any freezes when publishing and playing a stream using Media Devices example (with various resolutions/bitrates). If no freezes in this case, the bottleneck is probably between WCS and SIP server because media traffic goes via SIP server. So you should test a channel...
  8. 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:
  9. 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...
  10. 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.
  11. 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.
  12. Max

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

    Room Api дает только дополнительный сигналинг для комнаты, за публикацию в Room Api примерах и других примерах отвечают одни и те же модули. Мы воспроизвели проблему, в том числе и в Media Devices, и выглядит так, что это проблема браузера именно на iOS. Мы передаем браузеру нужные констрейнты...
  13. 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...
  14. 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.
  15. 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.
  16. Max

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

    Добрый день. Проверьте, воспроизводится ли проблема в примере Media Devices (исходный код) в последней сборке Web SDK 2.0.228. Если проблема не воспроизводится, модифицируйте код примера минимально таким образом, чтобы проблема воспроизводилась, и пришлите, используя эту форму. Возможно...
  17. 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...
  18. 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.
  19. Max

    Download SDKs buttons opens Atlassian page

    We fixed the web page, links are actual now.
  20. 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.
Top