Search results

  1. Max

    Playing Adverts into the stream

    Seems like the bottleneck is in WCS internal backend which implements RoomApi. Actually, you're creating such a big room for 700 participants, RoomApi is not intended for this. The only way to solve it is to implement custom backend application using /rest-api/data/send to send a message from...
  2. Max

    Playing Adverts into the stream

    In this case you should: - get the more powerful server - expand media ports range, for example media_port_from=10001 media_port_to=50000 - (optional) implement your own backend to exclude RoomApi which requires WCS internal backend Please look at the Stream.getInfo() example: if (status ==...
  3. Max

    Задвоение звука с микрофона в конференции

    Добрый день. Посмотрите, пожалуйста, на эту строку в conference.js: function playParticipantsStream(participant) { if (participant.getStreams().length > 0) { $("[id$=Name]").each(function (index, value) { if ($(value).text() == participant.name()) { var...
  4. Max

    Playing Adverts into the stream

    Please provide a message received handler code. Do you start advert playback on client side when message is received by client? Also, please check server log files if clients requested VOD from server. If yes, this explains what's happens as we mentioned above. If no playStream requests, and...
  5. Max

    AMI /etc/hosts, hostname

    Yes, this is correct. Origin 1 EU is CDN entry point for all the CDN nodes in this example. We mentioned above that this means the first node used to connect a new (or restarted) server to CDN.
  6. Max

    Add a video file to mixer by API

    Good day. You can play MP4 file as VOD then add VOD stream to mixer: 1. Place MP4 file to /usr/local/FlashphonerWebCallServer/media folder 2. Use REST query to capture VOD stream POST /rest-api/vod/startup HTTP/1.1 { "uri":"vod://sample.mp4" "localStreamName": "test" } 3. Add VOD...
  7. Max

    Переключение трэков MediaStream при трансляции WebRTC потока как RTMP

    В таком случае, если уж Вы используете сервер для ретрансляций, серверная модель публикации потоков (с публикацией потоков бродкастеров на сервер и сигналингом через REST API и REST хуки) выглядит предпочтительнее, т.к. снимает нагрузку с браузера, собирающего все потоки, и позволяет обойти...
  8. Max

    AMI /etc/hosts, hostname

    Yes, on every server. The port is specified in security group rules for the currently published AMI.
  9. Max

    VOD HLS

    Hello, Playback as HLS cannot be started for VOD URL, but VOD stream with a local name can be started using REST method vod/startup rest-api/vod/startup { "uri":"vod-live://fileName.mp4", "localStreamName": "streamName" } Then that local stream name can be used for playback as HLS.
  10. Max

    AMI /etc/hosts, hostname

    Please verify that there is a rule in iptables to accept connections to port 8084. (Or, try removing the REJECT (reject-with icmp-host-pro) rule.)
  11. Max

    Playing Adverts into the stream

    The problem is not in client side code. The server resources (for example, media ports) is not enough to simultaneosly establish 700 WebRTC connections to play VOD if another 700 is already installed. That's why we recommend to move advert file to separate hosting.
  12. Max

    No audio playback in Chrome since Chrome 81

    Good day. Please update WCS to the latest build 5.2.597 from this page. Also please sure the following parameter is set in flashphoner.properties file dtls_force_version_0=false or is not set at all. The message on screenshot occurs when DTLS connection is failed. Seems like Chrome dropped...
  13. Max

    Playing Adverts into the stream

    Good day. Every of 700 clients try to establish WebRTC connection to play VOD from server. Probably server free ports and other resources exhausted in this case. So VOD looks not so suitable for big subscribers amount. Please try to place advert mp4 file to the separate web host or even to some...
  14. Max

    Переключение трэков MediaStream при трансляции WebRTC потока как RTMP

    Добрый день Уточните, пожалуйста - речь идет о захвате потоков с HTML5 Canvas, публикации по WebRTC и ретрансляции как RTMP одного из потоков по выбору оператора? Не самая простая схема. Давайте попробуем разделить задачу. 1. Захват видео Почему бы не захватывать видео с камер непосредственно...
  15. Max

    CDN Mode Limits

    Good day. In theory, no limits. But you should aware the following: 1. CDN entry point node should alway be available 2. The ports described in this post should be available on every node for every node in CDN Please consider to start from one Origin and a couple of Edges behind load balancer.
  16. Max

    AMI /etc/hosts, hostname

    8084/tcp is used by default for CDN signaling. The connection is established "everyone to everyone", so this port should be available for all the servers on all the servers 8080/tcp is used for internal websocket connections to pull streams from Origin to Edge via WebRTC, so this port also...
  17. Max

    Unable to stream video from Pelco VideoXpert VMS

    Good day. We received your report and raised the ticket WCS-2672 to investigate it. We'll let you know results here.
  18. Max

    AMI /etc/hosts, hostname

    Good day. This parameter is used in launch script only to bypass IP detection on AMI first start. This article shows how to deploy a simple CDN on servers with public IPs, in Digital Ocean for example For this scheme to work, CDN nodes domain names should resolve to public nodes IPs, and port...
  19. Max

    Задвоение звука с микрофона в конференции

    Добрый день. Минимальный уровень, при котором детектор сработает, устанавливается в этой строке processor.threshold = level || 0.10; processor.latency = latency || 750; а ниже, в этой функции, текущий уровень аудио сравнивается по модулю с уровнем срабатывания function handleAudio(event)...
  20. Max

    Audio stream over RTSP problem

    Good day. Your RTSP stream is not available. We checked playback from pcap dump on the latest build 5.2.597 with use_fdk_aac=true (by default), and audio is playing. Please update to latest build and check. If the problem persists, please provide us access to the stream on which we can reproduce it.
Top