Good day.
ip and ip_local should always be IPv4 addresses
You should also set WCS internal TURN server to listen other port if you are using port 3478 to connect to coturn on the same host
turn_port=3479
Or bind coturn to port 443 for example.
Also, you should use transport=tcp.
ip_v6...
Добрый день.
Пожалуйста, соберите отчет, как описано здесь, и пришлите, используя эту форму. Уточните также, как играет выходной поток микшера в момент, когда проблема воспроизводится: есть ли в потоке фризы? Какова загрузка CPU в этот момент?
Microsoft dropped support for Legacy Edge. We recommend to use Chromium Edge for WebRTC publish/playback, it works just like Chrome (on which is based).
Если Вы переключили публикацию аудио на TCP транспорт, как мы рекомендовали выше, это максимум, что можно сделать: TCP обеспечивает гарантированную доставку.
Это может означать, что битрейт публикации выше, чем пропускная способность канала. В этом случае поможет только полная остановка...
Добрый день.
В сборке Web SDK 2.0.201 исправлена проблема, приводившая к ошибке. Кроме того, добавлены примеры интеграции Web SDK в React приложение:
Two Way Streaming React
Conference React
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...
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("/"...
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.
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...
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...
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...
Добрый день.
В последних сборках, доступных на Docker Hub, начиная с 5.2.1045 сообщения
/usr/local/FlashphonerWebCallServer/bin/webcallserver: line 315: sudo: command not found
при запуске контейнера в интерактивном режиме выводиться не должны.
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...
Добрый день.
К сожалению, Вы предоставили логи только за более позднее время, чем указано в комментариях к отчету. В дальнейшем просим указывать имя проблемного потока, чтобы можно было идентифицировать его в логах.
Заикание с последующим рассинхроном обычно говорит о проблемах в канале...
Добрый день.
На приведенном скриншоте видно, что не устанавливается WebRTC соединение, т.к. не проходит ICE. Проверьте доступность медиа портов сервера (порты из диапазона media_port_from-media_port_to, по умолчанию 31001-32000/udp) для входящих соединений, например, по этой методике. Также...
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...
Добрый день.
Скорее всего, на канале пользователя есть потери. Переключение на TCP транспорт для audio потока должно помочь:
const config = {
...
transport: 'TCP',
...
}
Кроме того, битрейт для видеопотока у Вас выставлен некорректно: параметры maxBitrate, minBitrate...