How to disable 'Waiting for Flash. Try clicking at the top of this box to activate' in chrome browser?
How to disable 'Waiting for Flash. Try clicking at the top of this box to activate' in chrome browser?
I have set the recorder control as below:
Version:1
<link rel="stylesheet" href="//assets-cdn.ziggeo.com/v1-stable/ziggeo.css" />
<script src="//assets-cdn.ziggeo.com/v1-stable/ziggeo.js"></script>
<ziggeo ziggeo-limit=60 ziggeo-width=600 ziggeo-height=280 ziggeo-id="myRecorder" id="myRecorder" ziggeo-face_outline="true" ziggeo-countdown=0 ziggeo-disable_first_screen="true"></ziggeo>
In Firefox it is working fine.
My expectation is automatically record the video without pressing 'Record Your Video' button.
-
Official comment
Just wanted to add a note here for anyone that finds this page, that the question was related to v1, and while the answer for it is true, for v2 this would not be the case.
If you are still using v1, we recommend switching to v2. If you are using v2, then the following is the best setup.
For application:
<link rel="stylesheet" href="https://assets.ziggeo.com/v2-stable/ziggeo.css" />
<script src="https://assets.ziggeo.com/v2-stable/ziggeo.js"></script>
<script>
var ziggeoApp = new ZiggeoApi.V2.Application({
token:"APP_TOKEN",
webrtc_streaming_if_necessary: true,
webrtc_on_mobile: true
});
</script>The way you can quickly tell if you are using v1 is to look for this:
<ziggeo in your embedding.
if your application setup uses
ZiggeoApi.Config.
If you are not sure or have questions about the switch, please reach out to us :)
-
The Flash message would be shown to you if the browser that visits the page can not use WebRTC. Now looking at the code you have mentioned above, it does seem as if you did not set up WebRTC to be used at all, only Flash, so what I would suggest is to add the following:
<script> ZiggeoApi.Config.webrtc = true;</script>
*It would not disable that message from being shown, however it will try to use WebRTC at any time that it is possible.
It is good to also mention that Chrome will still not allow you to use WebRTC if the page is opened over HTTP protocol, only if it is opened over HTTPS protocol would the same be possible.
In regards to going to the recording right away, the ziggeo-disable_first_screen="true" part of your code would force it to do the same, however the person visiting your page would still be asked if they want to share the same or not.
0
Please sign in to leave a comment.
Comments
2 comments