Search results

  1. Max

    Mirror effect on participant local media(CAMERA)

    Hello, For video element, mirroring can be done with CSS: localVideo.style.transform = 'scaleX(-1)'; For streaming mirrored video, Canvas can be used, with scaling applied to its context: var canvasContext = canvas.getContext("2d"); canvasContext.translate(canvas.width, 0)...
  2. Max

    Ubuntu 22.04 CPU highe load issue

    The screenshot is not informative. Need more information that can be provided by the report.sh script or over SSH.
  3. Max

    Ubuntu 22.04 CPU highe load issue

    The report.sh script will gather most of required logs and reports https://forum.flashphoner.com/threads/ubuntu-22-04-cpu-highe-load-issue.14341/post-31888 Please upload tar.gz archive to a cloud storage and share download link via the Private form
  4. Max

    Ubuntu 22.04 CPU highe load issue

    Hello Please provide SSH access to the server. Then we will be able to check logs. Private form You can also gather and provide report using report.sh script via the same form.
  5. Max

    Вылет Android SDK при попытке завершить стрим

    Добрый день. В сборке Android SDK 1.1.0.58 проблема не должна воспроизводиться.
  6. Max

    Странное поведение сервиса webcallserver

    К сожалению, эта настройка связана с работой сервиса самым прямым образом. Изначально, эндпойнт был добавлен для того, чтобы работало автоматическое развертывание инстансов в облаках. Например, тот же Google Cloud или AWS требует http эндпойнт для проверки работы сервера. Поэтому отключать его...
  7. Max

    Странное поведение сервиса webcallserver

    Да. Необходимо разрешить доступ к этому эндпойнту, в Вашем случае добавить health-check в конец списка http_enable_paths=rest,action,admin,shared,embed_player,empty,health-check Пример приведен в документации. Это ожидаемое поведение: сервис стартует от пользователя root, а java машина от...
  8. Max

    Странное поведение сервиса webcallserver

    Мы проверили Ваш сервер. Проблема в скрипте, который запускается по cron Выглядит так: если остановить сервис командой systemctl stop webcallserver или рестартовать его systemctl restart webcallserver данный скрипт успевает отработать, когда сервис еще не перешел в состояние active, и стартует...
  9. Max

    Странное поведение сервиса webcallserver

    Добрый день. Выглядит так, что один экземпляр java процесса уже запущен. Пожалуйста, остановите WCS командой systemctl stop webcallserver После этого убедитесь, что процесс остановлен: pgrep -afn com.flashphoner.server.Server Если есть активные проwtccs сервера, остановите их pkill -afn...
  10. Max

    I want realtime streaming from rtmp link.. 0 latency video

    Good day. Since build 5.2.1345 LL HLS can be used in the most of modern browsers. Please read details here: Low Latency HLS support
  11. Max

    HLS-LL

    Good day. Since build 5.2.1345 LL HLS can be used in the most of modern browsers. Please read details here: Low Latency HLS support
  12. Max

    Screen Share Stream poor Quality in Mixer

    Hello First of all try to play a single stream without Mixer and make sure this stream is playing properly. 1. Open Media Devices sample https://demo.flashphoner.com/client2/examples/demo/streaming/media_devices_manager/media_device_manager.html 2. Set resolution 1920 x 1080 3. Click...
  13. Max

    Origin edge server setup

    cdn_enabled=true cdn_ip=172.xx.xxxx.xx cdn_nodes_resolve_ip=false cdn_role=origin Following properties added to edge server cdn_enabled=true cdn_ip=172.xx.xxxx.xx cdn_nodes_resolve_ip=false cdn_point_of_entry=172.xx.xxxx.xx cdn_role=edge Try to disable DNS resolving and use IP addresses...
  14. Max

    Origin edge server setup

    Please check if origin server and edge server can see each other by CDN signaling connections. Send REST API query /cdn/show_nodes both to origin and edge. If edge server cannot connect to origin server (there is no origin in edges connection list and vice versa), please check if CDN signaling...
  15. Max

    Origin edge server setup

    Yes, if you reset admins password in database.yml file, it will be applied only after WCS restart.
  16. Max

    Setup two new servers, wss connection is failed

    Please check if the stream can be played in the Player example from server1: https://server1.com:8444/client2/examples/demo/streaming/player/player.html If not, this seems like canvas streaming issue in latest Chromium. Please read this post for recommendations. Please check if secure...
  17. Max

    Canvas streaming issue - Android Chrome

    We tested a various Chromium based browsers. Unfortunately, some of them (Chrome, MS Edge) cannot encode video frames if hardare encoding acceleration is enabled. So stream cannot be published from canvas. There are two unresolved Chromium bugs...
  18. Max

    Capturing VOD from a file

    We do not provide ETA on forum tickets unless they are crictical and concern the most of customers. May be next month.
  19. Max

    Canvas streaming issue - Android Chrome

    Since WebSDK build 2.0.212 you do not need to use playFirstVideoMethod. Please try the Canvas Streaming example on demo server (see also Github source code). Please read details here: Video publishing and playback on mobile devices
  20. Max

    Canvas streaming issue - Android Chrome

    Good day. Seems like latest Chrome browser builds (104.0.5112.81 on desktop and 104.0.5112.69 on Androd) does not encode H264 frames properly when capturing from canvas. In desktop Chrome, you can switch to VP8 codec when publishing session.createStream({ name: streamName...
Top