Search results

  1. K

    Dynamic MCU mixer layout

    Hello, We are developing a live meeting app, where meeting host can speak on their own or give a word to one of several participants (only one at a time). Thus, mixer stream can contain either single host stream or host and single participant streams. In the first case host stream must be full...
  2. K

    Room streams control and record

    @Max maybe it makes sense to add audioLevel and videoMuted parameters to /mixer/add method, so one can add muted participants using request like { "uri": "mixer://mixer1", "remoteStreamName": "stream1", "hasVideo": "true", "hasAudio": "true", "audioLevel": 0, "videoMuted" false } ?
  3. K

    Room streams control and record

    We need to mute/unmute participants during the conference, but initially (right after join) all participants must be muted. When I use 'hasAudio' => 'false' I cannot unmute this user later with audioLevel: 100, but if I use 'hasAudio' => 'true' then all users are unmuted initially. Of course, I...
  4. K

    Room streams control and record

    @Max Is there any possibility to add participant to a meeting already muted? Using 'hasAudio' => 'false' in /mixer/add parameters seems not working.
  5. K

    Room streams control and record

    @Max thanks it works!
  6. K

    Room streams control and record

    Well, the first error's gone after update. But the second question is still actual: what should be the mixer stream name to exclude certain participant audio?
  7. K

    Room streams control and record

    Oh, it seems we have an outdated Flashphoner version. I'll update it and try again.
  8. K

    Room streams control and record

    Hello @Max I couldn't do this :( If I add ?label=NAME to the local stream name, then start a mixer with /mixer/startup, and then try to add a user with /mixer/add, like you suggested, I get a 404 error from WCS... Also, what should be the name of the "local" mixer stream that doesn't...
  9. K

    Stream issue on iPhone

    Well, we finally got an error on our end when trying https://appr.tc/ in Safari on that iPhone so it is def specific to this device for some reason. So, this issue has nothing to do with flashphoner or anything in the app or on server end. Thanks.
  10. K

    Room streams control and record

    Thanks, I'll give it a try!
  11. K

    Room streams control and record

    Hello @Max In our app, not every user will be able to create or join the conference. Because of this, I'm going to use server-to-server REST requests /mixer/startup and /mixer/add instead of automatic mixer creation feature. But in this case, how can I set custom stream labels?
  12. K

    Stream issue on iPhone

    Here is a video recording in Safari on that iPhone for "media devices" tab. This is with mic/camera in safari settings set to "allow". You'll see from the screen recording that he's not able to see his feed in the top box after pressing "test"...
  13. K

    Stream issue on iPhone

    Hey @Max We were able to gather the following info: Model: iPhone X iOS version: 14.2/14.3 (not 100% sure) Video playback issues on our site Stream demo not working on your server in Safari, just the black box after pressing "start" with no kind of message or other indicators I don't think...
  14. K

    Stream issue on iPhone

    Hello, We have a very strange error with one of our iPhones (iOS 14.2). It cannot start streaming, just shows black local video area. No logs, no visible errors, nothing. We tried "Stream diagnostic" example hosted on our server and got the following...
  15. K

    Firefox on iPhone

    Hello, Does Web SDK work in Firefox on iOS? In "Streamer" example we get "FAILED: Local error" message (see attachment), and in our project we get the following error:
  16. K

    Possible error in playFirstVideo()

    Hello @Max , We are sorry, it seems our problems were because of old OSX version. We updated it recently and now on newest OSX version (10.15.7) everything works well. We will try to find old OSX and test again, just to be sure, but it seems there are no errors here. Sorry again.
  17. K

    Possible error in playFirstVideo()

    Hello @Max , We tested this in Safari as well and got the same result. Maybe the problem is in our specific use case. We are building a React app where live stream is restored automatically if it wasn't properly finished by the host. In this case (when the stream is restored automatically on...
  18. K

    Possible error in playFirstVideo()

    Hello, Currently, main part of playFirstVideo() method is following: if (src) { video.src = src; video.play().then(function () { display.appendChild(video); resolve(); })["catch"](function () { //WCS-2375. fixed autoplay in ios safari...
  19. K

    Room streams control and record

    @Max , How can we estimate server resources required for MCU mixer? Or, how many conference participants can be handled by 1 CPU if we are going to get 720p output?
  20. K

    Room streams control and record

    Hello @Max Thanks for your answer. Is there a schedule or plans of when this feature will be implemented?
Top