Search results

  1. Max

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

    На Redmi Note 8T (и только на нем) воспроизводится deadlock при обработке события об изменении статуса датчика приближения. Из-за этого и возникает ANR. Работаем над этим в рамках тикета WCS-3568.
  2. Max

    Origin edge server setup

    The password is kept in the yml file: /usr/local/FlashphonerWebCallServer/conf/database.yml Example: admin: {username: admin, password: 21232f297a57a5a743894a0e4a801fc3, active: true} Here 21232f297a57a5a743894a0e4a801fc3 = md5("admin") Therefore you can set any password and restart WCS...
  3. Max

    Setup two new servers, wss connection is failed

    Hello What do you mean? Please check out this page. The list of all available playback options. https://docs.flashphoner.com/display/WCS52EN/Playing+a+video+stream+from+the+server 1. WSS + WebRTC https://docs.flashphoner.com/display/WCS52EN/In+a+browser+via+WebRTC?src=contextnavpagetreemode...
  4. Max

    No access from other VLAN

    Good day. There is not any local firewall function in WCS itself. So you should to check ports avalability using netcat and tcpdump as described here: Port routing checking. But if you even cannot ping the server where WCS is installed, it is definitely either firewall or router (which connects...
  5. Max

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

    По приведенному Вами стектрейсу нашли предполагаемый проблемный участок в коде, завели тикет WCS-3568. Сообщим здесь о готовности.
  6. Max

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

    Добрый день. Проверьте, пожалуйста, воспроизводится ли проблема в примере streaming-min-debug.apk из архива сборки 1.1.0.57 на данном устройстве. Если нет, модифицируйте код примера Streaming-min минимально таким образом, чтобы проблема начала воспроизводиться, и пришлите код нам в архиве...
  7. Max

    Origin edge server setup

    Good day. Please use InstanceId as admin password in AWS environment curl -s http://169.254.169.254/latest/meta-data/instance-id CDN setup seems to be correct. But please read this doc about using public or private networks in CDN: Network traffic flow between CDN servers behind NAT
  8. Max

    Setup two new servers, wss connection is failed

    HTTP port: http.port=8081 HTTPS port: https.port=8444 Both ports are used for REST API, web admin interface, statistics page Thre are also hardcoded ports setup for old versions (5.0, 5.1) compatibility: 9091/http, 8888/https
  9. Max

    android sdk Missing libraries

    Please look at the search results.
  10. Max

    Данные, получаемые через websocket

    Добрый день. Если звонок через WCS уже установлен, Вы можете получить данные звонка по REST API: /call/find_all - для всех звонков на сервере /call/find - для конкретного звонка по его callId, caller, callee, IP адресу клиента в sessionId или статусу Это работает для звонков, созданных по...
  11. Max

    android sdk Missing libraries

    Please read the official Google documentation about push notifications: Create a Notification, Start an Activity form a Notification
  12. Max

    UNSUPPORTED streaming codec VSIP

    Hello 1. VSIP-H264 codec is not supported. This is what the cam shows in the SDP: o=- 1204612375 1204612375 IP IP4 10.4.21.115 s=2066-JSQ-Bus Lane C S Looking N a=control:rtsp://10.4.21.115:554/a01e2f1d-691d-43bd-b2a6-b8c66b04ecb2 t=0 0 a=range:npt=now- a=length:npt=0...
  13. Max

    HLS stream playback not working

    Just a note. "keyFrameInterval": 2 The key frame interval should be passed in frames, not in seconds. "keyFrameInterval": 60 Means key frame is each 60-th. Therefore if stream is 30 FPS, then key frame interval is 2 seconds.
  14. Max

    HLS stream playback not working

    Hello Please provide step by step instruction how to reproduce the issue. Example: 1. Publish stream1 as WebRTC 2. Push WebRTC as RTMP stream to the localhost using /push/startup as rtmp://localhost:1935/live/stream2 3. Play stream1 via HLS JS sample. 4. No video playback. Can you reporduce...
  15. Max

    Setup two new servers, wss connection is failed

    Hello As you can see, Intsagram says that best aspect ratio is 4:5 Therefore if you stream from Canvas you have to ensure source resolution in this aspect ratio. This means the resolution of published stream must be 1080 x 1350 or other 4:5 content. You can't just stream 1280x720 and then...
  16. Max

    Setup two new servers, wss connection is failed

    And if width and height are not set? On the second WCS server, does the stream pulled from the first server play with video?
  17. Max

    Setup two new servers, wss connection is failed

    Also, please note that by default aspect ratio is not changed, so width specified in /push/startup is not applied, only height is applied; for height 1280, 1280x720 will be transcoded to 2276x1280. For changing aspect ratio, video_transcoder_preserve_aspect_ratio=false has to be added to...
  18. Max

    Setup two new servers, wss connection is failed

    Please try adding this parameter to /push/startup, so that keyframes are sent often enough: "keyFrameInterval": 60 For keyFrameInterval, transcoding is also forced (even if width and height are not specified in /push/startup).
  19. Max

    Capturing VOD from a file

    Hello, Ticket WCS-3564 has been submitted for removing the "grey box", we'll notify in this thread about an update. Meanwhile, this setting can be tried as workaround to conceal the box (to change gray to a different color): mixer_text_background_colour. The setting is for text background, but...
  20. Max

    Setup two new servers, wss connection is failed

    By the way. What if you do not set width and height. Does it work?
Top