Search results

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

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

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

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

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

    Fixing Video Frame Size in WebRTC

    Try using single quotes /usr/bin/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"]' Or valid JSON as suggested here
  19. Max

    Fatal Exception: java.lang.NullPointerException

    You should handle Session.onDisconnection event to check if Websocket connection is interrupted, please see example on GitHub: /** * Callback functions for session status events are added to make appropriate changes in controls of the interface when...
  20. Max

    RTSP stream not working

    Good day. Seems you're trying to play the stream from a private network on demo server. Please make sure the stream is accessible from outside networks by some public IP. The addresses range 192.168.1.0/24 is reserved for private networks only.
Top