Search results

  1. Max

    Черный экран при воспроизведении удалённого потока (android)

    Добрый день. Обновите, пожалуйста, сервер до 5.2.971 и проверьте, воспроизводится ли проблема. Также уточните, воспроизводится ли проблема в примере Streaming-min-debug.apk из архива сборки на Ваших устройствах 1.1.0.28 Если проблема не воспроизводится, возьмите исходный код примера...
  2. Max

    https//:localhost:8444/ not opening

    WEbRTC will not work without HTTPS, so SIP call may be establihed, but media traffic between browser and server will not flow. Consider to use HTTPS
  3. Max

    https//:localhost:8444/ not opening

    Well, we can see the code. But how we should test it? Please provide a HTTPS link to a test page where the exception mentioned here is reproducing.
  4. Max

    https//:localhost:8444/ not opening

    Please provide a detailed step by step instruction how do you test. What exactly should be done to reproduce the problem? Anyway, the link is HTTP. WebRTC will not work via HTTP in browser. Please use HTTPS instead.
  5. Max

    https//:localhost:8444/ not opening

    Please test HTML+JS example just like here. No proprietary JSON which we cannot even run to test, no frameworks, just a plain code. If this doesn't work, provide the code using this form. Or provide the link to your test page, we will test in browser directly.
  6. Max

    Не могу подключиться к настроенному серверу.

    Проверили Ваш сервер. WCS работает, но порты закрыты файрволом: Видимо, проблема в этом правиле: Рекомендуем настроить iptables по инструкции с этой страницы (п 5).
  7. Max

    Color issue - broadcasting black & white

    We tested WebRTC publishing from Logitech C615HD camera, using Media Devices example with constraints you mentioned above, from Windows 10 Pro build 20H2. The problem described is not reproducing while playing WebRTC or HLS (according to your settings, HLS is transcoded to 480p). But we met some...
  8. Max

    https//:localhost:8444/ not opening

    Ths seems like some error in Javascript code. Please add more logging in your code (using console.log() function for example) to check if variable call is defined in onclick event handler. Or you can provide Javascript source code you test using this private form, we will check. The code should...
  9. Max

    Color issue - broadcasting black & white

    Yes. See also Media Devices sample. https://demo.flashphoner.com/client2/examples/demo/streaming/media_devices_manager/media_device_manager.html We will try to reproduce with our Logitech webcams. For now, possible solutions: 1. Change FPS. 2. Maybe enable/disable hardware acceleration...
  10. Max

    Не могу подключиться к настроенному серверу.

    Если ничего не помогает, пришлите SSH доступ, воспользовавшись кнопкой Report в вашей форумной теме. Кнопрка выглядит так:
  11. Max

    Не могу подключиться к настроенному серверу.

    Добрый день. 1. Адрес должен быть без /admin https://host_ip:8444 2. host_ip можно получить командой ifconfig в Linux 3. На Hetzner с недавнего времени порт 8444 закрыли. Вдруг сервер у вас там. 4. Проверить порты можно командой: netstat -nlp | grep java Если там есть порт 8444, значит...
  12. Max

    Problem with WebRTC connection on iOS

    WCS server can't parse passed origin: app://localhost In current implementation, origin should be either 1) Empty (as sent from Android SDK and iOS SDK) 2) Valid URL, i.e. https://mycompany.com/page1.html or file://myapp https://www.ietf.org/rfc/rfc2396.txt We raised internal ticket WCS-3219...
  13. Max

    Problem with WebRTC connection on iOS

    Add this line to /usr/local/FlashphonerWebCallServer/conf/flashphoner.properties allow_domains=app://localhost and then restart service service webcallserver restart Docs https://docs.flashphoner.com/display/WCS52EN/Websocket+connections+restriction+by+domain
  14. Max

    Problem with WebRTC connection on iOS

    Hello How exactly do you test? Could you please provide a screenshot. From this demo page we were able to connect using iPhone and iOS 14 Safari browser https://demo.flashphoner.com/client2/examples/demo/streaming/two_way_streaming/two_way_streaming.html Server version 5.2.971
  15. Max

    webrtc client cannot view on some networks

    Yes, if the server is behind NAT, ip should be set to external IP address, this is mentioned in docs.
  16. Max

    Stream black screen on safari mobile

    Please check the example from this page. Did it work in iOS Safari? If yes, use handleVisibilityChange to stop stream playback and then resume: function handleVisibilityChange() { if (document[hidden]) { stream.stop(); } else { playStream(); } } You shouls handle also...
  17. Max

    SSL Installation Problem

    Unfortunately, your server is not accessible by your credentials Please provide a valid SSH access, and HTTPS port 8444 public availability to check. Use this form to send credentials.
  18. Max

    Color issue - broadcasting black & white

    Good day. Seems like the upper bitrate limit is too high for publisher or player channel. Please clarify: the problem occurs for all the subscribers of the stream, or for certain one? In the first case, this is publisher channel problem, in the second, this is player channel. Anyway, switching...
  19. Max

    Can not start transponder Error

    You can capture MP4 file as VOD to a stream, for example: POST /rest-api/vod/startup HTTP/1.1 HOST: localhost:8081 content-type: application/json content-length: 83 { "uri":"vod-live://sample.mp4", "localStreamName": "test" } Then, you can play the stream from WCS via RTSP by URL...
  20. Max

    webrtc client cannot view on some networks

    Good day. Seems like either network is too bad or some media ports from range you use on server (31001-32000 UDP and TCP by default) are blocked In the first case, increasing ice_keep_alive_timeout may help: ice_keep_alive_timeout=30 But, in the second case, only the ports unlocking by...
Top