Search results

  1. Max

    WCS evaluation

    Good day. The main reasons for stream freezes and artifacts usually are: 1. Bad channel quality between publisher and server and/or between player and server. This may be prevented by switching to TCP transport on client side session.createStream({ name: streamName, display...
  2. Max

    Increase the number of participants in MCU conference

    Good day. You can ignore this message, this means some exception in native C++ code which is handled internally. MCU conference uses stream mixer, so the more participants, the more CPU load. Please read the article How many mixers can a server have? about mixer load testing. Note that MCU...
  3. Max

    Последний docker image не запускается

    Добрый день. В последних сборках, доступных на Docker Hub, начиная с 5.2.1045 сообщения /usr/local/FlashphonerWebCallServer/bin/webcallserver: line 315: sudo: command not found при запуске контейнера в интерактивном режиме выводиться не должны.
  4. Max

    Permanently Publish Stream pulled from RTMP Source Efficiently

    Yes, WCS can be RTMP server for third party players by default You can prevent RTMP access at all using this parameters: rtmp.address=127.0.0.1 rtmfp.address=127.0.0.1 In this case, WCS will listen RTMP port on local interface only, so RTMP server will not be available for external clients...
  5. Max

    WCS SIP звонки перестали работать

    Предоставьте два SIP аккаунта на Вашем SIP-сервере для тестовых звонков, используя эту форму
  6. Max

    Идентификация стримов при multiple stream recording

    В сборке 5.2.1049 добавлена возможность извлечь информацию о дорожках в файле multi-recorder при помощи offline_mixer_tool. Подробнее здесь.
  7. Max

    Рассинхронизация аудио и видео

    Добрый день. К сожалению, Вы предоставили логи только за более позднее время, чем указано в комментариях к отчету. В дальнейшем просим указывать имя проблемного потока, чтобы можно было идентифицировать его в логах. Заикание с последующим рассинхроном обычно говорит о проблемах в канале...
  8. Max

    WCS SIP звонки перестали работать

    Добрый день. На приведенном скриншоте видно, что не устанавливается WebRTC соединение, т.к. не проходит ICE. Проверьте доступность медиа портов сервера (порты из диапазона media_port_from-media_port_to, по умолчанию 31001-32000/udp) для входящих соединений, например, по этой методике. Также...
  9. Max

    Stream black screen on safari mobile

    Please clarify how do you test: 1. How do you publish a stream? 2. How do you play the stream? 3. What exactly video becomes black: local video while publishing or remote video while playing? 4. What example do you use to test? Is the problem reproducing in Two Way Streaming example? If not...
  10. Max

    Стабильное качество аудио при низком интернете

    Добрый день. Скорее всего, на канале пользователя есть потери. Переключение на TCP транспорт для audio потока должно помочь: const config = { ... transport: 'TCP', ... } Кроме того, битрейт для видеопотока у Вас выставлен некорректно: параметры maxBitrate, minBitrate...
  11. Max

    letsencrypt iOS certificate failing wss

    We would not recommend letsencrypt in production. Just purchase an SSL certificate like this (namecheap.com/security/ssl-certificates/) for your domain and forget SSL issues for 1-3 years. Perhaps the iOS system you are testing does not know about certificate authority that issued the...
  12. Max

    Stream is not playing

    As we see, this page uses player.js default script to play. <script type="text/javascript" src="https://flash.polycall.net:8444/client2/examples/demo/streaming/player/player.js"></script> This script uses default constraints, and make a browser wait for both audio and video packets to be...
  13. Max

    Stream is not playing

    You should change this in add_wcs_to_conference.sh script too: curl -s -X POST -d "{ \"callId\": \"5620-$CONF_NUMBER\", \"dtmf\": \"1\", \"type\": \"INFO\" }" "$URL/send_dtmf" We've done it, and the error gone, Asterisk displays in logs [2021-09-29 23:13:10] VERBOSE[19955][C-00000301]...
  14. Max

    Stream is not playing

    Hello We have seen DTMF error WCS: 08:22:38,400 INFO RestApiRouter - HTTP-pool-3-thread-193 Use controller class com.flashphoner.rest.server.rest_v2.RestCallController with path /rest-api/call/send_dtmf 08:22:38,400 INFO RestCallController - HTTP-pool-3-thread-193 handleRequest...
  15. Max

    Stream is not playing

    We checked again with the following test: 1. Call from softphone1 to the extension number provided (7002). 2. Stop the call on WCS side by /rest-api/call/terminate. The hold music plays in softphone 3. Call from softphone2 with credentials defined in add_wcs_to_conference.sh script to the...
  16. Max

    The 2nd Join event does not occur in the conference.

    Good day. We fixed the issue in WCS build 5.2.1047. Web SDK should also be updated to 2.0.199.
  17. Max

    2nd publish fails when using conference(Room API)

    Good day. We fixed the issue in WCS build 5.2.1047. Web SDK should also be updated to 2.0.199.
  18. Max

    RTSP - No Codecs Found

    Good day. About the ticket WCS-3271. We fixed the issue in build 5.2.1045, RTSP stream from dump you've provided is playing successfully.
  19. Max

    Stream is not playing

    We checked the flow. Seems like Asterisk sends silence when WCS established call to the conference. If we establish SIP call via our test Asterisk/OpenSIPS PBX, all seems working. So this is may be Asterisk configuration issue. One issue is in SIP call parameters: sipDomain parameter ends with...
  20. Max

    Can I rtmp republishing with mixed webrtc stream

    Good day. Yes, you can: 1. Publish WebRTC streams From a web camera in a browser via WebRTC 2. Add those streams to mixer automatically Automatic mixer creation configuration or using REST API REST queries 3. Republish mixer output stream as RTMP using REST API REST queries
Top