Search results

  1. Max

    Launching Flashphoner server in AWS Auto Scaling Group

    If you want to collect all the streams to one ffmpeg server before republishing to FB, you should place Origin servers behind load balancer, and get streams by RTMP from one Edge server powerful enough to collect al the published streams. Please clarify: how much publishers you plan to handle...
  2. Max

    Flashphoner Loadbalancer

    Good day. You use a wrong link, this doc is avaliable here https://docs.flashphoner.com/display/WCS52EN/Load+balancing But this function is obsoleted and is not supported any more. Use third party load balancer instead.
  3. Max

    Идентификация стримов при multiple stream recording

    Сейчас имя стрима и mediaSessionId записывабтся в атом tnam для конкретной дорожки: [ftyp] size=8+24 ... [moov] size=8+56602 [mvhd] size=12+96 ... [trak] size=8+25060 [tkhd] size=12+80, flags=1 enabled = 1 id = 1 duration = 35453 width = 0.000000...
  4. Max

    Problem with WCS on AWS E2

    This is definitely not a configuration issue. Seems like this is Elastic IP issue: if Elastic IP is configured for the instance, it should be set as external IP in WCS settings because WCS adds external IP to WebRTC candidates list when sending SDP to client. Anyway, glad to hear the problem is...
  5. Max

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

    The message Autoplay detected... means only the first play() call for preloader file is failed. Usually, this may be due to automatic playback without user action. Then, the second play() is called. In your case, it's also failed. So this is not autoplay issue. May be this is browser thread...
  6. Max

    Edge servers failed to load streams

    To answer this question you would need a monitoring tool like Grafana + Prometheus https://flashphoner.com/10-important-webrtc-streaming-metrics-and-configuring-prometheus-grafana-monitoring/ Once you have metrics from all of your servers you can find a possible cause why a server is unhealth.
  7. Max

    Идентификация стримов при multiple stream recording

    Названия дорожек записываются внутри mp4 контейнера. Далее offline-mixer-tool эти дорожки читает и объединяет. Мы посмотрим, можно ли информацию о дорожках извлечь распространенным софтом. Если удастся это сделать, отпишем. Опишите пожалуйста что конкретно вы планируете делать с дорожками...
  8. Max

    Качество видео и параметры flashphoner'a

    Здравствуйте. 1. Что касается профиля. Профили используются только в том случае, если у вас есть три сервера: Origin, Edge, Transcoder. В этом случае, если на Edge настроены профили, Edge заказывает стрим с такой конфигурацией у Транскодера. Транскодер забирает стрим у Origin сервера...
  9. Max

    Launching Flashphoner server in AWS Auto Scaling Group

    To play the stream from instance behind LB, or to republish this stream to FB, anyway, you should detect the direct instance IP using backend as we recommended above. Or, you may set up CDN: - place Origin servers behind load balancer 1 (to publish streams) - place Edge servers behind load...
  10. Max

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

    This function is for WSPlayer only, and this is obsoleted. Please check if preloader file is available by this.PRELOADER_URL. Also please make sure you're opening the page via HTTPS. Again, please try to reproduce the issue in Player example (no Vue.js, no other frameworks, pure Javascript) with...
  11. Max

    Problem with WCS on AWS E2

    You should use netcat in combination with tcpdump to check ports availability, Please read this doc: Port routing checking
  12. Max

    Problem with WCS on AWS E2

    Good day. Please check if media ports from range media_port_from-media_port_to (31001-32000/udp by default) are available from your desktop as described here If not, please clean iptables setup on the instance: sudo iptables -F Then test publishing again. If this still don't work, please check...
  13. Max

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

    Please use false instead of true here for playing video.
  14. Max

    Removing Participant's during Conference

    The example above is a sample how to implement, not a working code. So please provide your code to check or access to webpage to test using this form. Please test in the Conference example. Are there any text messages loss? If not, seems like the problem is in your code.
  15. Max

    Трансляция экрана телефона

    Прежде всего, отметим, что трансляция экрана не работает в мобильных браузерах, поэтому необходимо использовать мобильный SDK в нативном приложении. Посмотрите, пожалуйста, описание примеров Android Screen sharing и iOS Screen Capturer Swift. Проверить задержку можно следующим образом: 1...
  16. Max

    Launching Flashphoner server in AWS Auto Scaling Group

    So, you publish WebRTC and play it as RTMP from server, right? In this case, you should catch /connect and /publishStream REST hooks on your backend (as we recommenede above), get direct server instance ip from sessionId field, form RTMP link like rtmp://direct_instance_ip:1935/live/streamName...
  17. Max

    Трансляция экрана телефона

    Здравствуйте. Должна быть задержка меньше секунды.
  18. Max

    Edge servers failed to load streams

    Hello All the streams are traced in SDR logs https://docs.flashphoner.com/display/WCS52EN/WCS+Core+logs#WCSCorelogs-SDRlogs 1. Reproduce your issue 2. Find affected stream in the latest sdr.log 3. Attach full sdr.log and logs/server/flashphoner.log Report form From your logs we can see that...
  19. Max

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

    Проверили Ваш следующий отчет. Сам по себе отчет содержит ровно то же самое. Но по предоставленному коду можно предположить, что Вы используете в качестве источника картинки канвас. В этом случае фризы при уходе страницы в фон являются ожидаемым поведением. Использование setTimeout в этом случае...
  20. Max

    Media port recycle

    Use server statistics page http://wcs:8081/?action=stat&groups=port_stats. You can also set up Prometheus+Grafana as described in this article 10 Important WebRTC Streaming Metrics and Configuring Prometheus + Grafana Monitoring, and get a graph for ports statistics.
Top