Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If Logitech USB camers microphone does not work (when it is chosen in sound menu), format / sample rate changing in Audio MIDI Setup and rebooting can help.

2. iOS Safari freezes on playback when publisher changes a camera.

Symptoms: when camera is changed, the stream published playback freezes in iOS Safari browser.

Solution: enable transcoding using the following parameter in flashphoner.properties file

Code Block
languagebash
themeRDark
disable_streaming_proxy=true

or set a fixed resolution in player script for stream playback

Code Block
languagejs
themeRDark
    var options = {
        name: streamName,
        display: remoteVideo,
        flashShowFullScreenButton: true
    };
    if (resolution) {
        options.playWidth = resolution.split("x")[0];
        options.playHeight = resolution.split("x")[1];
    }
    stream = session.createStream(options).on(STREAM_STATUS.PENDING, function(stream) {
        ...
    });
    stream.play();