How to automatically close a popup recorder?
If you want to launch the video recorder in a fullscreen popup and automatically close the popup once the video has been recorded, you can go about it as follows: javascript var…
Blog
41 posts in Tutorials.
If you want to launch the video recorder in a fullscreen popup and automatically close the popup once the video has been recorded, you can go about it as follows: javascript var…
The easiest way to include video recording in iOS native apps is using our open source SDK. To add a video player to your app, use the following basic code: c…
The easiest way to include video recording in Android native apps is using our open source SDK. To add a video player to your app, use the following basic code: java…
Pulling videos from our servers is simple. The following PHP script is an example on how to do it: php require once(dirname( FILE ) . "/Ziggeo/Ziggeo.php"); $opts = getopt(""…
For security reasons, the index operation is not enabled by default in the browser. You should rather use the server side SDK to perform the index operation. That being said, it…
You can either listen to the submission event and do it yourself, or let our system prevent the submission of your html form. Let myform be the id of your html form. You can then…
You can either listen to the submission event, or let our system automatically add the token of the recorded video to your html form. Our system either creates or uses your hidden…
It is very easy to obtain the token of a recorded video using JavaScript: javascript ZiggeoApi.Events.on("submitted", function (data) { alert("Submitted a new video with token '"…
The easiest way to play around with Ziggeo is to sign up for our API (it's free, no credit card required), go to the default application in your dashboard and copy the application…
Wordpress plugins are written in php. We describe a simplified version of our publicly available plugin here. You create a main php file which we will call ziggeo.php that allows…