Search results

  1. Max

    Delay issue in chrome

    Good day. We've fixed this issue in WebSDK build 0.5.28.2753.99. Please update and check. In your example, we saw small friezes, which are sometimes repeated. Please collect a report as described here and send to support@flashphoner.com, we will check (http and https link).
  2. Max

    Android App crashing

    It seems like line endings in export_list file was converted to CRLF while cloning project from GitHub. Please check your Git settings, it should be git config --global core.autocrlf false then download examples again or save export_list file with Unix-style line endings (LF). Far Manager...
  3. Max

    Android App crashing

    Good day. Please check if the folders listed in export/export_list file exist in folder wcs-android-sdk-samples. If not, please download examples again: git clone -b 1.1 git@github.com:flashphoner/wcs-android-sdk-samples.git
  4. Max

    Delay issue in chrome

    Good day. We can not a play your stream, it is unavailable. Please update WCS to latest version. Also, please check also if streaming from iOS is stopped using the example on your server (two-way streaming or media devices)...
  5. Max

    No Audio in Microsoft Edge (42.17134.1.0)

    Marc, it's a good news. If you have any questions, write to us.
  6. Max

    Not work sound in iPhone (only Chrome)

    Good day. On iOS, the only 100% working browser is Safari, it's Apple policy.
  7. Max

    No Audio in Microsoft Edge (42.17134.1.0)

    Good day, Marc. Yes, we've tested it on this version (Windows 10 Pro build 1803, EdgeHTML 17.17134) with all switches set by default. There's no problem on laptops with embedded camera and mic, in this case the default speaker works. When using desktop PC with external USB camera connected, the...
  8. Max

    CDN ACL for HLS playback

    Добрый день. Реализация данного функционала есть в планах, но не в ближайших. Вы можете реализовать авторизацию следующим образом: 1. При обращении к потоку на клиенте в HLS URL в параметре token указывать ключ ACL $("#urlServer").val() + "/" + streamName + "/" + streamName + ".m3u8" +...
  9. Max

    No Audio in Microsoft Edge (42.17134.1.0)

    Good day. You can try Media Devices at demo server and test a stream: As you can see, you can choose Play audio - Output to test the audio stream (right). After that check on your server: https://{IP address or domain name of your...
  10. Max

    Delay issue in chrome

    Good day. This should not affect. Have you updated the WCS version as we wrote in the previous message?
  11. Max

    CDN ACL for HLS playback

    Добрый день. В данный момент ограничение доступа работает только для WebRTC и RTMP. Аутентификация HLS реализована отдельно, с примером вы можете ознакомиться в документации к WCS.
  12. Max

    No Audio in Microsoft Edge (42.17134.1.0)

    Good day, Marc. We fixed the issue, now audio output device selection is available in MS Edge. Please update WebSDK to build 0.5.28.2753.97 (it is compatible both with WCS 5.1 and 5.2) and check.
  13. Max

    Add stream currentTime to Stream class

    Good day. WebRTC is supported since iOS Safari 11, so currentTime tag should be available on iOS devices which can be upgraded to actual iOS versions. WSPlayer is a solution for older iOS versions which move to end of support gradually, so WSPlayer tweaking is advisable if you have a lot of...
  14. Max

    all stopped working after update to 5.2

    Good day. What versions of a WebSDK and WCS do you have installed? This information can be found in the files: WCS_HOME/client2/client.version WCS_HOME/conf/WCS.version And Java version: java -version Ports have been changed for the REST API: port 8081 is now used with http, instead of 9091...
  15. Max

    Add stream currentTime to Stream class

    Good day. The browser sets the currentTime property based on timestamps in video, relative to video playback beginning. This is intended primarily for navigation purposes. So please clarify what kind of delay you trying to calculate on frontend?
  16. Max

    Support for 302 - Moved Temporarily

    Good day. We released the build 5.2.179 with 302 Moved Temporarily redirect support for RSTP streams. Please update to this build and check.
  17. Max

    on(STREAM_STATUS.FAILED, function () {

    You should wrap publishing code to the function publishStreamFunc() function publishStreamFunc() { pubStream = session.createStream(optionsStream).on(STREAM_STATUS.PUBLISHING, function (pubStream) { ... }).publish(); } and then call this function from retryToRestart() function...
  18. Max

    Experiencing a lot of disconnections after 30-63 seconds

    Good day. Is the problem reproduced with example applications?
  19. Max

    on(STREAM_STATUS.FAILED, function () {

    Good day. We will look at your code and write the answer later.
  20. Max

    on(STREAM_STATUS.FAILED, function () {

    We discuss this problem in this topic You should adopt the example from this post to resume stream publishing, i.e. use STREAM_STATUS.PUBLISHING to check the stream status, move createStream() and publish() calls to separate function to call it when stream goes to FAILED status etc.
Top