This SDK wraps Aspose.Video REST API, which allows to edit video properties such as FPS, aspect ratio, resolution and Bitrate in the Cloud. Developers can also convert videos to different formats and re-encode videos on demand.
- Convert videos to different formats.
- Re-encode videos with different codecs.
- Combine several video files into one video.
- Adjust properties including, volume level, FPS, PTS, resolution, Aspect ratio, bitrate, video standard (PAL, NTSC, FILM).
- Add text or image watermark.
- Extract thumbnail images from video.
- Extract part of the video.
- Extract video information.
- Add audio to video.
Audio Video Interleave AVI, Animate Video File FLV, iTunes Video M4V, MPEG-4 MP4, Apple QuickTime Movie MOV, Windows Media Video WMV
H.265/MPEG-H HEVC x265, H.264/MPEG-4 AVC x264, QuickTime H.264, DivX Pro Codec, H.263/MPEG-4 Part 2 DivX Pro Codec, Xvid, H.262/MPEG-2 x262, Microsoft codecs WMV (including WMV 7, WMV 8, and WMV 9), MS MPEG-4v3, Google (On2) VP6, VP6-E, VP6-S, VP7, VP8, VP9, libtheora
Register an account at Aspose Cloud Dashboard to get you application information. Next, execute Install-Package Aspose.Video-Cloud
from the Package Manager Console in Visual Studio to fetch & reference Aspose.Video Cloud SDK assembly in your project. If you already have Aspose.Video Cloud SDK for .NET, execute Update-Package Aspose.Video-Cloud
to get the latest version. You may alternatively install the package from command line as nuget install Aspose.Video-Cloud
.
- .NET Framework 2.0 or later
- Json.NET
// Get your ClientId and ClientSecret from https://dashboard.aspose.cloud (free registration required).
var videoApi = new OcrApi("MY_CLIENT_SECRET", "MY_CLIENT_ID", "api.aspose.cloud");
ConvertOptions options = new ConvertOptions();
var request = new PostConvertVideoRequest("original.avi", "mp4", "destination.mp4", options);
videoApi.PostConvertVideo(request);
Home | Product Page | Documentation | API Reference | Code Samples | Blog | Free Support | Free Trial