Search results

  1. Max

    List of available Cams - how to pre-select?

    Good day. Most of the examples uses default camera and mic from browser settings. So if you set a wrong camera in browser, all of them will choose it. The Media Devices example lists all the available media devices (using navigator.getUserMedia()[ request under the hoods)...
  2. Max

    Трансляция экрана телефона в браузер

    Воспроизводится ли краш приложения, если запускать screen-sharing-debug.apk из архива сборки 1.1.0.57? Если нет, модифицируйте код примера минимально таким образом, чтобы краш воспроизводился, и пришлите, используя эту форму. Если проблема не воспроизводится с нашим примером с сервером...
  3. Max

    VOD seek

    Good day. Yes, VOD can be used to play a recording file. But this function is intended for live translation, so there is no any way to seek or rewind. You can play a recording file in browser while downloading: How to play or download recording file. In this case, playback start time or end time...
  4. Max

    Remove support for arm64 (VALID_ARCHS) to run on M1 mac models

    We use two dependencies from CocoaPods: SocketRocket and JSONModel. Both of them has no plans to move from CocoaPods to SPM. So we also have to stay with CocoaPods too.
  5. Max

    WCS Service getting failed

    Hello Port 8081 is used in two places. 1. As a web http port. Example: http://demo.flashphoner.com:8081/admin/login.html 2. As internal REST hook endpoint. For example, when you play stream, WCS will send REST hook to internal URL http://localhost:8081/apps/EchoApp/playStream Therefore if...
  6. Max

    Recorded file transcoder

    Hello WCS is not designed as a bulk file transcoding software. It would better use ffmpeg or something else. To transcode files using WCS, you have to perform few operations: 1. Launch VOD /vod/startup 2. Launch Transcoder /transcoder/startup 3. Record Transcoded stream /record/startup As you...
  7. Max

    Remove support for arm64 (VALID_ARCHS) to run on M1 mac models

    Unfortunately, no issues in that list are fixed yet, and none of them affects the simulator building. So, Rosetta is still the best workaround.
  8. Max

    /?action=stat

    Дополнили документацию списком интерфейсов, которые могут быть отключены.
  9. Max

    /?action=stat

    Доступ к определенным интерфейсам может быть ограничен при помощи настройки http_enable_paths=rest,action,admin,shared,client,client_records,embed_player,empty,health-check См документацию. По умолчанию, включены все перечисленные интерфейсы. Вы можете убрать action из списка, но вы этом...
  10. Max

    Remove support for arm64 (VALID_ARCHS) to run on M1 mac models

    Good day. We investigated the issue. Unfortunately, we cannot build SDK for M1 iOS Simulator (arm64) because WebRTC library (the main dependency) cannot be build for simulator in this case. So we recommend to launch Xcode in Rosetta to build for iOS Simulator.
  11. Max

    /?action=stat

    Добрый день. В настройках сервера можно либо отключить интерфейс для просмотра статистики, либо включить его. Вы можете настроить reverse proxy c авторизацией, например, на базе nginx.
  12. Max

    Трансляция экрана телефона в браузер

    Процесс развертывания WCS на сервере в DO не отличается от описанного в документации. Также Вы можете использовать готовый образ, но в этом случае потребуется обновление до последней сборки.
  13. Max

    Always record in mp4

    Please update WCS to the latest build 5.2.1219 and check again. If the issue still reproducing, try to fix the permissions with command sudo /usr/local/FlashphonerWebCallServer/bin/webcallserver set-permissions and restart WCS.
  14. Max

    Высокая загрузка CPU после обновления

    В любом случае, нужно воспроизведение проблемы и отчет для того, чтобы выявить возможную причину. Может также потребоваться SSH доступ к серверу, мы запросим его, если это необходимо.
  15. Max

    Always record in mp4

    Please use media_dir parameter instead of symlink: media_dir=/opt/media Also please make sure that flashphoner user has enough privileges to the media folder sudo chmod o+rw /opt/media Another option is to launch WCS as root. In latest builds, change the following parameter in...
  16. Max

    Высокая загрузка CPU после обновления

    Сразу видно проблему в конфигурации: Рекомендуется использовать под Java heap 1/2 памяти сервера. Если на сервере всего 3 Гб, максимум, который можно выставить для Java heap - 1.5 Гб Также уточните кейс: как именно публикуется поток (WebRTC, RTMP, RTSP, MPEG-TS, VOD), как именно зрители его...
  17. Max

    WCS suddenly stopped running, cannot startup

    We use systemctl restart command (see documentation here, for example). This is recommended way if the process was killed, but service is not stopped. So it is a prefferable way to restart WCS if you'are not sure you've stopped it before sudo systemctl restart webcallserver This is a server...
  18. Max

    WCS suddenly stopped running, cannot startup

    Seems like WCS has been stopped manually, or main process has been killed by kill `pgrep -fn com.flashphoner.server.Server` or something. The latest server log before we connected to the server ends with We just restarted WCS by sudo systemctl restart webcallserver, and it is running now
  19. Max

    WCS suddenly stopped running, cannot startup

    Good day. Please check the WCS logs: startup.log, server_logs/flashphoner.log. Also there may be error*.log files if WCS is crashed. If the problem still persists, please provide SSH access to the server using this form.
  20. Max

    Hardware accelerated decoding on chrome on Windows?

    Seems like this is Chrome on Windows 7 issue. Note that Windows 7 is not supported any more, so it probably will not be fixed. If you need hardware decoding to work in your case, consider Windows upgrade to 10 or 11 if supported.
Top