Search results

  1. Max

    При подключении наушников к устройству, звук идет через динамики устройства

    Добрый день. Нет, к сожалению, iOS такого не позволяет. Например, нельзя играть WebRTC поток одновременно с Youtube. Это касается как видео, так и аудио.
  2. Max

    Unpublish event duplication

    Добрый день. По тикету WCS-2738. В сборке 5.2.1036 добавлена возможность передачи custom объекта из /publishStream в /unpublishStream, а также для пары /playStream-/stopStream.
  3. Max

    Missing custom variables in ConnectionStatusEvent: Disconnected

    Good day. We added session custom object to /ConnectionStatusEvent with DISCONNECTED status since build 5.2.1036. Also it is now possible to receive /publishStream or /playStream custom object in /unpublishStream or /stopStream respectively.
  4. Max

    Принудительное изменение разрешения видео стрима

    Добрый день. В Ваших настройках сразу несколько ошибок: 1. Параметр cdn_origin_allowed_to_transcode устанавливается только на Edge серверах, о чем написано здесь 2. Параметр force_client_requested_video_resolution не имеет отношения к транскодингу 3. Параметры hls_player_width=1280...
  5. Max

    RTSP - No Codecs Found

    We received the dump. Will check.
  6. Max

    Launching Flashphoner server in AWS Auto Scaling Group

    In this case, use the scheme above: Origins are behind LB, and one Edge is permanent (and powerful enough to collect all streams, c5.4xlarge for example). You can also place Edges behind a separate LB (not the same as publish LB) if you play streams only as RTMP because ffmpeg uses one port to...
  7. Max

    Change in updated flashphoner.js causes error

    Good day. Yes, this changed in all examples since build 2.0.179 (on GitHub and in NPM package too). We added Browser object aexport from Flashphoner namespace and removed dubbing code from dependencies, so this change is necessary fro backward compatibility.
  8. 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...
  9. 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.
  10. 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...
  11. 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...
  12. 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...
  13. 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.
  14. Max

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

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

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

    Здравствуйте. 1. Что касается профиля. Профили используются только в том случае, если у вас есть три сервера: Origin, Edge, Transcoder. В этом случае, если на Edge настроены профили, Edge заказывает стрим с такой конфигурацией у Транскодера. Транскодер забирает стрим у Origin сервера...
  16. 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...
  17. 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...
  18. 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
  19. 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...
  20. 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.
Top