Search results

  1. Max

    Problem with WebRTC connection on iOS

    This issue was fixed since build 5.2.995. If you're using AWS Marketplace image, you can update WCS on the instance manuall as described here.
  2. Max

    Issues with using the 2.0.203

    Good day. Please try to build Two Way Streaming in Typescript example (see it on GitHub). If this example is built and working correctly, modyfy it to reproduce the issue and send the code using this form.
  3. Max

    Performance is bad when using gpu-image

    Good day. Seems like android-gpuimage library itself has a bad perfomance on any device: the better CPU, the bigger resolution it can handle. So you can integrate any other filtering library. Now in ticket WCS-3339 we working on Camera Manager example to make the integration easier.
  4. Max

    Настройка соккетов на opensuse 15

    Добрый день. Если сервер тестовый, остановите firewall и откройте все порты. Также можно открыть отдельные порты: TCP 8443, 8444, 8081, 22 TCP, UDP [30000 -32000] Обычно работаем с Ubuntu 20 и Centos 8. Если пришлете доступы, попытаемся проверить на Opensuse 15. Прислать доступы можно через...
  5. Max

    https//:localhost:8444/ not opening

    You can not simultaneously call from the same SIP account to two or more SIP accounts. This is SIP conference case, so you should configure a conferencve at SIP PBX, assing an extension (for exampe 1010) to the conference. Then users 1002, 1003 and 1005 call to the conference, and can talk to...
  6. Max

    https//:localhost:8444/ not opening

    SIP registration is bound to websocket session. So there should be one websocket session per account. Usually, one session is implemented per one webpage to prevent echo if you calling simultaneously.
  7. Max

    Как импортировать WCS Android SDK в другой проект?

    Это наиболее простой способ, при котором Вы получаете готовую болванку build.gradle для своего проекта. Чтобы прикрепить вручную, нужно: - в build.gradle проекта выставить minSdkVersion 26 - положить файл библиотеки Android SDK 1.1 в каталог libs проекта, например...
  8. Max

    Browser is not defined

    Good day. You're probably using Browser object in playStream() function. This object has been moved to Flashphoner namespace since WebSDK build 2.0.179. You may add the following line to script beginning for complatibility (see example on GitHub) var Browser = Flashphoner.Browser;
  9. Max

    Capabilities of WebcallServer

    Good day A minimal hardware requirements are described here. A maximal requirements depend on use case and may be detected in load tests. Please read this article How many RTSP cams can I connect to the WebRTC server?
  10. Max

    The createSession "custom" param gets issues to subscriber play video

    We reproduced the issue and raised the ticket WCS-3373 to allow string passing as custom parameter. Aq workaround, you can pass custom object as recommended in REST hooks documentation.
  11. Max

    Как импортировать WCS Android SDK в другой проект?

    Добрый день. Все, что делает скрипт export.sh, это копирует исходные тексты примеров в подкаталог output и прописывает минимальную версию API в build.gradle для каждого примера, а также кладет файл библиотеки в каталог output/libs. То есть Вы можете собрать один раз примеры, а затем взять любой...
  12. Max

    check update doesn't update

    Good day. This issue was fixed in build 5.2.1015. So you should update manually as described here.
  13. Max

    https//:localhost:8444/ not opening

    Seems like your SIP PBX is unavailable from your server: TCP connection cannot be established to SIP PBX IP address. Telnel test also shows no response: From our test servers, SIP PBX IP seems reachable: Please check firewall/NAT/router settings.
  14. Max

    The createSession "custom" param gets issues to subscriber play video

    Good day. We've tested the latest build 5.2.1070 on our test server, and cannot reproduce the issue both with defaultApp and custom backend. We've tweaked Two Way Streaming code to send custom token: Flashphoner.createSession({urlServer: url, custom: {token...
  15. Max

    h264 hardware acceleration problem.

    Good day. Don't worry, it's good enough to explain. We cannot reproduce the problem in Media Devices example on demo server: Intel(R) Core(TM) i5-8250U CPU @ 1.60GHz 1.80 GHz, GPU Intel UHD 620, Windows 10 Pro, Chrome 95.0.4638.54, hardware acceleration is enabled. Please clarify what...
  16. Max

    Не запускаются WCS Android SDK

    Попробуйте собрать примеры с помощью Gradle из командной строки, указав одну из опций при запуске Gradle, которые он советует: --stacktrace. --info или --debug
  17. Max

    Click to call

    Неверно. К демо серверу можно устанавливать соединения с любого адреса. Мы блокируем только конкретные домены, о которых известно, что клиенты с этих доменов пытаются использовать демо сервер в продакшне. Если тот же пример устанавливает websocket соединение с демо сервером, но не устанавливает...
  18. Max

    Click to call

    WSS (Websocket SSL) соединение с портом 8443 не будет установлено в одном из следующих случаев: 1. Сервер не слушает порт. Проверка: netstat -nlp | grep java Сервер может быть не запущен либо при запуске не смог захватить порт. 2. Сервер слушает порт, но порт закрыт на firewall или NAT...
  19. Max

    https//:localhost:8444/ not opening

    Good day. You should set div elements sizes through CSS as needed, for example: /* Remote Video*/ .fp-remoteVideo { border: 1px double black; position: absolute; background: #c0c0c0; width: 320px; height: 240px; text-align: center; margin: 0 auto 0 auto; } /* Local...
  20. Max

    Permanently Publish Stream pulled from RTMP Source Efficiently

    Good day. Since build 5.2.1069 it is possible to pass authentication parameters after stream name rtmp://server:1935/live/streamKey?user=username&password=password Also, WCS supports Adobe authentication on RTMP server while capturing a stream from it using RTMP URL parameters...
Top