Search results

  1. 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
  2. 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...
  3. 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.
  4. 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.
  5. 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...
  6. 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...
  7. 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.
  8. 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...
  9. Max

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

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

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

    Проверили Ваш отчет. Несколько замечаний, не относящихся к проблеме, по формированию отчета в целом: - если проблема воспроизводится на одном сервере (origin), отчеты с другого сервера (edge) не нужны - дампы трафика бесполезны при отсутствии клиентских дебаговых логов, т.к. без информации в...
  11. 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
  12. 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...
  13. 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...
  14. Max

    Can not start transponder Error

    We checked your server. First, please update JDK to 12 or 14 as described here to prevent excessive CPU load when there're no streams published on server. Then, you still using obsolete 5.0 branch. Please update to latest 5.2 build 5.2.971 for RTMP republishing to work. To do this: 1. Backup...
  15. Max

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

    Добрый день. Проблема по описанному сценарию не воспроизводится в сборке 5.2.970 c настройками сервера по умолчанию: 1. Публикуем поток test1 (предполагаем, что это ведущий) в примере Two Way Streaming или Media Devices 2. Создаем микшер запросом curl --data...
  16. Max

    отсутсвие обновление с 2015 года

    Добрый день. Пример WebViewSwift доступен на GitHub. Описание пример здесь. iOS SDK желательно обновить до 2.6.46 . Потребуется также обновление WebSDK до сборки 2.0.171, где скорректировано определение браузера с учетом User-Agent, поставляемого WKWebView по умолчанию.
  17. Max

    audio playback issue

    In RoomApi, streams published by participants are usual streams, so they can be muted/umuted on publisher side only. So you should provide some signaling messaging from host to participant to mute.
  18. Max

    Fixing Video Frame Size in WebRTC

    Yes, this is Two Way Streaming example (look at its code on GitHub) This can be done with stream transcoding only. For example: publish stream with constraints width: 1280, height: 720 play with constraints width: 720, height: 1280 and disable aspect ratio preserving in...
  19. Max

    audio playback issue

    Unfortunately, this is not possible. If you're playing main mixer stream, you will always hear all the participants audios including yours. That's why MCU mixer should be used if you want to hear all the others, but not yourself. But, if you remove your own stream from mixer, the corresponding...
  20. Max

    Can not start transponder Error

    Hello Your error is related access rights in the Linux system. Try to reset rights on server folder chmod 777 -R /usr/local/FlashphonerWebCallServer-{version} Or try to start server as root user. sudo -s service webcallserver stop service webcallserver start
Top