Search results

  1. Max

    Проблема записи с телефона Samsung

    Добрый день. По имеющимся логам выглядит так, что клиенту недоступен WebRTC медиа порт, на который он должен установить соединение. Это может означать либо проблемы с сетью у клиента, либо проблемы с самим телефоном. Точнее можно было бы сказать, только имея дебаговые клиентские логи для этого...
  2. Max

    Video freezing after a few hour

    Usually, the CPU load may grow due to stream transcoding, or, in the lates JDK 8 and JDK 11 builds, due to network I/O issues. So we recommend to update JDK to 12 or 14 as described here, the following JVM settings tweak is also needed after this update. If this does not help, please provide SSH...
  3. Max

    What does this error means ?

    Good day. This is not an error, it's a normal garbage collector (GC) behaviour. The memory in Java heap is allocating by application request until there's no space to allocate the requested size. In this case, GC stops JVM, removes all the objects which are not used any more, to free memory...
  4. Max

    Флешфонер падает сразу после начала трансляции

    Добрый день. Это известная проблема, работаем над ней в тикете WCS-3211, релиз ожидается сегодня-завтра. Проблема проявляется при публикации потока с нестандартным форматом пикселя и транскодинге такого потока на сервере. В качестве временного решения рекомендуем откатить WCS на сборку 5.2.961.
  5. Max

    отсутсвие обновление с 2015 года

    Тикет WCS-3186 находится на предварительном тестировании, релиз ожидается до конца этой недели
  6. Max

    Adding watermark from client side

    Yes, it is possible. You should set publishing framerate in constraints: session.createStream({ name: streamName, display: localVideo, cacheLocalResources: true, receiveVideo: false, receiveAudio: false, useCanvasMediaStream: true...
  7. Max

    found Remote_cached video when stop the one stream and play other stream

    Please re-check your flow by adding console logging for example. When switching from one stream to another, you should stop the previous playback before playing new stream. Stream.stop() method always removes playing video tag. But publishing video tag may be cached by default, in this case it...
  8. Max

    I want realtime streaming from rtmp link.. 0 latency video

    Good day. HLS can give latency up to 15 seconds by design. We are working on LL-HLS (low latency HLS) implementation in ticket WCS-2242, it is on development stage. We'll let you know when release it. Also, in the latest iOS version, you can use WebRTC both in Safari and third party browsers...
  9. Max

    Can not start transponder Error

    Press CTRL+C in the terminal to stop capture and write pcap file.
  10. Max

    Can not start transponder Error

    Try tcpdump -i ens192 port 8081 -B 10000 -w log.pcap Here ens192 is network interface available from command ifconfig. Example: [root@demo /]# ifconfig ens192: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet netmask 255.255.255.240 broadcast 188.40.244.255 inet6...
  11. Max

    Can not start transponder Error

    tcpdump port 8081 -B 10000 -w log.pcap or if you send REST request from local PC, just start Wireshark and capture traffic from UI
  12. Max

    Can not start transponder Error

    REST API can return 404 Not found if no target stream found. You can do REST query to http://host:8081/rest-api/push/startup and capture HTTP traffic by Wireshark or tcpdump. 1. Please send us captured HTTP traffic. We will check validity of HTTP request. 2. Please send output of page...
  13. Max

    found Remote_cached video when stop the one stream and play other stream

    Please send a minimally modified code of this example to reproduce the issue. Just html and js in archive, no PHP, no fiddles. Seems like you never stop participant stream when playing a new one. In this case, a new video tag will be created per every new playing stream.
  14. Max

    Can not start transponder Error

    Please provide SSH access to the server this private form. If this is impossible please collect a report as described here including client debug logs and traffic dump collected on server. Traffic dump collection should be started before calling /rtsp/startup. Send the report archive with...
  15. Max

    Can not start transponder Error

    The stream you've provided is playing normally on our demo server in Player example, please check. So you should check if this stream is available from your WCS instance: - install ffmpeg - try ffplay rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov - look at ffplay output
  16. Max

    Can not start transponder Error

    Please check if RTSP stream can be played using ffmpeg/ffplay/VLC. If yes, please provide us RTSP link (should be available 24/7) to check the stream using this form. If you cannot provide the link available from outside, please provide SSH access to the server and RTSP link in private network...
  17. Max

    found Remote_cached video when stop the one stream and play other stream

    Good day. Is the issue reproducing with sample code from this page? If not, please modify the code minimally to reproduce the issue and send the code modified using this private form
  18. Max

    Не пишется видео-поток с android firefox

    Добрый день. При тестах на сборке WCS 5.2.968 и сборке WebSDK 2.0.170, проблема не воспроизводится в Firefox 89.1.1 на следующих устройствах: Nokia 5 (Android 9), Google Pixel 3 (Android 11), Xiaomi Redmi 9 (Android 10, MIUI 12.0.2) и воспроизводится только при публикации H264 на Samsung S10+...
  19. Max

    Передача информации в ошибке 403 на клиента

    Добрый день. В сборке 5.2.968 добавлена возможность вернуть собственное сообщение об ошибке в теле ответа. Подробнее здесь.
  20. Max

    Fatal Exception: java.lang.NullPointerException

    Good day. First, please check if you are using Android SDK 1.0 on Android 5-7 devices only. On Android 8 and higher, use Android SDK 1.1 (latest build 1.1.0.27). Also, 1.0.1.35 is too old. Please update to latest Android SDK 1.0 build 1.0.1.77.
Top