Search results

  1. 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.
  2. Max

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

    Проверили Ваш сервер. WCS работает, но порты закрыты файрволом: Видимо, проблема в этом правиле: Рекомендуем настроить iptables по инструкции с этой страницы (п 5).
  3. 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...
  4. 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...
  5. 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...
  6. Max

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

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

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

    Добрый день. 1. Адрес должен быть без /admin https://host_ip:8444 2. host_ip можно получить командой ifconfig в Linux 3. На Hetzner с недавнего времени порт 8444 закрыли. Вдруг сервер у вас там. 4. Проверить порты можно командой: netstat -nlp | grep java Если там есть порт 8444, значит...
  8. 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...
  9. 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
  10. 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
  11. 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.
  12. 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...
  13. 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.
  14. 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...
  15. 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...
  16. 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...
  17. Max

    RTSP stream not working

    If you do not have WCS server installed in your LAN, install it as described here (the server and system requirements are here) If you already have WCS installed in your LAN, and your RTSP stream is not working on this server, please provide RTSP URL and SSH access to the server using this form...
  18. Max

    Fixing Video Frame Size in WebRTC

    Try curl -X POST "http://127.0.0.1:8081/rest-api/stream/find" -H "Content-Type:application/json" -d '{"name":"100000000000003","published":"true","display":["metrics"]}' I have recently published stream 100000000000003 on our server and got metrics...
  19. Max

    RTSP stream not working

    IP address is not accessible. At least I can't connect to this address: telnet 192.168.1.82 554 Connecting To 192.168.1.82...Could not open connection to the host, on port 554: Connect failed Our demo server demo.flashphoner.com can't connect this address too. You can connect to this address...
  20. Max

    Can not start transponder Error

    You have to import SSL certificate and private key manually as described here https://docs.flashphoner.com/display/WCS52EN/Websocket+SSL#WebsocketSSL-ImportSSLcertificatesusingwebinterface Then open page in browser https://cibunet.com:8444 to be sure the page is secure and import complete.
Top