Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

Releases: winscripter/dotnetVEE

v2.0.0

19 Apr 09:13
38d0bbe
Compare
Choose a tag to compare

Major update that introduced many ways to work with audio files. Documented here.

v1.1.0

17 Apr 09:02
95c4e51
Compare
Choose a tag to compare

This is a minor feature update.

Changes

  • The Video class now supports the ConcatenateWith method, which concatenates that video with another one (adds video to the end)
  • dotnetVEE now supports Video to GIF conversion and various image format conversions:
    using dotnetVEE.Computation.Converters;
    
    string gifFile = GifConverter.FromVideo("cats.mp4");
    // gifFile holds path to the converted GIF image format
  • Added new Extended Effect: Scale: allows you to scale by X/Y (zoom in/out) of a video.
  • Removed redundant TODO in TextAppearanceUtility.cs

v1.0.2

16 Apr 17:04
05260cb
Compare
Choose a tag to compare

This is a minor update that does not include new features.

Changes:

  • dotnetVEE now uses SixLabors.ImageSharp 3.1.4; 3.1.3 had a high security vulnerability
  • all packages were updated to their latest version
  • fixed miserable bug where I forgot to disable logging for some utilities for debugging purposes

v1.0.1

16 Apr 16:59
72b6b79
Compare
Choose a tag to compare

This is the very first version of dotnetVEE.