Search results

  1. Max

    RTSP No Codecs Found

    Good day. Your RTSP camera publishes MotionJPEG video: m=video 0 RTP/AVP 26 WCS does not support this video codec. H264 or VP8 are only supported codecs for RTSP video.
  2. Max

    Issues after update to 5.2.1070 version on IOS 15.1 And Firefox 93

    cvoExtension: true enables video orientation support. If mobile device screen rotation is enabled, a picture aspect ratio will change while device is turning from portrait to landscape and vice versa. We recommend to lock screen rotation on device as workaround. The problems reason is on Safari...
  3. Max

    Issues after update to 5.2.1070 version on IOS 15.1 And Firefox 93

    Another workaround: enable CVO extension https://docs.flashphoner.com/display/WCS52EN/WebRTC+stream+picture+rotation session.createStream({ name: streamName, ... cvoExtension: true }).publish();
  4. Max

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

    Да. Нормальное. Ненормальным такое поведение будет, если после возобновления нагрузки свободная память начнет уменьшаться от текущих значений.
  5. Max

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

    Проверили сервер. Основная проблема даже не в количестве открытых файлов, а в памяти, выделенной под Java heap. 1Gb достаточно для разработки, но мало для продакшна и нагрузочных тестов. Рекомендуем провести тюнинг, описанный на этой странице (обязательные шаги 6, 11, 12, 13). В параметрах...
  6. Max

    Issues after update to 5.2.1070 version on IOS 15.1 And Firefox 93

    Good day. This is a known iOS 15.1 bug which is just closed: https://bugs.webkit.org/show_bug.cgi?id=231505, so it should be fixed in iOS 15.2 There are two possible workarounds: 1. Publish VP8 instead of H264. You can test it in Medai Devices example by stripping H264 codec 2. Disable GPU in...
  7. Max

    Capabilities of WebcallServer

    In the article we used one WCS server as RTSP source. So if you have an NVR or another RTSP server which can provide 1000 RTSP streams, you can perform the test on a single WCS instance. There is no ready to use formula to calculate, so only load test allows to check capabilities. For example...
  8. 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.
  9. 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.
  10. 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.
  11. Max

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

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

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

    Это наиболее простой способ, при котором Вы получаете готовую болванку build.gradle для своего проекта. Чтобы прикрепить вручную, нужно: - в build.gradle проекта выставить minSdkVersion 26 - положить файл библиотеки Android SDK 1.1 в каталог libs проекта, например...
  15. 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;
  16. 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?
  17. 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.
  18. Max

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

    Добрый день. Все, что делает скрипт export.sh, это копирует исходные тексты примеров в подкаталог output и прописывает минимальную версию API в build.gradle для каждого примера, а также кладет файл библиотеки в каталог output/libs. То есть Вы можете собрать один раз примеры, а затем взять любой...
  19. 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.
  20. 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.
Top