Search results

  1. Max

    AMI /etc/hosts, hostname

    Yes, on every server. The port is specified in security group rules for the currently published AMI.
  2. 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.
  3. 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.)
  4. 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.
  5. 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...
  6. 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...
  7. Max

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

    Добрый день Уточните, пожалуйста - речь идет о захвате потоков с HTML5 Canvas, публикации по WebRTC и ретрансляции как RTMP одного из потоков по выбору оператора? Не самая простая схема. Давайте попробуем разделить задачу. 1. Захват видео Почему бы не захватывать видео с камер непосредственно...
  8. 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.
  9. 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...
  10. 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.
  11. 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...
  12. Max

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

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

    Mixer dead after 10 seconds.

    Good day. Please collect a report as described here and send it to support@flashphoner.com with link to this topic in emails body. We will check your configuration.
  15. Max

    RTMP - Increase quality output

    Good day. RTMP republished stream will always have the same resolution/bitrate as incoming WebRTC stream. You can manage WebRTC publishing bitrate as described here. Please note that incoming resolution/bitrate depemds on channel quality and bandwidth from publisher to server. To increase...
  16. Max

    Video Resolution 16:9 not 4:3

    Good day. You can use constraints to explicitly set video publishing resolution session.createStream({name:"stream1", constraints:{audio:true, video:{width:640,height:360).publish(); Please also read this page for details (based on Media Devices example) Note that screen sharing resolution can...
  17. Max

    AMI /etc/hosts, hostname

    The server launch script webcallserver is compatible with older WCS versions. In actual WCS build, this parameter can not be used. The public and local IPs are always detected as Amazon recommends: PUBLIC_IP=$(curl -s -f http://169.254.169.254/latest/meta-data/public-ipv4)...
  18. Max

    Help fpr beginner, I would like to get my OnIf camera stream en my website

    The minimum requirements to the server are listed here: x86_64 architecture, 1 CPU core, 2 Gb RAM, 10 Gb HDD. So WCS will not work on Raspberry Pi due to ARM architecture. There is also minimal configuration test results and recommendations on this page.
  19. Max

    AMI /etc/hosts, hostname

    Good day. You can configure Origin as follows: ip=<external ip> ip_local=<local ip> ... cdn_enabled=true cdn_ip=<local ip> cdn_role=origin ... In this case, Origin will accept publishing client connections on external (public) IP, but CDN connections on local (internal) IP. Edge server can be...
  20. Max

    Help fpr beginner, I would like to get my OnIf camera stream en my website

    Good day. Please read this step-by-step manual to embed your RTSP camera to your own webpage. To do this, you should have a basic HTML and JS knowledge.
Top