Tools to Capture and Convert the Web

Convert URL's and HTML into Videos with GrabzIt

Use GrabzIt's video API to capture what a web page looks like over a period of time by converting it into a short video! All of our videos use H.264 formatted videos which mean the videos will be playable in almost all browsers.

This feature is new and currently in beta. Please contact us if you have any issues or feature request

HTML to Video API

To add GrabzIt's HTML to Video API to your website or app just choose one of the two different options from below and then follow the instructions on how to convert a web page or HTML to a video.

The following code snippet illustrates how easy it is to convert URL's to videos using GrabzIt's ASP.NET library. The API documentation contains even more ways you can customize your captures.

GrabzItClient grabzIt = new GrabzItClient("Sign in to view your Application Key", "Sign in to view your Application Secret")%>");
grabzIt.URLToVideo("https://www.tesla.com"); 
grabzIt.SaveTo("documents/result.mp4");

As this example code demonstrates only a few lines of code are needed to convert HTML or web pages into videos using JavaScript. To start creating videos download GrabzIt's JavaScript Library. Then get your Application Key and Secret, add the domain you want to use the JavaScript on.

<script src="https://cdn.jsdelivr.net/npm/@grabzit/js@<%= APIVersion.JavaScript %>/grabzit.min.js"></script>
<script>
GrabzIt("Sign in to view your Application Key").ConvertURL("https://www.bbc.co.uk/",
{"format":"mp4"}).Create();
</script>

The following code snippet illustrates how easy it is to convert URL's to videos using GrabzIt's RESTful API. The API documentation contains even more ways you can customize your captures.

https://api.grabz.it/services/convert?key=Sign in to view your Application Key&format=mp4&url=http%3A%2F%2Fwww.bbc.co.uk%2F