Search results

  1. Max

    How to configure WCS5 for Freepbx

    You have sent access to Asterisk servers. But all setup should be done at WCS side by two possible ways: 1. Set the needed outbound proxy in frontend Javascript code (Phone Min example) var outboundProxy; if (window.location.hostname === "pbx1web.xposeurope.eu") {...
  2. Max

    [Android] Issue with Android Media Devices example.

    This is the application level task to monitor a network state, not SDK level. Please use ConnectivityManager to register a callback to monitor a network events, and call session.disconnect() in onLost event handler: private ConnectivityManager.NetworkCallback networkCallback = new...
  3. Max

    Encrypted SSL

    We checked the server. There are the following issues: 1. You have not opened the port 443 on the server, so connections to nginx reverse proxy cannot be established. Please open the port 443/tcp. 2. There is no /etc/passwd/.htaccess file on the server. Please create the file and add user and...
  4. Max

    How to configure WCS5 for Freepbx

    Good day. You've sent an access to one server, IP address for second server and SIP credentials. Please clarify what exactly you want us to do. Also, to test a SIP call we need two SIP accounts: caller and callee.
  5. Max

    IOS loudspeaker to Phonemin

    We testing the feature. Please be patient.
  6. Max

    connect failed

    We tested on demo server with settings mixer_display_stream_name=true mixer_decode_stream_name=true mixer_text_font=Dejavu Sans Publishing stream with encoded characters and automatically adding it to mixer: Playing the mixer stream Maybe your font have no o with umlaut character. WCS does...
  7. Max

    How to force a fixed or lower resolution?

    Good day. Please check your frontend code. If resolution constraints are set, a most browsers will publish WebRTC stream with resolution not higher than constraints define. If no resolution constraints set, WebSDK sets 320x240 as default. So looks like you've set 1920x1080 at client side...
  8. Max

    Encrypted SSL

    Please copy the full nginx configuration example from this page: Reverse proxy setup with basic authentication for Websocket Replace the content of nginx.conf file, then change SSL certificate and key paths, domain and WCS IP address in proxy_pass directive. If nginx still does not start...
  9. Max

    connect failed

    You can set the mixer font by the following parameter in flashphoner.properties file mixer_text_font=Dejavu Sans or in offline-mixer.json for multirecording mixer { ..., "mixerTextFont": "Dejavu Sans" } Please note that the font should be installed in system and should be in the X11 fonts...
  10. Max

    Unreponsive due to high CPU usage

    Please try to switch to TCP transport as we recommended above ice_tcp_transport=true
  11. Max

    It's possible to autoplay live stream with unmute sound?

    Good day. No, it is impossible without user clicking a button or some other user interaction with page. This is a most browsers security policy which cannot be abandoned.
  12. Max

    Encrypted SSL

    You have commented server in the head of this block, but left the block uncommented. Either uncomment server or comment all this block.
  13. Max

    connect failed

    Good day. Use encodeURIComponent() method to encode the stream name at client side.
  14. Max

    Unreponsive due to high CPU usage

    This setting will enable TCP transport instead of UDP. It may increase stream latency.
  15. Max

    Unreponsive due to high CPU usage

    Yes. You can. Not need. Yes. It will be saved. You can see actual params any time. Example: sudo sysctl -a | grep rmem net.core.rmem_default = 212992 net.core.rmem_max = 212992 net.ipv4.tcp_rmem = 4096 131072 6291456 net.ipv4.udp_rmem_min = 4096
  16. Max

    Unreponsive due to high CPU usage

    Commited memory is a virtual memory, so it may be greater than a physical one. You can tune UDP socket buffers at system level: UDP socket buffers tuning on system level sudo sysctl -w net.core.rmem_max=26214400 sudo sysctl -w net.core.rmem_default=26214400 Or switch to TCP transport...
  17. Max

    Mixed video file

    Good day. Since WCS build 5.2.1858 it is possible to set avatar pictures automatically by stream name, not using REST API. In this case avatar picture files should be placed to the folder avatar_dir=/usr/local/FlashphonerWebCallServer/avatar A file name should be equal to stream name. For...
  18. Max

    [Android] Issue with Android Media Devices example.

    You should publish the stream again in this case.
  19. Max

    cli apps

    PUBLISHING
  20. Max

    Streams stop working restart of wcs needed

    Hello 1. Gather report sudo /usr/local/FlashphonerWebCallServer/tools/report.sh --sysinfo --conf --dump --tar 2. Send us via this form or directly to support@flashphoner.com if form is not reachable. 3. Our engineers will analyze logs and provide report back here in the thread.
Top