Search results

  1. Max

    Android SDK WebsocketNotConnectedException

    You should wrap Session.connect() in try/catch because the connection is establishing in this method, not in Flashphoner.createSession() method. Unfortunately, we cannot fix neither symptoms nor reason if there is no consistent reproduction.
  2. Max

    Возможность отслеживания ивентов mute (video/audio)

    Добрый день. В сборке Android SDK 1.0.1.81 добавлена возможность определить при проигрывании, заглушено ли аудио или видео в потоке. Подробнее здесь (код идентичен тому, что используется в Android SDK 1.1, т.к. единственная разница между ними в версии WebRTC библиотеки)
  3. Max

    RTSP Failure

    The fix is on testing stage. We'll let you know about progress.
  4. Max

    How to get playload.streamName using Android SDK?

    Please try Media Devices Swift example (source code on GitHub). Is the issue reproducing in this example?
  5. Max

    Тормоза видео на HTTPS странице.

    Для того, чтобы появились идеи, необходимо воспроизведение. В примере 2Players проблема не воспроизводится. Следовательно, от Вас необходима минимальная модификация кода примера, при которой проблема начинает воспроизводиться. Минимальная - это значит не переписывая весь пример на React и не...
  6. Max

    Canvas streaming error

    Good day. Please clarify what browser do you use? Also please check if Canvas Streaming example works in this browser. If yes, please provide your test code using this form, we will check.
  7. Max

    Streams overview

    Good day. You can use server statistics page. For example, to check how many WebRTC streams are publishing and playing, use the following URL curl -s 'http://localhost:8081/?action=stat&params=streams_webrtc_in,streams_webrtc_out' You'll get a response like this -----Stream Stats-----...
  8. Max

    Need start player every cut on stream

    Please provide the player.js code which you've modified using this form, we will check
  9. Max

    Need start player every cut on stream

    This is our demo player.html https://demo.flashphoner.com/client2/examples/demo/streaming/player/player.html This is demo player.js https://demo.flashphoner.com/client2/examples/demo/streaming/player/player.js If you have a project you have own player.js or similar file on your web server...
  10. Max

    Ошибка при принятии звонка

    Добрый день. Ошибка No remote sdp available, говорит о том, что режим "Delayed Offer" не поддерживается. Это значит, что ваш PBX (Asterisk) либо MicroSIP совершает исходящий звонок по направлению MicroSIP > Asterisk > WCS > Browser, отправляет SIP INVITE запрос и в этом запросе нет SDP. Если в...
  11. Max

    Need start player every cut on stream

    Yes. This code can be applied to player.js
  12. Max

    Android SDK WebsocketNotConnectedException

    Please check if this crash related to this your topic. Also, please check if the issue is reproducing in Phone Min example, Streaming-min example and so on. If not, modify example code minimally to reproduce the issue and send the code using this from.
  13. Max

    Fail to start 2 streams on WebRTC server

    Please change to var rtmpUrl = "rtmp://localhost:1935/live/" + "rtmp_" + streamName; Also, try to publish in WebRTC as RTMP example as we shown above.
  14. Max

    Chrome resolution ramp-up

    Good day. To workaround this behaviour, since WebSDK build 2.0.180 videoContentHint option was added. Bu default, is is set to detail, this forces Chrome to keep publishing resolution. Please read details here.
  15. Max

    Fail to start 2 streams on WebRTC server

    We successfully published two WebRTC streams with republiushing as RTMP to localhost in two different browser windows simultaneoudly Please note how RTMP URL field is filled. Please also check the code you use for RTMP republishing: we noted the stream rtmp://localhost:1935/live is pulishing to...
  16. Max

    Микширование потоков. Скрытие всех потоков из микшера, кроме рабочего стола/окна приложения

    Размер окна потока участника (не desktop) не регулируется и зависит от количества потоков в микшере. Если необходимо регулировать размер, придется разработать собственный класс для размещения картинок в микшере.
  17. Max

    Fail to start 2 streams on WebRTC server

    Please provide SSH accees to the server using this form, we will check
  18. Max

    Memory leaks, сервер перестает отвечать

    Добрый день. В сборке 5.2.996 мы исправили проблему, приводившую к неравномерное загрузке процессорных потоков, выделенных для записи настройкой file_recorder_thread_pool_max_size. В свою очередь, это приводило к росту очередей записи и росту потребления памяти. Кроме того, добавлена...
  19. Max

    Fail to start 2 streams on WebRTC server

    In you're streaming to FB/Youtube/etc, rtmp_transponder_full_url=true is the recommended setting. So you have to set a fully qualified RTMP URL including an unique stream name per server.
  20. Max

    Fail to start 2 streams on WebRTC server

    You are using the option rtmp_transponder_full_url=true So you must use exact RTMP URL in WebRTC as RTMP case: session.createStream({ name: "1000003", display: localVideo, ... rtmpUrl: "rtmp://localhost:1935/live/rtmp_1000003" ... }).publish();
Top