Search results

  1. Max

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

    Добрый день. К сожалению, в Вашем отчете не содержится ни кода Вашего приложения (предоставленная веб страница не содержит кода публикации), ни серверного лога, поэтому мы не можем даже определить используемый Вами в тестировании браузер. Дамп, который Вы собрали, также бесполезен без серверного...
  2. Max

    Media port recycle

    By default, RTP bundle support is enabled on WCS, so 1 port is used to transfer video and audio packets. So every participant uses 1 port to publish its stream, and 3 ports to play other participants streams. Therefore, every participant uses 4 ports, 16 ports should be busy while all the...
  3. Max

    Media port recycle

    By default, media port auditor interval is 5000 ms. So a port will be released in 15 seconds (3 tries, 5 seconds each). Please also clarify the following: 1. How do you test in details? 2. How much connections you use simultaneously (check statistics page)? 3. Please make sure you use the latest...
  4. Max

    Создание автобалансировщика AWS

    Домен должен быть привязан к entry point балансировщика, а не конкретного сервера.
  5. Max

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

    You should not use receiveVideo or receiveAudio when playing stream. Use constraints to play audio only from audio+video stream: session.createStream({ name: streamName, display: remoteVideo, constraints: { audio: true, video: false...
  6. Max

    Launching Flashphoner server in AWS Auto Scaling Group

    If you're republishing WebRTC stream as RTMP to the same server, use RTMP URL like this rtmp://localhost:1935/live/streamName. In this case, RTMP stream will always be published to the same WCS. But if you want to connect to right WCS instance to play the stream published, you should use backend...
  7. Max

    Media port recycle

    Good day. You can decrease media port checking interval: media_ports_auditor_interval=2000 In this case, a media port should be freed after 6 seconds (3 times 2 seconds each to check).
  8. Max

    Stream is not playing

    No, there is no any additional charge. Only the server instance itself is billed hourly by AWS. This depends on server capacity. Please read this article How many RTSP cams can I connect to the WebRTC server?
  9. Max

    Launching Flashphoner server in AWS Auto Scaling Group

    Please clarify: do you publishing RTMP to WCS and playing it as WebRTC, or vice versa? Anyway, in this case you should arrange a separate backend server and catch REST hooks /connect and /publishStream to detect on which server a stream is published. Then, you should send server IP address to...
  10. Max

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

    Good day. We cannot reproduce the problem on our demo server in Media Devices example in Safari browser: 1. Publishing a stream with Send audio disabled (statistics shows audio only is publishing) 2. Playing a stream in Media Devices (all the swithes are by default). Audio is playing correctly...
  11. Max

    https//:localhost:8444/ not opening

    WCS should work on all Centos 7 branches, we've also successfully tested it on Centos 8 and Centos Stream
  12. Max

    https//:localhost:8444/ not opening

    You should add HTML5 audio element on the page with a desired audio file, and start to play it when CALL_STATUS.RING is received. then stop playing it when CALL_STATUS.ESTABLISHED is received (or other status different from CALL_STATUS.RING).
  13. Max

    https//:localhost:8444/ not opening

    Good day. This issue was fixed in latest WebSDK build 2.0.198, please update and check.
  14. Max

    Создание автобалансировщика AWS

    Тогда балансировщик работает корректно. Теперь Вам необходимо подать нагрузку на инстанс в балансировщике. Для чистоты эксперимента остановите исходный инстанс, с которого сделан образ (да и биллинг в этом случае будет меньше). После этого проведите нагрузочное тестирование по любой из методик...
  15. Max

    SDK для desktop приложений

    Добрый день. WebSDK работает только в браузере, при этом используется реализация WebRTC, встроенная в браузер. Вы можете использовать Electron и на этой основе разработать web-приложение для запуска на десктопах. Web SDK доступен в виде NPM пакета Для python нет готового SDK. Если Вы...
  16. Max

    Microphone increase volume

    Seems like the following settings should help if your goal is sound quality: 1. Raise publishing bitrate and set up stereo publishing: constraints: { audio: { bitrate: 128000, stereo: true ... }, video: { ... } } 2. Create the file...
  17. Max

    Microphone increase volume

    Please try to raise audio publishing bitrate, for example constraints: { audio: { bitrate: 64000, ... }, video: { ... } }
  18. Max

    Создание автобалансировщика AWS

    Добрый день. Проверьте, что в этом пункте указан один экземпляр сервера Также проверьте, сколько экземпляров будет запущено изначально, если уменьшить максимальное количество инстансов От самого WCS здесь мало что зависит, инструкция по запуску составлена на основе документации Amazon и...
  19. Max

    wireless headset not working

    Good day. Please see this post. Please also do not dub forum topics. We respond you in your topics in working hours workdays, 10:00-20:00 GMT+3
  20. Max

    Microphone increase volume

    Good day. You can set microphone gain in Chrome browser: $("#micGainControl").slider({ range: "min", min: 0, max: 100, value: currentGainValue, step: 10, animate: true, slide: function (event, ui) { currentGainValue =...
Top