Search results

  1. Max

    Transcoding video decoding queue size issue

    Good day. Please make sure you've done the perfomance tuning described here (espesially p 11, 12, 13), and stream distribution optimization is enabled. Also, you coonfuguration seems not enough for 1700 subscribers. In our tests in the article What kind of server do you need to run a thousand...
  2. Max

    Using special character "@" in password

    Good day. All the special characters in RTSP URL must be escaped (URI encoded). Also, username should be divided from password by :. For example, the correct URL is: rtsp://username:oaass%40123@someit:544/someaddress
  3. Max

    Cannot access web interface

    Checked the server - the admin panel is working.
  4. Max

    Cannot access web interface

    Please provide SSH access to the instance using this form, we will check
  5. Max

    Cannot access web interface

    Good day. Seems like the server is not running. Please restart it sudo systemctl restart webcallserver If the problem still persists, please provide SSH access to the instance using this form
  6. Max

    systemctl restart webcallserver hangs b/c of chown process

    This behaviour concerns AWS EC2 instances only. In AWS EC2, we recommend to clean the logs keeping folders structure: find /usr/local/FlashphonerWebCallServer/logs/ -type f -delete rm -rf /usr/local/FlashphonerWebCallServer/logs/client_logs/*
  7. Max

    Logging messages that the client device receives from kFPWCSStreamStatus

    Good day. This is client logs pushing feature. It is intended to push client browser logs to server logs and is working for WebSDK only. All the stream states are logged in server log on the INFO level: 07:30:06,819 INFO RestClient - API-ASYNC-pool-13-thread-8 SEND REST OBJECT ==>...
  8. Max

    Prometheus SIP metrics details

    Good day. All the SIP metrics are described in this table (see call_stats and sip_stats sections): sip_calls Number of SIP calls sip_calls_established Number of active SIP calls sip_calls_in Number of incoming SIP calls sip_calls_out Number of outgoing SIP calls...
  9. Max

    Flashphoner error

    Pulling HLS (using for playback HLS URL for a stream published not on the WCS) is not supported. External stream can be pulled as RTMP or RTSP. Stream published on WCS can be played as HLS.
  10. Max

    Internal turn question

    This option enables WebRTC over TCP feature. In this case, RTP traffic goes over TCP instead of UDP. It requires the same media ports to be opened for incoming connections, for example 31001-32000/tcp. Those ports are used subsequentally. TURN feature is intended to bypass firewalls because it...
  11. Max

    Internal turn question

    Good day. There is no known TURN server implementation working with WebRTC over TCP, because TURN actually wraps media UDP traffic to TCP. So you can either use TURN or use WebRTC over TCP, but not both.
  12. Max

    Подписи потоков при использовании языка разметки

    WCS-3389 - исправлено в сборке 5.2.1092.
  13. Max

    Подписи потоков при использовании языка разметки

    Добрый день. По этой проблеме есть тикет WCS-3389. Сообщим здесь, когда будет исправление.
  14. Max

    Рекомендации по использованию микшеров.

    Добрый день. В сборке 5.2.1091 добавлена возможность описать вариант размещения картинок с демонстрацией экрана для определенного количества участников. Подробности читайте здесь.
  15. Max

    Stream is not playing

    Good day. You should not buy any additional license because recording features are already included. You can record all the REST streams captured by adding the following parameter to flashphoner.properties file: record_rtsp_streams=true Please also read the details about stream recording here.
  16. Max

    SIP phone is working, Video Demos are not

    We checked your server. About PHP warning: the reason is here: $api_method = array_pop(explode("/", $_SERVER['REQUEST_URI'])); Just replace it to $request_uri = $_SERVER['REQUEST_URI']; $api_method = array_pop(explode("/", $request_uri)); and warning should not appear again. About...
  17. Max

    SIP phone is working, Video Demos are not

    Please check line 2 of your index.php script, may be you're passing array to a function. In the log we see that stream is not publishing due to NPE 01:57:08,866 ERROR MediaHandler - API-ASYNC-pool-7-thread-119 publishStream exception java.lang.NullPointerException ... 01:57:08,866...
  18. Max

    Rtmp republish quality

    If there is no transcoding on WCS while republishing a WebRTC stream as RTMP, outgoing RTMP stream bitrate is always the same as published strem bitrate. Our tests with the latest Firefox build confirm that. So please check WebRTC incoming bitrate on WCS using REST API queries /stream/find or...
  19. Max

    https//:localhost:8444/ not opening

    You should buy a valid SSL certificate, then import it via web intefrace as described here.
  20. Max

    Setup SIP with FlashPhoner

    Good day. We fixed the connection to an existing session issue in WCS build 5.2.1087, Phone Min example corresponding fix is in WebSDK build 2.0.206. Please read this docs for details: Connection to an existing session We also raised the tickets to implement this feature support in Android SDK...
Top