Search results

  1. Max

    Проблема с установкой LetsEncrypt

    Мы обновили документацию по получению сертификатов Let'sEncrypt
  2. Max

    Проблема с установкой LetsEncrypt

    Добрый день. Скорее всего, Вы пытаетесь использовать скрипт certbot-auto (из поставки WCS или более свежий). К сожалению, разработчики больше не поддерживают этот скрипт, поэтому рекомендуем установить certbot на сервер по этой или этой инструкции и использовать команду sudo certbot certonly...
  3. Max

    the broadcast stops after a while

    Good day. You can increase RTSP activity timeout, for example, to 24 hours: rtsp_activity_timer_timeout=86400000 In this case, RTSP will not stop unless there are no any subscribers in last 24 hours. But, if you need to stop the stream, you should use REST API POST /rest-api/rtsp/terminate...
  4. Max

    NSInvalidArgumentException'

    Добрый день. Пожалуйста, обновите iOS SDK до сборки 2.6.41. Проблема связана с валидацией ответа бэкенд-сервера и исправлена в этой сборке.
  5. Max

    how to publish host and participant stream from different page and playback on home page?

    You should use either RoomApi or MCU mixer, but not both. If you prefer RoomApi, you can use mixer for conference recording. In this case: 1. Enable mixer streams recording in WCS settings record_mixer_streams=true 2. Create a mixer using REST API POST /rest-api/mixer/startup HTTP/1.1 HOST...
  6. Max

    Стриминг через chat rooms

    В этом случае RoomApi выглядит излишним. Если чат привязан к потоку, связка из - Stream.sendData() для отправки сообщения всем подписчикам с публикующего клиента - REST API запроса /stream/event/send для отправки сообщения всем подписчикам с любого другого клиента (не паблишера) и с сервера -...
  7. Max

    I reactivated my license till 21.5 but getting error : no license

    Good day Please see this thread
  8. Max

    Buffering on webrtc?

    We experiencing the same problems in VLC with this setting Seems like problematic frames are in the stream itself. So buffering will not help in this case. The buffering via RTMP republishing may be useful only if packets flow is not smooth, and may be pause between consecutive packets. But if...
  9. Max

    Buffering on webrtc?

    We checked the stream. Seems like buffering will not help you. The problems are in the strem itself, VLC also plays it with artifacts and messages like picture is too late in logs: ffprobe shows the following errors for the stream When playing it via WebRTC directly, the picture is twitching...
  10. Max

    Buffering on webrtc?

    This can be a channel quality/bandwidth issue. Also, it can be video transcoding issue (but normally it should not start unless you are trying to play VP8) So please provide us RTSP link to test and/or SSH access to the server using this form, we will check.
  11. Max

    Возможность отслеживания ивентов mute (video/audio)

    Добрый день. Начиная со сборки WCS 5.2.935 и сборки IOS SDK 2.6.32, если клиент использует функцию muteAduio() или muteVideo(), подписчикам отправляется специальное событие. Примеры обработки оповещений о том, заглушено или не заглушено аудио/видео, приведены здесь
  12. Max

    Buffering on webrtc?

    Good day. WebRTC itself is intended to real time streaming, so stream cannot be buffered directly. But you can republish a stream as RTMP to localhost, set up RTMP outgoing buffer, then play stream republished as WebRTC RTSP->WCS->RTMP->WCS->WebRTC->Browser For example: 1. Set the following...
  13. Max

    Стриминг через chat rooms

    Добрый день. Уточните, пожалуйста: публикуется один стрим с 300 подписчиков, с возможностью текстового чата? Или предполагается еще и видеочат? Да, для текстового чата можно использовать RoomApi. Однако для того, чтобы сохранять историю, потребуется обработка REST hook на бэкенде. А именно...
  14. Max

    Delay after aging

    Good day. We made a load test with 1000 subscribers per 720p stream on the following server: 24 CPU cores (48 HT cores), 192 Gb RAM (24 Gb for Java heap), 10 Gbps. The test passed succesfully with no delay while stream playback under the following conditions: - Stream distribution optimization...
  15. Max

    How can I reach the number of instant viewers?

    Good day. You can use HTTP GET query http://wcs:8081/?action=stat&params=streams_viewers&format=json It will return viewers count per stream, for example {"streams_stats":{"streams_viewers":["test/1"]}}
  16. Max

    Trial license expired before expiration date

    This is NTP servers pool used to sync time while checking a license. It should be at least pingable from WCS host ping pool.ntp.org If time synchronization fails, trial license becomes expired. In this case, WCS should be restarted.
  17. Max

    Фриз на изображении микшера.

    Добрый день. По внешнему виду, это похоже на артефакты при проигрывании потока на клиенте. Как правило, такие артефакты вызваны проблемами с пропускной способностью канала или потерями на канале. Для того, чтобы исключить потери на канале, можно использовать TCP транспорт, включая его на стороне...
  18. Max

    Trial license expired before expiration date

    Good day Please check if pool.ntp.org is available from WCS instance and restart WCS.
  19. Max

    how to publish host and participant stream from different page and playback on home page?

    You can play a number of video streams simultaneosly on the same page, see 2Players example code. You should just set stream name to play.
  20. Max

    Управление микрофоном/звуком для iOS sdk

    Для объекта WCSStream вызываются либо publish(), либо play(). В таком случае запрос никак не обойти
Top