Search results

  1. Max

    Don’t know how to parse CABAC streams

    Добрый день. Да, WCS не поддерживает CABAC, необходимо либо отключать его на устройстве, либо переключаться на стриминг VP8, что Вы и сделали.
  2. Max

    Не работает embed player

    Добрый день. Проверьте, пожалуйста, работает ли пример плеера с Вашим потоком: https://demo.flashphoner.com:8888/client2/examples/demo/streaming/embed_player/sample.html Если да, и если проблема по-прежнему воспроизводится, приведите, пожалуйста, пример Вашей страницы с кодом плеера, а также...
  3. Max

    iOS SDK - Player Crash

    Good day. We can not reproduce the issue. When we build Player application from GitHub with latest SDK according this manual in Xcode 10.3 in MacOS Mojave 10.14.6, it does not crash neither on iPhone 6 (real device with iOS 12.4) nor on iPhone 8 (Xcode simulator with iOS 12.4). We've used clean...
  4. Max

    RTSP string format

    Good day. Please clarify your case. If you're capturing RTSP stream from IP camera and playing it via WebRTC, RTSP URL format depends on IP camera capabilities. Please see details here for this case. If you're playing some stream from WCS in a player as RTMP, you can not specify a time range...
  5. Max

    Video submission issues with Safari 12.1

    Good day. Incoming video packets buffer size incremention is a temporary workaround in your case. Now we're working on permanent fix. Please provide us to support@flashphoner.com a couple of recording examples 2-3 minutes duration with picture and sound to test synchronization, if possible.
  6. Max

    Video does not appear in local and remote streams on iOS Safari

    Good day. We cannot reproduce the issue in Safari 12.1.2 on MacOS 10.14.6 with code example from the post above. Those are the steps we've done: 1. Modified Two Way Streaming example code WCS_HOME/client2/examples/demo/streaming/two_way_streaming/two_way_streaming.js 2. Opened Two Way Streaming...
  7. Max

    Add delay to player

    Good day. You can not add any delay to realtime stream unless channel bandwith is too bad. But you can for example stop playing the stream for free users after some time and display some banner. This should be done on client browser side. Another way is to record live stream with 1 minute...
  8. Max

    WCS Server VOD

    Good day. First, your mp4 file should not contain B-frames. This can be checked with ffprobe, for example ffprobe -show_frames file.mp4 > report.txt If the report file contains pict_type=B then you should re-encode mp4 file to play it smoothly. WCS does not support B-frames in any stream...
  9. Max

    Video does not appear in local and remote streams on iOS Safari

    Good day. Please update WebSDK to latest build from this page, then try to modify Two Way Streaming sample source code as follows: function publishStream() { var session = Flashphoner.getSessions()[0]; var streamName = $('#publishStream').val(); session.createStream({ name...
  10. Max

    Video does not appear in local and remote streams on iOS Safari

    Good day. You should use STREAM_STATUS.UNPUBLISHED event as trigger to publish stream again. Please see call flow here for details. You can not publish stream with the same name before you receive this event.
  11. Max

    Не убиваются процессы

    Добрый день. Воспроизводится ли проблема после перезапуска сервера? Если да, то предоставьте, пожалуйста, SSH доступы к серверу на support@flashphoner.com
  12. Max

    Не убиваются процессы

    Случаи, в которых включается транскодинг, а также способ его принудительного отключения описаны здесь.
  13. Max

    iOS SDK - Player Crash

    We try to reproduce the issue (ticket WCS-2278) and let you know results.
  14. Max

    Video submission issues with Safari 12.1

    Good day. By default, Safari browser sends 3 keyframes when stream is just published, then it stops sending keyframes for a very long time. The parameter periodic_fir_request=true makes Safari browser to send keyframes regularly. This affect recording if record rotation is used, new fragment...
  15. Max

    iOS SDK - Player Crash

    Good day. Please make sure you've build examples according to this manual in Xcode 10 and higher. Also please check if Player example crashes in iOS 12. If you have modified Player example code please check if Player example build from source "out of the box" also crashes.
  16. Max

    Stream Server stopped working

    Good day. We have fixed your licence, now stream publishsing and playing work on your server.
  17. Max

    Не убиваются процессы

    Добрый день. WCS использует один процесс, в чем Вы можете убедиться, выполнив на сервере команду top. Внутри процесса сервера используется пул потоков, их показывает команда htop или утилита jstack. Потоки, которые не используются в данный момент, не занимают процессорное время. При завершении...
  18. Max

    Download latest WCS 5.1 version

    Good day. As you may have noticed, there was site hosting problems. Now, main Flashphoner site works nomally, you can download WCS 5.1 as described here. You can also get download link from Release notes page, "Build" column
  19. Max

    Stream Server stopped working

    Hello, The license on your server has expired, therefore publishing is not working. You need to renew the license.
  20. Max

    Можно ли отключать идентификатор использования камеры в браузере

    Добрый день. В WebSDK есть функция Flashphoner.releaseLocalMedia(), которая освобождает локальный видео элемент страницы: function onPublishing(stream) { $("#publishBtn").text("Stop").off('click').click(function () { $(this).prop('disabled', true); stream.stop()...
Top