Search results

  1. Max

    Не воспроизводится видеопоток в Safari

    Если править код SDK так, как Вы предлагаете, это починит десктопный Safari, но может сломать мобильный. Кроме того, проблема, которую описывает клиент в данной теме, воспроизводится редко и даже не на всех экземплярах оборудования (например, на MacBook Pro early 2015 с MacOS Catalina 10.15.4 не...
  2. Max

    high CPU usage

    Good day. This is netty library issue on Java 11. This library is used by WCS for all networking, not just HTTP. The recommended Java versions are 8, 12 or 14. If there's no required JDK version in repositories, please install it manually as described here (the example for JDK 12 installation).
  3. Max

    Server Crash

    Good day. First, please use "Report" button on your topic page to send a report. Do not use report links from another topics. About server crash, please clarify the following: - WCS build - JDK version used - Is custom mixer layout used? If yes, please provide the source code Also, please...
  4. Max

    Embed Player - Duplicate Video

    The issue has not been reproduced. Please let know if it is reproducible with the demo server.
  5. Max

    screen sharing and re-publish error

    Please upload files greater than 30M to a google drive or another cloud storage. Then past download link into the report.
  6. Max

    screen sharing and re-publish error

    Here we use latest version Web SDK and WCS v.0.5.28.2753-5.2.695-8b089842c6d82724c987f9a645afbe84fbc74882 Screen Sharing example: https://demo.flashphoner.com/client2/examples/demo/streaming/screen-sharing/screen-sharing.html As you can see it works without extension in Chrome browser. We...
  7. Max

    OBS unable to reconnect after internet lose

    You can try to terminate OBS connection using REST API 1. /connection/find_all https://docs.flashphoner.com/display/WCS52EN/Examples#Examples-/connection/find_all 2. /connection/terminate https://docs.flashphoner.com/display/WCS52EN/Examples#Examples-/connection/terminate
  8. Max

    HLS edge server not playing

    CDN commands are part of CLI v2. CLI v2 is located on port 2002 by default. No additional configuration required. Please share your Origin - Edge configurations (flashphoner.properties) or provide SSH access to these two servers. We will check.
  9. Max

    Embed Player - Duplicate Video

    Good day. With layout fixes from this post, we cannot reproduce this issue. You can also wait for us to implement desktop layout customizing in ticket WCS-2752, we raised its priority and already working on it.
  10. Max

    Mixer Layout

    In this string currentPoint = new Point( PADDING_IN, (int) (layoutHeight*c + PADDING_IN) ); you should skip desktop stream index, for example int layoutWidth = 0; int layoutHeight = 0; int desktopIdx = -1; ... for (int c = 0; c < yUVFrameArr.length; c++) { Point currentPoint = new...
  11. Max

    Firefox issue

    Good day. Please update to latest WCS build 5.2.695 and check. If the issue still persists, it seems like a known issue for which we already testing the fix in ticket WCS-2787. The workaround is to disable RTP bundle support in server settings rtp_bundle=false
  12. Max

    [URGENT] Support external camera

    Good day. You should expose your custom camera to a browser (actually, to an operating system by installing appropriate device drivers you certainly wrote). Then you can choose the camera from input devices list Please read here how to select camera using WebSDK. Also please inspect Media...
  13. Max

    ICE candidates not sent by client

    Good day. Please read here about STUN procedure in latest WCS builds (it is the same for IPv4 and IPV6 candidates if enabled)
  14. Max

    Multiple Edge servers behind AWS LB not communicating

    Good day. We answered you in this topic about CORS headers setting on server side.
  15. Max

    HLS edge server not playing

    Good day. Please update to latest WCS build. Please note that CDN version is changed to 2.4 since build 5.2.685, so it is recommended to update all the CDN servers. You should add the following parameters to flashphoner.properties on HLS Edge servers behind load balancer...
  16. Max

    screen sharing and re-publish error

    This is an ancient issue which was fixed. Please update to latest WCS build and Web SDK build If the issue persists in latest build, please collect a report as described here including client debug logs, and sed using this link, we will check. You can do the folowing: 1. Play the screen...
  17. Max

    Issue with Video chat and Screen sharing (two way communication)

    Using MCU mixer, speaking participant is shown by green frame This is enabled by default. Please see this doc. You should use a special suffix for screen sharing stream name (desktop by default) to automatically activate screen sharing layout Please see details here You can use REST API to...
  18. Max

    Mixer Layout

    Yes, by default. You can order layouts by stream name: user1, user2, ... Actually, server crashes here. The reason is this string layoutHeight = Math.min((int) ((layoutWidth*9.0d/16.0d)), (int) ((canvasHeight - (yUVFrameArr.length - 1) * PADDING_IN)/ (double) (yUVFrameArr.length - 1))); In...
  19. Max

    screen sharing and re-publish error

    Good day. We cannot reproduce the issue with the latest WCs and WebSDK builds. So please update to latest WCS build from this page. This can be probably network issue between WCS and RTMP server to republish, the channel bandwidth is not enough for HD stream for example. Please try to use Chrome...
  20. Max

    Player HTML5 - Show Controls

    If you wish to always display controls on video in most browsers, you should implement custom controls as done in Embed Player example
Top