Skip to content

Releases: GleamTech/VideoUltimate

VideoUltimate v2.1.1

20 Nov 14:46
Compare
Choose a tag to compare

Version 2.1.1 - November 20, 2019

  • Changed: Renamed nuget package to "GleamTech.VideoUltimate".
    From now on, same package names will be used for both get.gleamtech.com feed and nuget.org feed (no .NuGetOrg suffix).
    Please uninstall all GleamTech packages with old names and install the ones with the new names.
    In Visual Studio: Go to Tools -> NuGet Package Manager -> Package Manager Console and run these commands one by one in order:

    Uninstall-Package VideoUltimate -RemoveDependencies
    Uninstall-Package VideoUltimate.NuGetOrg -RemoveDependencies
    Install-Package GleamTech.VideoUltimate

    If you are using direct DLL references, note that the dependency assembly "GleamTech.Core" is renamed to "GleamTech.Common".
    So in this case, first clean your project, remove references to old assembly, add references to new assembly and build your project.

Included example projects:

  • ASP.NET Core (C#) - Visual Studio 2017+
  • ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
  • ASP.NET MVC (C#) - Visual Studio 2010+
  • ASP.NET MVC (VB) - Visual Studio 2010+
  • ASP.NET WebForms (C#) - Visual Studio 2010+
  • ASP.NET WebForms (VB) - Visual Studio 2010+

VideoUltimate v2.1.0

18 Nov 13:41
Compare
Choose a tag to compare

Version 2.1.0 - November 18, 2019

  • Fixed: VideoFrameReader.Seek was not seeking correctly for some files due to not including start time which could be non-zero.

  • Added: VideoFrameReader.Seek overload which accepts a TimeSpan.

  • Fixed: After seeking past EOF once, VideoFrameReader.Read kept returning false and VideoFrameReader.GetFrame kept
    throwing "end of file", even if you later seeked back to a valid position.

  • Improved: VideoFrameReader.Duration property will now reflect the duration of the video stream only (not container).
    VideoFrameReader.Seek(VideoFrameReader.Duration) should always seek to the last frame.

  • Improved: Stability of video processing.

Included example projects:

  • ASP.NET Core (C#) - Visual Studio 2017+
  • ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
  • ASP.NET MVC (C#) - Visual Studio 2010+
  • ASP.NET MVC (VB) - Visual Studio 2010+
  • ASP.NET WebForms (C#) - Visual Studio 2010+
  • ASP.NET WebForms (VB) - Visual Studio 2010+

VideoUltimate v2.0.2

14 Nov 12:10
Compare
Choose a tag to compare

Version 2.0.2 - November 14, 2019

  • Improved: Updated GleamTech.Core.

Included example projects:

  • ASP.NET Core (C#) - Visual Studio 2017+
  • ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
  • ASP.NET MVC (C#) - Visual Studio 2010+
  • ASP.NET MVC (VB) - Visual Studio 2010+
  • ASP.NET WebForms (C#) - Visual Studio 2010+
  • ASP.NET WebForms (VB) - Visual Studio 2010+

VideoUltimate v2.0.1

13 Nov 04:06
Compare
Choose a tag to compare

Version 2.0.1 - November 13, 2019

  • Improved: Updated GleamTech.Core.

Included example projects:

  • ASP.NET Core (C#) - Visual Studio 2017+
  • ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
  • ASP.NET MVC (C#) - Visual Studio 2010+
  • ASP.NET MVC (VB) - Visual Studio 2010+
  • ASP.NET WebForms (C#) - Visual Studio 2010+
  • ASP.NET WebForms (VB) - Visual Studio 2010+

VideoUltimate v2.0.0

31 Oct 19:17
Compare
Choose a tag to compare

Version 2.0.0 - October 31, 2019

  • Added: .NET Standard 2.0 DLL/nuget target is now available. This DLL can be used with ASP.NET Core 2.0+ web applications
    and .NET Core 2.0+ console/desktop applications. This means you can now use it with "ASP.NET Core on .NET Core" projects in
    addition to "ASP.NET Core on .NET Framework" which was already supported.

  • Added: Example project AspNetCoreCS in addition to AspNetCoreOnNetFullCS.

  • Changed: License keys are changed so please go to https://www.gleamtech.com/upgrade and acquire a new license key
    if you want to use this version (or higher). If your one year maintenance has not ended, you will receive a new free
    license key on the same page.

Included example projects:

  • ASP.NET Core (C#) - Visual Studio 2017+
  • ASP.NET Core on .NET Framework (C#)- Visual Studio 2017+
  • ASP.NET MVC (C#) - Visual Studio 2010+
  • ASP.NET MVC (VB) - Visual Studio 2010+
  • ASP.NET WebForms (C#) - Visual Studio 2010+
  • ASP.NET WebForms (VB) - Visual Studio 2010+

VideoUltimate v1.9.18

12 Oct 01:25
Compare
Choose a tag to compare

Version 1.9.18 - October 12, 2019

  • Fixed: First call to VideoFrameReader.Read failed for some files (it did not happen if called after VideoFrameReader.Seek)

  • Improved: NetCore/NetStandard DLL coming soon (probably next release).

Included example projects:

  • ASP.NET WebForms (C#)
  • ASP.NET WebForms (VB)
  • ASP.NET MVC (C#)
  • ASP.NET MVC (VB)
  • ASP.NET Core (C#)

VideoUltimate v1.9.15

13 Sep 16:10
Compare
Choose a tag to compare

Version 1.9.15 - September 12, 2019

  • Improved: Handling of temporary files:

    • New property GleamTechConfiguration.TemporaryFolder for being able to use a different folder than the default system temporary
      folder. All GleamTech products will use the same folder (removed FileUltimateConfiguration.TemporaryPath property).
      When you change this property, some default folders for products will change automatically if they are subfolders of TemporaryFolder.
      You can set this property to have more control on temporary folder (adjusting permissions, observing size etc.).
      For example for web apps, you can set it to "~/App_Data/Temporary" to observe it more easily.

    • Under temporary folder, there will be no more subfolders for the products but there will be subfolders for the feature:

      "GleamTech.Core" -> "ResourceCache"
      "FileUltimate\ImageCache" -> "ImageCache"
      "FileUltimate\DocumentCache" -> "DocumentCache"
      "FileUltimate" -> removed
      "DocumentUltimate" -> removed
      "ImageUltimate" -> removed

      The old subfolders will be migrated automatically.

    • When accessing TemporaryFolder, detailed "Access Denied" error messages will be shown to troubleshoot insufficent
      permission issues. The error message will include the safe display path and current windows identity (and impersonation level).

  • Improved: Preparation for NetCore/NetStandard DLL.

Included example projects:

  • ASP.NET WebForms (C#)
  • ASP.NET WebForms (VB)
  • ASP.NET MVC (C#)
  • ASP.NET MVC (VB)
  • ASP.NET Core (C#)

VideoUltimate v1.9.12

08 Aug 17:15
Compare
Choose a tag to compare

Version 1.9.12 - August 8, 2019

  • Improved: Updated GleamTech.Core.

Included example projects:

  • ASP.NET WebForms (C#)
  • ASP.NET WebForms (VB)
  • ASP.NET MVC (C#)
  • ASP.NET MVC (VB)
  • ASP.NET Core (C#)

VideoUltimate v1.9.11

06 Aug 11:41
Compare
Choose a tag to compare

Version 1.9.11- August 6, 2019

  • Improved: Updated GleamTech.Core.

Included example projects:

  • ASP.NET WebForms (C#)
  • ASP.NET WebForms (VB)
  • ASP.NET MVC (C#)
  • ASP.NET MVC (VB)
  • ASP.NET Core (C#)

VideoUltimate v1.9.10

11 Jul 01:36
Compare
Choose a tag to compare

Version 1.9.10 - July 11, 2019

  • Improved: Updated GleamTech.Core.

Included example projects:

  • ASP.NET WebForms (C#)
  • ASP.NET WebForms (VB)
  • ASP.NET MVC (C#)
  • ASP.NET MVC (VB)
  • ASP.NET Core (C#)