DotnetTimecode 1.1.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package DotnetTimecode --version 1.1.2
NuGet\Install-Package DotnetTimecode -Version 1.1.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="DotnetTimecode" Version="1.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DotnetTimecode --version 1.1.2
#r "nuget: DotnetTimecode, 1.1.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install DotnetTimecode as a Cake Addin
#addin nuget:?package=DotnetTimecode&version=1.1.2

// Install DotnetTimecode as a Cake Tool
#tool nuget:?package=DotnetTimecode&version=1.1.2

What is Dotnet Timecode?

CI NuGet

Dotnet Timecode is a single class c# library built to create an API for working with SMPTE Timecodes defined by the Society of Motion Picture and Television Engineers in the SMPTE 12M specification.

The library allows the user to construct timecode objects, manipulate timecode values, and convert between the most common framerates, including drop frame framerates such as 29.97DF and 59.95DF.

How do I get started?

Get the latest nuget package using the dotnet CLI

dotnet add package DotnetTimecode

or using the Nuget Package Manager

Install-Package DotnetTimecode

Add a reference to the library, then simply construct your objects.

Examples:

using DotnetTimecode;
using DotnetTimecode.Enums;

var foo = new Timecode(Framerate.fps30);
var bar = new Timecode(10, 00, 00, 00, Framerate.fps59_94_DF);
var baz = new Timecode("10:00:00:00", Framerate.fps24);

foo.ToString() // "00:00:00:00"
bar.AddMinutes(-61).ToString(); // "08:59:00:00"
baz.ConvertFramerate(Framerate.fps25).ToString(); // "09:36:00:00"

Contributions

Feel free to either add issues or create a pull requests through forks. Use appropriate issue-labels and imperative style commit messages.

License, etc.

dotnet-timecode is Copyright © 2022 Rasmus Broborg and other contributors under the MIT license.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.1.1 648 10/8/2023
3.1.0 759 11/21/2022
3.0.1 510 11/21/2022
3.0.0 535 11/21/2022
2.0.1 591 11/11/2022
2.0.0 498 11/11/2022
1.2.1 578 9/27/2022
1.1.2 639 9/27/2022
1.1.1 591 9/27/2022
1.0.0 620 9/27/2022

Inital release.