Search results

  1. Max

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

    Если Вы переключили публикацию аудио на TCP транспорт, как мы рекомендовали выше, это максимум, что можно сделать: TCP обеспечивает гарантированную доставку. Это может означать, что битрейт публикации выше, чем пропускная способность канала. В этом случае поможет только полная остановка...
  2. Max

    Using Flashphoner Webrtc in ReactJS

    Good day. Since Web SDK build 2.0.201 we've added some React integration examples: Two Way Streaming React Conference React
  3. Max

    Проблема с chat rooms

    Добрый день. В сборке Web SDK 2.0.201 исправлена проблема, приводившая к ошибке. Кроме того, добавлены примеры интеграции Web SDK в React приложение: Two Way Streaming React Conference React
  4. Max

    Conference record policy template

    The parameter stream_record_policy_template is applied to any multiple stream recording file, including room recording. So you can use it, but with soem known limits. Please read details here. We raised the ticket WCS-3347 to add this setting. As workaround, you can modify...
  5. Max

    ChatRoom no video

    Pleas note: if you are using custom backend replacing default RoomApp your custom application must forward all the queries to the standard http://wcs:8081/apps/RoomApp and must return all the responses from it to client. For example: $api_method = array_pop(explode("/"...
  6. Max

    ChatRoom no video

    Server is configured. You are testing in iframe. 1. Try to test directly using link: https://demo.flashphoner.com/client2/examples/demo/streaming/video-chat/video-chat.html 2. Check web console messages F12 Some ad-blockers can affect scripts inside of iframes.
  7. Max

    ChatRoom no video

    Hello How did you test video chat sample? This is how we test video chat and how it works step by step: 0. Open page https://demo.flashphoner.com/client2/examples/demo/streaming/video-chat/video-chat.html 1. Enter unique nickname "123" 2. Click "Join" 3. Copy invite link 4. Open your...
  8. 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...
  9. 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...
  10. Max

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

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

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

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

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

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

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

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

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

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

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

    Добрый день. Скорее всего, на канале пользователя есть потери. Переключение на TCP транспорт для audio потока должно помочь: const config = { ... transport: 'TCP', ... } Кроме того, битрейт для видеопотока у Вас выставлен некорректно: параметры maxBitrate, minBitrate...
  18. 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...
  19. 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...
  20. 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]...
Top