Search results

  1. Max

    Кодек WebRTC

    Если статус INTERNAL_SIP_ERROR стабильно воспроизводится, воспроизведите проблему, соберите полный отчет: Сбор отладочных логов при помощи скрипта report.sh и пришлите, используя эту форму.
  2. Max

    How to configure WCS5 for Freepbx

    If you have two PBX domains, and you want to connect one of them to make a call, you should use RegistrationStatusEvent REST hook to check if connection to PBX is successful. Your backend receives ConnectionStatusEvent then RegistrationStatusEvent if PBX is available and ConnectionStatusEvent...
  3. Max

    Encrypted SSL

    We see a lot of Failed to allocate port messages in server logs after WCS startup. Seems like on the server instance startup the network stack is started later than WCS: In this case WCS cannot bind media ports because the network stack is not fully active yet. You should restart WCS manually...
  4. Max

    Stream multiple files in queue

    Good day. You can achieve this as follows: 1. Publish a stream which should be played by viewers 2. Capture VOD stream from a file: Capturing VOD from a file 3. Inject VOD stream to the playback stream: Injection implementation in build 5.2.1618 and newer Please note that stream to inject to and...
  5. Max

    Encrypted SSL

    Check if some nginx configs contains listen 80 directive grep -r listen /etc/nginx/* Please read also this post.
  6. Max

    Is there any way to play rtsp stream flutter webview?

    Yes, you can play the same published stream using WebRTC and LL HLS simultaneously. For example, you can play WebRTC on desktop PC or Mac and LL HLS on mobile device. A frontend should decide what technology to use.
  7. Max

    Encrypted SSL

    Please check if the port is busy by other application: sudo netstat -nlp Please also check nginx configuration: there should not be any server entities in nginx.conf listening for http port 80 unless they really needed.
  8. Max

    Кодек WebRTC

    Такое может быть при большой нагрузке на сервер: встроенный бэкенд не успевает обрабатывать REST хуки, либо превышено количество одновременных соединений. В этом случае предусмотрена повторная отправка запроса, по умолчанию повторяется три раза rest_client_request_retry_count=3 Кроме того, в...
  9. Max

    Encrypted SSL

    We recommend you to test an encrypted SSL private key on staging server before moving it to production.
  10. Max

    Encrypted SSL

    This should work for encrypted SSL private key too. You should pass a passphrase to nginx as recommended in this post.
  11. Max

    Encrypted SSL

    nginx displays the following error in /var/log/nginx/error.log connect() to 192.168.0.223:8080 failed (13: Permission denied) while connecting to upstream This means SELinux disables a local http connections. The following command enables them: setsebool httpd_can_network_connect on -P After...
  12. Max

    Need to change rtmp alias "live" to another

    Please provide more screenshots with error output and ~/.ssh/config file you modified.
  13. Max

    Is there any way to play rtsp stream flutter webview?

    Hello It seems Low Latency HLS would be better. You would need a HLS player like HLS.js or Video.js See more: https://docs.flashphoner.com/display/WCS52EN/In+a+browser+via+HLS#InabrowserviaHLS-LowLatencyHLSsupport As you can see, HLS player does not require Flashphoner Web SDK at all.
  14. Max

    RoomApi.sdk - RemoteFilterException

    We checked the report. You've set a wrong option So it does not work properly. Please set rest_client_request_retry_count=10 Also you've not collected a system configuration, so we can't check it. Please collect a proper report sudo /usr/local/FlashphonerWebCallServer/tools/report.sh --sysinfo...
  15. Max

    Encrypted SSL

    Now it seems like port 443 is opened at server side but blocked by router Please check your NAT configuration.
  16. Max

    Streams stop working restart of wcs needed

    We checked the report. Seems like you've removed some files (jstack.log, Java heap dump) from the report. Also, you've replaced some info. Please, don't do this again. The problem is lack of Java heap memory: You're using a default Java heap size (1 Gb) This may be not enough under a high...
  17. Max

    Encrypted SSL

    Seems like the whole server is down, so we cannot check
  18. Max

    Encrypted SSL

    This URL wss://apps.zrg.com:443 should be reachable using Websocket connection, not from a browser directly See our example: https://demo.flashphoner.com/client2/examples/demo/streaming/two_way_streaming/two_way_streaming.html
  19. Max

    Encrypted SSL

    Hello URL wss://apps.zrg.com/wss should not be open in browsers See our example:
  20. Max

    [Android] Room already has user with such login

    Good day. A RoomApi room is the server entity. So you should: 1. Modify the Conference example source code minimally to reproduce the problem. 2. Reproduce the problem used the example modified 3. Collect your server report: Getting logs with report.sh script 4. Send us the modified code and the...
Top