Just to clarify, I am publishing using webrtc using your websdk in this case.
For futher questions, please clarify your case when starting a new forum thread.
While publishing WebRTC from browser, there's no settings in browser to change the keyframe interval. This can be done on server side only with the following parameter in
flashphoner.properties
file
Code:
periodic_fir_request=true
In this case, server will request keyframe from browser every 5 seconds (by default), so pause between page load and picture displaying will be no more than 5 seconds. To reduce this interval, use the following parameter
Code:
periodic_fir_request_interval=3000
In this case, keyframe interval will be 3 seconds.