DotnetTimecode 1.0.0
See the version list below for details.
dotnet add package DotnetTimecode --version 1.0.0
NuGet\Install-Package DotnetTimecode -Version 1.0.0
<PackageReference Include="DotnetTimecode" Version="1.0.0" />
paket add DotnetTimecode --version 1.0.0
#r "nuget: DotnetTimecode, 1.0.0"
// Install DotnetTimecode as a Cake Addin #addin nuget:?package=DotnetTimecode&version=1.0.0 // Install DotnetTimecode as a Cake Tool #tool nuget:?package=DotnetTimecode&version=1.0.0
What is dotnet-timecode?
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?
Add a reference to the library, then simply construct your objects.
Examples:
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 | Versions 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. |
-
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.
Inital release.