WCS evaluation

EKlein

New Member
Hello,

I'm working at "Perfecto by Perforce" (Perfecto), one of major players of automation testing frameworks.
One important part of our product is live video streaming, which is currently RTMP, but we have an intention to replace it with WebRTC in order to get rid of Flash technology and align our product with new technologies.
For now we see your product as an answer to our needs.
Unfortunately we faced with number of major issues which prevent us to move on to an enterprise account and finally integrate your solution as part of our eco-system.
The most of our issues related to unstable behavior of WebRTC video streams (freezes, wrong frames and unclear artifacts).
We are interested in one or number of online technical sessions which will help us to accomplish our POC and advance to implementation of production code.

Thanks in advance,
Elisheva Klein, senior SW developer.
Perfecto R&D
 

Max

Administrator
Staff member
Good day.
The most of our issues related to unstable behavior of WebRTC video streams (freezes, wrong frames and unclear artifacts).
The main reasons for stream freezes and artifacts usually are:
1. Bad channel quality between publisher and server and/or between player and server. This may be prevented by switching to TCP transport on client side
Code:
session.createStream({
    name: streamName,
    display: localVideo,
    ...
    transport: "TCP"
}).on(STREAM_STATUS.PUBLISHING, function (stream) {
...
}).publish();
2. Channel bandwidth is not enough for stream resolution and bitrate. For example, if you're publishing 1080p stream with 4 Mbps bitrate, and publisher or player channel has only 2 Mbps bandwidth, picture lags and freezes will occur. In this case, you should use lower resolution and bitrate on such channel.
We are interested in one or number of online technical sessions which will help us to accomplish our POC and advance to implementation of production code.
According to license agreement, we provide all the technical support on this forum. So ask your questions here with detailed description as recommended.
You can also request a presale from our sales department by contacting sales@flashphoner.com. In this case, you will be asked to provide:
  • your use case description
  • SSH access to the server
  • any additional info
to our support engineers.
 
Top