Search results

  1. Max

    Can not start transponder Error

    We've tested RTMP republishing using your flow (capturing RTSP, then republish as RTMP) with your server. There is the following message in server log when trying to publish RTMP stream to Youtube: 03:00:30,253 ERROR RtmpPublisher - Thread-144 error creating client connection: Connection...
  2. Max

    https//:localhost:8444/ not opening

    Unfortunately, SIP traffic cannot be identified in pcap dump. Perhaps you've started dump collection after call establishing, but it must be started before this. On your server we saw the following messages in server logs: 13:13:08,673 WARN AbstractStunSocket - STUN-UDP-pool-40-thread-1 Can...
  3. Max

    Fixing Video Frame Size in WebRTC

    You can detect browser and device by checking navigator.userAgent, please see example here. Then, define tha constraints depending on device, for example function publish() { ... var constraints = getConstraints(); publishStream = session.createStream({ name: streamName...
  4. 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
  5. Max

    Can not start transponder Error

    This works on your server as described here step by step.
  6. 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.
  7. 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...
  8. 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"...
  9. 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...
  10. 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...
  11. 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
  12. 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...
  13. 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.
  14. 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.
  15. 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...
  16. 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...
  17. 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.
  18. 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...
  19. Max

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

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

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

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