Search results

  1. Max

    Постоянная высокая нагрузка на CPU

    Добрый день. Поскольку Вы используете TCP транспорт, в том числе внутри CDN, отключите использование TCP NIO, которое включено по умолчанию: ice_tcp_nio=false Именно это и может давать дополнительную нагрузку. Кроме того, уберите из конфигов строки: rtp_paced_sender=true...
  2. Max

    Embedding iframe player, audio-only mode available?

    Fullscreen button will hide only if audioOnly=true is set, otherwise it should be displayed.
  3. Max

    How to clear all Flashphoner session.

    If connection breaks while publishing, cilent will receive SESSION_STATUS.FAILED. See doc you mentioned.
  4. Max

    Embedding iframe player, audio-only mode available?

    Please try to use Embed Player attached. You should replace /usr/local/FlashphonerWebCallServer/client2/examples/demo/streaming/embed_player by attached archive content (actually, only player.js file is changed). This modification supports audioOnly parameter, for example...
  5. Max

    WCS EC2 Flashphoner crash

    Please collect a report as described here and send using this form. Also please describe your case in details: - how do you publish streams (WebRTC, RTMP, what codecs are used) and how much? - how many subscribers connect per each stream? - do you set a stream resolution explicitly to view...
  6. Max

    audio not working when using Safari and Web SDK (Firefox and Chrome are fine)

    Now vue file contains other error: in this code Flashphoner.playFirstVideo(document.getElementById("autoVideo"), true, this.PRELOADER_URL).then(() => { this.playStream() }).catch((e) => { console.log('error occured: %s',e); }) the...
  7. Max

    audio not working when using Safari and Web SDK (Firefox and Chrome are fine)

    We checked vue file you've provided. The only viewable problem is receiveAudio, receiveVideo options which are both deprecated. Use constraint instead as we recommended above. Also please provide a full VueJS project to run and test. We cannot run a standalone code. Use this form to send.
  8. Max

    How to clear all Flashphoner session.

    Yes, you can publish the stream with the same name again if you've lost connection and received STREAM_STATUS.FAILED or SESSION_STATUS.FAILED on client side. This can be done by the same way as player reconnection example.
  9. Max

    Embedding iframe player, audio-only mode available?

    Good day Unfortunately, Embed player does not support such function. Use Player example instead, in this case you can modify source code to display controls as needed.
  10. Max

    WebCallServer start not working with EFS mount

    Please check if WCS is listening port 443 in this case: sudo netstat -nlp | grep java | grep 443 If not, collect the report as described here and send using this form or provide SSH access to the instance using this form. The tweak with WCS_NON_ROOT=false makes WCS to start from root user and...
  11. Max

    How to clear all Flashphoner session.

    On server side, it's impossible because public IP is bound to NAT, not to the instance network interface. Public server IP is only known on client side when server domain name is resolved. So you should pass it by some way from client to your backend if you want to know it.
  12. Max

    audio not working when using Safari and Web SDK (Firefox and Chrome are fine)

    Please try to port Player example to VueJS from scratch as we recommended above. You can also use Embed Player in iframe if this works correctly. This is iOS Safari issue, it requires user action to start HTML5 video playback. We try to play preloader to workaround this. If both tries are...
  13. Max

    How to clear all Flashphoner session.

    Good day. Please use REST API queries /connection/find_all to find all the sessions POST /rest-api/connection/find_all HTTP/1.1 Host: 192.168.1.101:8081 Content-Length: 0 Content-Type: application/json and /connection/terminate to close client session POST /rest-api/connection/terminate...
  14. Max

    WebCallServer start not working with EFS mount

    Good day. Please update WCS to the latest build 5.2.1040. Then, change the following parameter in /usr/local/FlashphonerWebCallServer/bin/setenv.sh from WCS_NON_ROOT=true to WCS_NON_ROOT=false Then test. If this does not help, please provide SSH access to the instance using this form.
  15. Max

    Продолжительная прогрузка(задержка) видео при первичном запросе

    Данная настройка должна быть установлена на том сервере, куда публикуются входящие WebRTC потоки, т.е. на Origin сервере. На остальных серверах ее выставлять не нужно. По конфигурации видим несколько проблем: 1. Уточните, пожалуйста, следующее: у вас настройки HLS активны на всех трех видах...
  16. Max

    Issue with Mixer Streaming

    Good day. Please clarify in what log this message appears? In this is RTMP ingest point log, this can be channel issue between WCS instance and RTMP ingest point. In this case, migrate WCS instance to datacenter closer to RTMP ingest point or vice versa, use ingest point closer to WCS instance...
  17. Max

    Unpublish event duplication

    Добрый день. По тикету WCS-3320. В сборке 5.2.1038 актуальное состояние потока на момент остановки публикации (hasAudio, hasVideo, record) приходит в событии /unPublishStream.
  18. Max

    https//:localhost:8444/ not opening

    1. Install JDK 14 2. Download installation archive wget https://flashphoner.com/downloads/builds/WCS/5.2/FlashphonerWebCallServer-5.2.926.tar.gz 3. Unpack archive tar -xzf FlashphonerWebCallServer-5.2.926.tar.gz 4. Install WCS cd FlashphonerWebCallServer-5.2.926 sudo ./install.sh Then...
  19. Max

    Stream is not playing

    Please read this doc about HLS playback. Thre are 3 HLS samples: - VideoJS based - HLS.js based - Native HLS player (MacOS and iOS Safari)
  20. Max

    setting for 1000 user in flashphoner.properties file please help us

    Good day. Please read this article What kind of server do you need to run a thousand WebRTC streams? All the tweaks are described in chapter Preparing for testing.
Top