Search results

  1. Max

    Can not start transponder Error

    Your screenshot is missing two details 1. No /rest-api/rtsp/startup 2. No rtmpTransponderFullUrl parameter for /rest-api/push/startup request
  2. Max

    Can not start transponder Error

    This works on your server as described here step by step.
  3. Max

    RTSP is not working with my server but running with demo flashphoner server

    If instance has been stopped, IP address will be changed on next launch. Know you public IP address and correct config /usr/local/FlashphonerWebCallServer/conf/flashphoner.properties Then restart WCS server. service webcallserver restart Check private IP address too and correct if needed.
  4. Max

    https//:localhost:8444/ not opening

    Please test the call again and gather the traffic dump tcpdump -i eno8 udp -s 4096 -w log.pcap If you open this dump in Wireshark you should be able to see voice traffic. Send us this dump for analyzing either via form or directly into the forum thread. Note. The test call should be started...
  5. Max

    Can not start transponder Error

    It seems port 8081 is not reachable on your server. Please check if port is open and not bound by other applications. As an option you can try https port 8444 https://cibunet.com:8444/rest-api/push/startup { "streamName": "rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov"...
  6. Max

    https//:localhost:8444/ not opening

    Hello Server 192.168.10.12 must be located in DMZ zone. At least TCP UDP ports in range [30000-32000] for SIP, voice, video traffic must be reachable. For example, your host has public static IP address 9.9.9.9 In such a case if UDP or TCP packet received on 9.9.9.9 port i.e. 31500, then host...
  7. Max

    Fixing Video Frame Size in WebRTC

    Ah yes https port is 8444 curl -X POST "https://127.0.0.1:8444/rest-api/stream/find" -H "Content-Type:application/json" -d '{"name":"100000000000003","published":"true","display":"metrics"}' --insecure http port is 8081 curl -X POST "http://127.0.0.1:8081/rest-api/stream/find" -H...
  8. Max

    Fixing Video Frame Size in WebRTC

    Try to pass valid json curl -X POST "https://127.0.0.1:8081/rest-api/stream/find" -H "Content-Type:application/json" -d '{"name":"100000000000003","published":"true","display":"metrics"}' --insecure
  9. Max

    Can not start transponder Error

    1. Restart WCS server to stop all push sessions 2. Open RTSP stream manually to see in the player. Example: https://demo.flashphoner.com/client2/examples/demo/streaming/player/player.html 3. Try to push this stream to localhost: curl -H "Content-Type: application/json" -X POST...
  10. Max

    audio playback issue

    It is normal. MCU stream name without participants audio is formed as {mixerName}-{incomingStreamName} No. Two streams with the same name cannot be published on server.
  11. Max

    Can not start transponder Error

    This means your SSL certificate is expitred. Please buy a new certificate for your domain and import it to WCS as described here. You can also use HTTP port 8081 for REST API queries, in this case SSL certificate is not required.
  12. Max

    Fixing Video Frame Size in WebRTC

    WebRTC may publish lower resolution than set in constraints depending on channel quality. So video contraints strictly define aspect ratio only. You can check actual publishing resolution in stream metrics: POST /rest-api/stream/find HTTP/1.1 Host: localhost:8081 Content-Type: application/json...
  13. Max

    Can not start transponder Error

    We checked your server again. You've not set rtmp_flash_ver_subscriber as we recommended above rtmp_flash_ver_subscriber=LNX 76.219.189.0 Now, Youtube returns Connection refused when you're trying to republish strem to it. So, set the parameter as recommended. To republish RTSP stream to...
  14. Max

    JOB

    We recommend you to look for developers on other sites. If you or your employees have any questions about WCS, we'll answer them on this forum.
  15. Max

    Video freezing after a few hour

    We checked your report and recommend the following: 1. Update JDK to 12 as described here 2. Enable ZGC as described here 3. Update WCS to build 5.2.969 or newer because 5.2.962 to 5.2.968 may crash while stream decoding (for example, if you play RTSP as VP8). 4. Remove...
  16. Max

    RTSP is not working with my server but running with demo flashphoner server

    Please use EC2 instance Id as admin password.
  17. Max

    Проблема с двойным подключением к сокету.

    Проверили Ваш отчет. Несколько замечаний, не относящихся к проблеме, по формированию отчета в целом: - если проблема воспроизводится на одном сервере (origin), отчеты с другого сервера (edge) не нужны - дампы трафика бесполезны при отсутствии клиентских дебаговых логов, т.к. без информации в...
  18. Max

    Video freezing after a few hour

    This means Java heap memory is not enough. The recommended heap size is at least 1/2 of server physical memory. Also, please collect a report as described here and send using this form
  19. Max

    Question about the Rest-api to connect rtsp link.

    Good day. The REST API query /rtsp/startup is always handled before connecting to RTSP stream because connection may take a long time (up to a few seconds). You can use REST hook /ConnectionStatusEvent. In this case, your backend will be notified about the RTSP stream is disconnected, for...
  20. Max

    RTSP is not working with my server but running with demo flashphoner server

    Good day. Seems you've done something wrong while unpacking installation archive. All the native libraries symlinks have zero size: To fix the issue, do the following: 1. Stop WCS sudo systemctl stop webcallserver 2. Download the latest WCS build wget...
Top