Search results

  1. Max

    Playing Adverts into the stream

    Good day. Since build 5.2.841 it is possible to iject one stream published on server into another using REST API POST /rest-api/stream/inject/startup HTTP/1.1 Host: localhost:8081 Content-Type: application/json Content-Length: 60 { "localStreamName": "stream1", "remoteStreamName": "stream2" }...
  2. Max

    Фоновая картинка и видео

    Добрый день. В сборке 5.2.841 добавлена возможность вставки одного опубликованного на сервере потока в другой при помощи REST API: POST /rest-api/stream/inject/startup HTTP/1.1 Host: localhost:8081 Content-Type: application/json Content-Length: 60 { "localStreamName": "stream1"...
  3. Max

    Управление микрофоном/звуком для iOS sdk

    Добрый день. В наших тестах в примере Player с последней сборкой iOS SDK 2.6.8 приложение не крашится при удалении разрешений NSMicrophoneUsageDescription и NSCameraUsageDescription из Player/Info.plist на iOS 12.4.9. На iOS 14.0.1 краш воспроизводится. Мы создали тикет WCS-3008, чтобы...
  4. Max

    Video freezes when moving the app to background

    We've done some changes also in Objective C framework code. We made some tests on SDK build 2.6.8, and the issue is not reproduced in Two Way Streaming example. Please provide your code sample to reproduce the issue using this private form.
  5. Max

    Конфигурация с использованием Load Balancer

    Балансировщик должен пробрасывать websocket соединения на внешний адрес инстанса, и медиапорты на инстансах должны быть открыты в Security Group при создании шаблона (п 6). В этом случае WebRTC должен работать. Вы можете использовать встроенный TURN или настроить coturn в том же инстансе. В...
  6. Max

    Webm problem on Google Chrome

    Hello! Please tell me what version of WCS you have. If you are using an older version, please update your WCS. Version list: https://docs.flashphoner.com/display/WCS52EN/Release+notes If the problem will persist in the latest version of WCS please provide ssh access to your server using a...
  7. Max

    Проблема с русским языком

    Добрый день. Смотреть нужно в код примера Conference на эту строку. Чтобы работать с символами национальных алфавитов в именах пользователей, используйте encodeURIComponent для кодирования при подключении к комнате function start() { var url = $('#url').val(); var username =...
  8. Max

    RTCPeerConnection.createAnswer() - Failed to set remote video description send parameters for m-section with mid='2'

    Please form your code as code. Looks like you are using older server version where we had similar issue. Try to update to the latest one https://docs.flashphoner.com/display/WCS52EN/Release+notes
  9. Max

    Getting TLS obsolete warning

    Hello Server version needs to be updated to the latest version i.e. 5.2.854 https://docs.flashphoner.com/display/WCS52EN/Release+notes This version supports DTLS 1.2 See also https://forum.flashphoner.com/search/41906/?q=dtls&o=date
  10. Max

    can't access with admin user

    Good day. Unfortunately, we cannot connect to your server using credentials you've provided. Please check address and access key.
  11. Max

    galaxy s10 reconnect issue

    When you forcefully change network type, you must create a new sessoin. So, do the session reconnection always in your code when local publishing is failed.
  12. Max

    Конфигурация с использованием Load Balancer

    Добрый день. Нет. Ни один из протестированных нами балансеров (AWS EC2, Google Cloud) этого не гарантирует. Потоки, предназначенные для микширования в одном микшере, должны зайти на сервер с этим микшером. Если предполагается подключение подписчиков к выходным потокам микшеров по WebRTC, тогда...
  13. Max

    galaxy s10 reconnect issue

    As we wrote above, reconnection example can be applied to playback only. Also, the case of connection closing is not described in the example. Please implement playback reconnection as described, and try to reproduce the issue on the phone. In the conference case, you should check: - if just one...
  14. Max

    Android sdk 'libjingle: (network.cc:805): Connect failed with 101' error persist when trying to reconnect

    Please check if the issue is reproduced using Streaming-min example. If not, please modify example code minimally to reproduce the issue, and send source code archive using this private form. If the issue is reproduced with example out of the box, please collect a report as described here and...
  15. Max

    How can I clear the video recording icon (red icon) in Chrome browser?

    releaseLocalMedia function does not work for mock video element because it is used only for passing source video to custom element and is destroed on STREAM_STATUS.PUBLISHING event. If you wish to customize local video element (define controls and style), you can use the following trick: 1. In...
  16. Max

    Andorid SDK is returning Null on stream.getRecordName()

    We announce every build changes on this page, so you can monitor it.
  17. Max

    Video freezes when moving the app to background

    We raised the new ticket WCS-3003 to investigate it. We're now testing Swift SDK wrapper in ticket WCS-2853. So we only tested background issues with Objective C SDK.
  18. Max

    Android sdk 'libjingle: (network.cc:805): Connect failed with 101' error persist when trying to reconnect

    Make sure UDP ports open on your server or firewall [31000 - 32000] by default. As you can see from logs it is STUN timeout error. Android device can't send or receive STUN UDP packets. You can also check connection with our demo server wss://demo.flashphoner.com:8443
  19. Max

    galaxy s10 reconnect issue

    https://docs.flashphoner.com/display/WEBSDK2EN/How+to+reconnect+to+a+stream+automatically This doc is not applied to Room API directly. Try to re-Join instead or re-publish stream to the room joinRoom(); or publishLocalMedia(room);
  20. Max

    How can I clear the video recording icon (red icon) in Chrome browser?

    Hello Flashphoner.releaseLocalMedia(document.getElementById("display"), "WebRTC"); https://flashphoner.com/docs/api/WCS5/client/web-sdk/latest/Flashphoner.html
Top