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());
}
});