Search results

  1. Max

    Does WCS3 support latest chrome/firefox browser

    No way, we do not support this version any more The best way is to download and install WCS5.2 from scratch, requesting a new trial license (which can be expanded to 180 days for development by request), then test it for your use case. Yes, you have to rework your application code. The actual...
  2. Max

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

    Please read this and this posts for description how to fix the issue You should rework the code: - check if there is a desktop stream in stream names list - if yes, implement desktop layout as described in that topic - if no, implement grid layout as described in the doc If this seems too hard...
  3. Max

    Web SDK Snapshot issue

    Good day. We fixed snapshot series taking issue (WCS-2709) in build 5.2.706. Please update and check.
  4. Max

    В Web SDK отсутствует возможность указать атрибуты video-тега

    Добрый день. Мы подготовили патч, который Вы можете применить к исходным текстам WebSDK и собрать их с поддержкой опции localVideo session.createStream({ name: streamName, display: localVideo, cacheLocalResources: true, receiveVideo: false...
  5. Max

    Does WCS3 support latest chrome/firefox browser

    Good day. The problem is TLS 1.0 support is dropped in most of latest browser builds. WCS 3 supports only DTLS 1.0 for WebRTC connections, so it will not work with latest browser builds any more. We recommend you to upgrade to WCS 5.2/ this is the only possible way to communicate perfectly with...
  6. Max

    Flasphoner webrtc not playing in the Firefox.

    Also, we fixed ICE timeout issue in Firefox when RTP bundle is enabled (WCS-2787) in build 5.2.701. Please update to this or later build and check if the issue still persists.
  7. Max

    При воспроизведении видео нет звука.

    В этом примере поток только воспроизводится. В нем же указано, как обойти autoplay policy, но с использованием jQuery $("#volumeControl").slider({ range: "min", min: 0, max: 100, value: currentVolumeValue, step: 10, animate: true...
  8. Max

    Re-Publish YouTube stream using FlashPhoner Server

    The article mentioned above supposes the following workflow: 1. Capture stream from Youtube by youtube-dl 2. Publish the stream captured from Youtube to WCS as RTMP by ffmpeg 3. Play RTMP stream published to WCS as WebRTC You can install youtube-dl and ffmpeg to the same server as WCS, so the...
  9. Max

    ipv6 and ipv4

    Please check WebRTC publishing/playback, it seems working right now When IPv6 is enabled, netstat can show pots listened as tcp6 however in fact they are IPv4 (we've published IPv4 for test) Please check stream publishing from your client side.
  10. Max

    Firefox issue

    Good day. We fixed ICE timeout issue in Firefox when RTP bundle is enabled (WCS-2787) in build 5.2.701. Please update and check
  11. Max

    please provide me the code to create wss server on my local server with node.js

    Good day. Please clarify what do you exactly mean: 1. Use Web SDK as node.js package to implement client part. Now, there is no NPM WebSDK package, we're still working on it in ticker WCS-1286. You can download Web SDK source code from GitHub and prepare your custom package if you need. 2...
  12. Max

    I would like to integrate Flashphoner in Angular 5.

    Good day. Please check the following: 1. Is SSL certificate correctly imported to server? 2. Is correct domain name requested from browser using both Angular and vanilla JavaScript (Two Way Streaming, Player examples, etc)? 3. Is the same websocket endpoint requested from the same browser using...
  13. Max

    GPU Transcoding and Custom Transcoder Interface

    Good day. We working on ticket WCS-2437 to prepare NVIDIA CUDA transcoding to production usage. Will let you know in this topic. We have no such plans yet. Now, it is possible to get raw decoded frame in YUV format and modify it by implementing custom Java interface class. But, in this case...
  14. Max

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

    To remove the room name from stream name, you should: 1. Publish a participant stream with participant name only, for example user1 2. For the first participant, create mixer using REST API query /mixer/startup { "uri": "mixer://room1", "localStreamName": "room1" } 3. Add the...
  15. Max

    ipv6 and ipv4

    Please correct the parameter ip_v6 from ip_v6=server_ipv6_external_address=2400:xxxx:xxx:xx::xxx:7001 to ip_v6=2400:xxxx:xxx:xx::xxx:7001 restart WCS and check if stream can be published The example of this parameter is shown in documentation
  16. Max

    При воспроизведении видео нет звука.

    Пожалуйста, уточните следующее: - какая сборка WCS используется, с какой сборкой Web SDK? - по какой технологии играете видео: WebRTC, MSE, WSPlayer, HLS? - воспроизводится ли проблема в примерах из коробки при проигрывании потока: Two Way Streaming, Player? Если проблема не воспроизводится...
  17. Max

    RTMP to WebRTC (conference - room)

    Good day. Please clarify: do you mean conference build with RoomApi or conference based on MCU mixer? In the first case, RoomApi actually implements signaling only to transfer test chat messages and to and determine the number of participants. So you can publish RTMP stream to WCS, then play it...
  18. Max

    HLS edge server not playing

    If nothing helps or reverse proxy solution looks too complex, we raised the ticket WCS-2807 to implement a setting that will enable to return HTTP origin request URL in ACAO header. We'll let you know in this topic about results.
  19. Max

    HLS edge server not playing

    At StackOverflow supposed the whitespace to be divider in ACAO header, please try it hls_access_control_headers=Access-Control-Allow-Origin: http://load-balancer-domain:8081 http://load-balancer2-domain:8081 http://load-balancer3-domain:8081;... If this does not help we recommend to do the...
  20. Max

    Embed Player - Duplicate Video

    We cannot reproduce it on our demo server with Embed Player example "out-of-the-box" Below the steps we've done: 1. Publish test stream using Media Devices example (to set different publishing resolutions) 2. Play test stream in Embed Player <iframe id='fp_embed_player'...
Top