Search results

  1. Max

    Multi-stream recording issue

    Good day. Unfortunately, you cannot fix this file. The file contains a recording data without header, so the header cannot be formed manually. Seems like there was no free disk space to save mp4 file. But the latest WCS builds can control the disk space and stop recording correctly in this case...
  2. Max

    Проблемы с конвертацией из webm в mp4 и c сохранением записи стрима.

    Добрый день. Просим в дальнейшем упоминать об отправке логов в этой теме. Проанализировали присланные логи. Во всех случаях вероятная причина отсутствия записи - отсутствие медиааданных в потоке, либо потери медиаданных (ключевых фреймов): 144423-2917_08228150-b941-4daf-90cd-1bac438e6742: от...
  3. Max

    WCS перестает работать

    Собрать дамп памяти можно тем же скриптом, что и логи sudo /usr/local/FlashphonerWebCallServer/tools/report.sh --sysinfo --conf --dump --tar
  4. Max

    WCS перестает работать

    Здравствуйте. В логах проблема: server_logs/flashphoner.log 06:00:25,770 Caused by: java.lang.OutOfMemoryError: Java heap space Это значит не хватает Java Heap - памяти. В случае появления ошибки java.lang.OutOfMemoryError, сервер переходит в непредсказуемое поведение и должен быть...
  5. Max

    unstable Mixer recording

    Hello Try the following settings: mixer_in_buffering_ms = 2000 mixer_incoming_time_rate_lower_threshold = 0.8 mixer_incoming_time_rate_upper_threshold = 1.2 It should improve quality of mixer output. What is your WCS version and settings flashphoner.properties? Please make the report (using...
  6. Max

    Encrypted SSL

    Hello No updates for now. Will be scheduled by internal priorities.
  7. Max

    Encrypting the Stream URL when using Embed player

    Good day. If you want to hide the RTSP stream URL from clients, you have two possible ways: 1. (Simpler) Use REST API to capture RTSP stream to server: /rtsp/startup POST /rest-api/rtsp/startup HTTP/1.1 Host: 192.168.1.101:8081 Content-Length: 56 Content-Type: application/json { "uri"...
  8. Max

    IOS loudspeaker to Phonemin

    Good day. You can use setLoudSpeakerStatus method for streams only: @IBAction func loudSpeakerChanged(_ sender: Any) { do { try playStream?.setLoudspeakerStatus(loudSpeaker.isOn); } catch { print(error); } } The feature is not supported...
  9. Max

    [SIP Call] inbound voice 3-4sec delay

    Hello Fixed in version 5.2.1910 Please update https://docs.flashphoner.com/static/WCS52/WCS_5.2_release_notes/#wcs_52_release_notes
  10. Max

    [SIP Call] inbound voice 3-4sec delay

    We're looking for a possible fix. Please be patient.
  11. Max

    Trying h265

    We checked the server and RTSP stream. MPEG-TS H265 publishing via SRT is working according to the manual: MPEG-TS RTP stream publishing. We successfully published SRT stream and played it in Embed Player But your RTSP URL seems to be audio only, there is no video track in SDP received from...
  12. Max

    Trying h265

    Hello Did you configure server as described in the docs? https://docs.flashphoner.com/display/WCS52EN/RTP+stream+publishing+via+RTSP#RTPstreampublishingviaRTSP-H265publishing
  13. Max

    [SIP Call] inbound voice 3-4sec delay

    Hello. You can request a quote for priority support at sales@flashphoner.com
  14. Max

    Фрейм рейт

    Просим уточнить также: необходима именно запись, или достаточно отмотать назад и замедленно воспроизвести при просмотре стрима?
  15. Max

    Фрейм рейт

    Примерный план тестирования этой функции. По результатам сообщим в этой ветке форума. Основное: найти устройство с хорошей камерой и найти плеер с перемоткой HLS потоков. 1. Найти Android устройство, камера которого поддерживает 60 FPS при указанном высоком разрешении, например 720p. 2...
  16. Max

    how to showing show data with video streaming

    Good day. You can implement custom Camera1Capturer interface to overlay some PNG picture on a frame captured: Android Camera Manager. So, you should get the current date, convert it to PNG picture and overlay it.
  17. Max

    WCS перестает работать

    Проверили ваш сервер. 1. Во время, когда вы столкнулись с проблемой (непосредственно перед перезапуском WCS) видим в логах проблемы с SDP, полученным от паблишера: Это может означать потери на канале клиента, если это публикация WebRTC или захват RTSP потока с внешнего источника. В случае...
  18. Max

    Фрейм рейт

    Добрый день. Пожалуйста, поясните, что именно вы пытаетесь сделать: каким именно образом пытаетесь получить статическое изображение, что именно не получается? Если необходимо получить стоп-кадр во время трансляции, это можно сделать на стороне сервера: Снятие превью трансляции в виде PNG или в...
  19. Max

    WCS перестает работать

    Здравствуйте. Пришлите пожалуйста SSH доступы через эту форму. Посмотрим все логи и дампы, которые могли привести к подобной проблеме. Если такое повторится, выполните jstack `pidof java` > jstack.txt И пришлите jstack.txt на изучение
  20. Max

    frameDecoded writePixel yuv420 wrong colors

    Please clarify what YUV420 format do you use? WCS uses IYUV format: [Y1 ... Yn, U1 ... Un, V1 ... Vn] If you use some other form, it may work on solid colors, but probably will now work on real images
Top