Get a Free Trial

Convert Online Video's to Animated GIF's with ASP.NET

DownloadTechnical Information
ASP.NET API

Use these common tips to start converting online videos to animated GIF's with GrabzIt's ASP.NET API. However before you start remember that after calling the URLToAnimation method the SaveAsync or SaveToAsync method must be called to capture the video.

Basic Options

The only parameter that is required is the URL of the MP4, AVI or other online video to convert into an animated GIF.

grabzIt.URLToAnimation("http://www.example.com/video.avi");
//Then call the SaveAsync or SaveToAsync method

Convert Vimeo or YouTube Video to Animated GIF

GrabzIt's ASP.NET API can also convert Vimeo or YouTube video's directly to animated GIF's, just specify the URL of the page that the Vimeo or YouTube video appears on and the video it contains will be converted into an animated GIF. However because this service relies on a third-party website it can not be guaranteed to work for every video.

grabzIt.URLToAnimation("https://www.youtube.com/watch?v=a1Y73sPHKxw");
//Then call the SaveAsync or SaveToAsync method

Custom Identifier

You can pass a custom identifier into the CustomId property of the AnimationOptions class as shown below, this value is then returned to your GrabzIt ASP.NET handler. For instance this custom identifier could be a database identifier, allowing a animated GIF to be associated with a particular database record.

//The client should be stored somewhere and reused!
GrabzItClient grabzIt = new GrabzItClient("Sign in to view your Application Key", "Sign in to view your Application Secret", client);

AnimationOptions options = new AnimationOptions();
options.CustomId = "123456";

grabzIt.URLToAnimation("https://www.youtube.com/watch?v=a1Y73sPHKxw", options);
//Then call the SaveAsync method
await grabzIt.SaveAsync("http://www.example.com/Home/Handler");

Capture a Single Frame from a Video

To capture a single frame from a video you need to set the duration and the frames per second parameters to be 1. You can then get your required frame by setting the start position parameter.

//The client should be stored somewhere and reused!
GrabzItClient grabzIt = new GrabzItClient("Sign in to view your Application Key", "Sign in to view your Application Secret", client);

AnimationOptions options = new AnimationOptions();
options.FramesPerSecond = 1;
options.Duration = 1;
options.Start = 3;

grabzIt.URLToAnimation("http://www.example.com/video.avi", options);
//Then call the SaveAsync or SaveToAsync method
await grabzIt.SaveToAsync("result.gif");