0

I have set up a group room with recording turned on and codec enforced to H.264. The iPhone users are able to see others video, but others can’t see theirs.

 participant.tracks.forEach(publication => {
          console.log("test1", publication);
          if (publication.isSubscribed) { // THIS IS FALSE ALWAYS WHEN THE REMOTE PARTICIPANT USES AN IPHONE WITH SAFARI BROWSER
                const track = publication.track;
               document.getElementById('remote-media-div').appendChild(track.attach());
           }
 });
Sujit.Warrier
  • 2,815
  • 2
  • 28
  • 47

1 Answers1

0

To others facing the same problem, make sure your link is https and not http, even though we had ssl the code sending the meeting email was sending the link as http instead of https.

Sujit.Warrier
  • 2,815
  • 2
  • 28
  • 47