Search results

  1. Max

    Republishing edited video stream

    Good day. We fixed the Facebook RTMP republishing issue in build 5.2.853. Please update and check.
  2. Max

    Работа с фонером на устройстве с анонимным прокси.

    Похоже, что squid не поддерживает wss. Попробуйте эти настройки на стороне прокси. Если не поможет, тогда только искать альтернативу squid.
  3. Max

    Andorid SDK is returning Null on stream.getRecordName()

    StreamObject is filled on receiving StreamStatus.PUBLISHING message, so codec cannot be filled at the moment (and bitrate too). The only way to know video codec for published stream is REST API /stream/find or, more preciously, /stream/metrics. In response to /stream/metrics query, you will...
  4. Max

    Resolution always 320x240

    Good day. Pleaes try ro disable constraints normalization to use non-numeric (object) width and height constraints, for example: publishStream = session.createStream({ ... disableConstraintsNormalization: true, constraints { video: { width: {ideal: 1024}...
  5. Max

    Зависание при нагрузочном тестировании.

    Еще раз протестировали с таймером. Из-за особенностей виртуализации на Amazon, по умолчанию, все видеопотоки обрабатываются в одном процессорном треде. Получается, что только одно ядро обрабатывает всю нагрузку. (скриншот с xxx.65) Рекомендуем применить настройку (в файле...
  6. Max

    Video freezes when moving the app to background

    Good day. We use TwoWayStreaming example with automatic switching to RTCMTLVideoView to display a video, if device supports this view. Please see details here In our tests, video freezes when app is moved to background and then continues to play when app is restored to foreground.
  7. Max

    Работа с фонером на устройстве с анонимным прокси.

    Из закрытой сети вы пытаетесь выполнить вебсокет коннект к серверу, например wss://105.25.110.77:443 Если у вас этот IP под фильтром, то ожидаемое поведение, что коннект не пройдет. Если порт 443 все же открыт на прокси и прокси позволяет через него https трафик, то коннект должен проходить...
  8. Max

    Не запускается плейер проблемы с лицензией

    В логах также видно много попыток проиграть стрим rtsp://141.105.66.161/c/mvideostr03 который недоступен.
  9. Max

    Не запускается плейер проблемы с лицензией

    Ваш сервер выглядит рабочим. Что конкретно не работает? Можете описать по шагам? Если требуется отправить приватные доступы или адреса/имена потоков, можете сделать это по кнопке Report Простой тест Two Way Streaming проходит. Стримы играют...
  10. Max

    Работа с фонером на устройстве с анонимным прокси.

    Добрый день. Не так давно тестировали с nginx Здесь пример настройки: https://docs.flashphoner.com/pages/viewpage.action?pageId=23037755 1. Убедиться, что WCS слушает порт 8081 ws или 8443 wss и подключение к этим портам напрямую работает. 2. Настроить проксирование https/wss трафика 443 > на...
  11. Max

    Canvas sound quality issue

    Please check if you set up the following options: hls_min_list_size=2 hls_discontinuity_enabled=true hls_preloader_enabled=true Also if you publish WebRTC streams from browser and play them by HLS, please set the following option to regularly request key frames from browser (every 2 seconds)...
  12. Max

    Фоновая картинка и видео

    Добрый день Возможность отображения "картинка в картинке" для микшера добавлена в сборке 5.2.852. С настройкой mixer_video_desktop_fullscreen=true поток с именем, указанным в настройке mixer_video_layout_desktop_key_word=desktop будет фоном для картинок остальных потоков
  13. Max

    Andorid SDK is returning Null on stream.getRecordName()

    This depends on stream video codec: H264 streams are written to mp4 container, VP8 streams to webm. You can check stream codec by stream name using /stream/find query
  14. Max

    File descriptor count increasing

    Please update JDK to 12 or 14 and set up ZGC as described here (the example describes 24 Gb memory heap, you should adopt this to 32 Gb). Also please check CPU load while testing. Read this article for details what other metrics are important and how to monitor them. Please also read this...
  15. Max

    Newer Docker Images fail to Start

    Good day. In the latest builds, WCS starts from non-root user for better security. But ubuntu base docker image, which is used to reduce WCS image size, contains no sudo. So we raised the ticket to allow launching WCS from root in docker environment WCS-2997, and let you know results in this...
  16. Max

    Limit number of RTSP stream subscribers

    Good day. The REST hooks /connect and /playStream combination is the only way to count and limit the number of every stream subscribers. You can also apply ACL key to the stream if you're using CDN. In this case, you should send ACL key from backend to subscribers you want to allow to see the...
  17. Max

    Andorid SDK is returning Null on stream.getRecordName()

    Good day. In 5.2 builds, stream recording is significally changed under the hoods to provide more stability and performance. Now, recording file name is known only when recording is finished, because recording file name template can contain timestamp fields. So stream.getRecordName() returns a...
  18. Max

    can't ingest RTSP stream

    Yes. Someone send the RSTP URL via "Report" button from your thread. Sorry for incovinuence.
  19. Max

    RTSP stream not working

    Hello Supported format for RTSP video: H.264 (MPEG4 part 10) audio: AAC or G.711 https://docs.flashphoner.com/display/WCS52EN/From+an+IP+camera+via+RTSP MJPEG/SXGA is not supported. Try to configure h264. It should work.
  20. Max

    can't ingest RTSP stream

    Good day. Regarding stream rtsp://*****:*****@**.***.***.21:554/h264/ch1/main/av_stream. This RTSP source send video in MotionJPEG codec: v=0 o=- 2208990726 2208990736 IN IP4 127.0.0.1 s=Video Server Session c=IN IP4 0.0.0.0 t=0 0 a=control:* a=range:npt=0- m=video 0 RTP/AVP 26...
Top