Search results

  1. 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.
  2. 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...
  3. Max

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

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

    Fail to start 2 streams on WebRTC server

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

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

    Добрый день. В сборке 5.2.996 мы исправили проблему, приводившую к неравномерное загрузке процессорных потоков, выделенных для записи настройкой file_recorder_thread_pool_max_size. В свою очередь, это приводило к росту очередей записи и росту потребления памяти. Кроме того, добавлена...
  6. 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.
  7. 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();
  8. Max

    Fail to start 2 streams on WebRTC server

    But you've mentioned above Flash mediaprovider. So please clarify: do you republish both streams? If yes, to what server? Provide REST API quiries. Also reproduce the problem, collect a report as described here and send using this form.
  9. Max

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

    Добрый день. В одной websocket сессии можно играть несколько потоков. Посмотрите, пожалуйста, код примера 2Players. Пример входит в поставку WCS, можете его протестировать, например, на нашем demo сервере https://demo.flashphoner.com/client2/examples/demo/streaming/2players/2players.html Это...
  10. Max

    Need start player every cut on stream

    Good day. Please try to restore stream playback automatically by tweakling player code as described here.
  11. Max

    Fail to start 2 streams on WebRTC server

    Good day. Please describe in details how do you publish stream to server: from browser via WebRTC, from ffmpeg, OBS or another encoder via RTMP, from third party server by RTMP URL etc. Also collect a report as described here and send using this form.
  12. Max

    RTSP - No Codecs Found

    Hello This means No supported codecs found. Your device sends MPEG2 (payload type RTP/AVP 33). This codec is not currently supported. Supported codec: H.264 (MPEG4 part 10). Requirements: https://docs.flashphoner.com/display/WCS52EN/From+an+IP+camera+via+RTSP#FromanIPcameraviaRTSP-Supportedcodecs
  13. Max

    RTSP Failure

    Hello We found issue related RTSP digest authentication The cam sends two WWW-Authenticate headers: MD5 and SHA-256 It seems SHA-256 is not supported on our end and we do not form Authorization response properly. We raised internal ticket WCS-3268. Will inform about progress. As a...
  14. Max

    Screen Share and Video on Flashphoner Conference Feature

    You should either stream every participants video separately, or use stream mixer to combine all the streams to one. Anyway, the stream can be republished to Facebook or Youtube as described here.
  15. Max

    Добавление надписи в транслируемое видео

    Это можно сделать только при помощи собственного класса для перехвата и обработки декодированных фреймов. Предварительно нужно будет конвертировать GIF в набор статических YUV картинок, а затем отрисовать анимацию в Java коде. Способ с транскодингом по REST API тут не подойдет, т.к...
  16. Max

    How to get playload.streamName using Android SDK?

    We cannot reproduce the issue in MediaDevicesSwift example (code on GitHub): 1. Publish a stream named test on Origin server from WebSDK Medai Devices example 2. Mute the stream audio in WebSDK Medai Devices example 3. Open Media Devices Swift application on iPhone, play the stream named test...
  17. Max

    How to get playload.streamName using Android SDK?

    Please clarify: What application do you use for testing and what SDK? If the problem is reproducing in Media Devices example application, please describe setps to reproduce. If not, please modify MediaDevices example minimally to reproduce the problem and send the code using this form. Yes. You...
  18. Max

    How to get playload.streamName using Android SDK?

    We cannot reproduce the problem: 1. Publish a stream on WCS using MediaDevices example (WebSDK or Android SDK) 2. Mute the stream audio 3. After that, play the stream in Android SDK example MediaDevices 4. It shows Audio muted: true Try to reproduce the problem in MediaDevices example (source on...
  19. Max

    Problem with WebRTC connection on iOS

    Good day. We fixed the issue with app://localhost origin in build 5.2.995. Please update and check.
  20. Max

    How to get playload.streamName using Android SDK?

    You can get mute/unmute status as shown here @Override public void onStreamEvent(StreamEvent streamEvent) { runOnUiThread(new Runnable() { @Override public void run() { switch (streamEvent.getType()) { case audioMuted...
Top