DateTakenExtractor 1.2.0

dotnet add package DateTakenExtractor --version 1.2.0
NuGet\Install-Package DateTakenExtractor -Version 1.2.0
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="DateTakenExtractor" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add DateTakenExtractor --version 1.2.0
#r "nuget: DateTakenExtractor, 1.2.0"
#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 DateTakenExtractor as a Cake Addin
#addin nuget:?package=DateTakenExtractor&version=1.2.0

// Install DateTakenExtractor as a Cake Tool
#tool nuget:?package=DateTakenExtractor&version=1.2.0

DateTakenExtractor

DateTakenExtractor NuGet version DateTakenExtractor Nuget download count

DateTakenExtractor (DTE) is a small, fast, simple library for reading and writing Date Taken metadata for photos and videos, with the library consisting of only a single static C# class.

DTE is essentially a simplified wrapper around MetadataExtractor, designed to make it easier for me to read and write this data in my two projects that use it. DTE also provides an abstraction around ExifTool, an excellent command line tool which I use to read certain types of metadata, as well as write/update Date Taken metadata.

Installing DateTakenExtractor

The easiest way to use this library is via its NuGet package.

Either add this to your project file

<ItemGroup>
    <PackageReference Include="DateTakenExtractor" Version="1.2.0"/>
</ItemGroup>

Or type this in Visual Studio's Package Manager Console:

PM> Install-Package DateTakenExtractor

Or search for DateTakenExtractor in the NuGet Package Manager in Visual Studio or JetBrains Rider.

DTE also REQUIRES ExifTool. <br>To install ExifTool, download the .exe, rename it from exiftool(-k).exe to exiftool.exe, and add it to your PATH or move the .exe to a directory already in the PATH, like C:/Windows.

Using DateTakenExtractor

DateTakenExtractor is very simple to use. The class contains several public methods for your use.

using D = DateTakenExtractor.DateTakenExtractor;

//These methods can take either file paths as strings, or FileStreams.
//First checks the metadata, then the filename, for the Date Taken (DT) data. dateTakenSrc would either be 'Metadata', 'Filename', or 'None'.
DateTime? autoResult = D.GetDateTakenAuto("C:/yourfilehere.jpg", out DateTakenSrc dateTakenSrc);

//Checks only the metadata of the file for DT data. null if none found.
DateTime? metadataResult = D.GetDateTakenFromMetadata("C:/yourfilehere.jpg");

//Checks only the filename of the file for DT data. Notice the timestamp pattern ↓ in the filename. null if none found.
DateTime? filenameResult = D.GetDateTakenFromFilename("C:/IMG_20210320_175909.jpg");

//Attempt to get DT data from both the metadata AND the filename.
D.GetDateTakenFromBoth("C:/IMG_20210320_175909.jpg", out DateTime? metadataDT, out DateTime? filenameDT);

//New in V1.1: updating Date Taken metadata! This works for .jpg, .png, .mp4, and .mov files.
//.gif and .mkv files are iffy since they're not really meant to contain this kind of data.
D.UpdateDateTaken("C:/IMG_20210320_175909.jpg", new DateTime(2020, 6, 9, 12, 30, 0));

Date Taken metadata can come from two locations: the file's actual internal metadata, or its filename. If a DTE method can't find the Date Taken in the metadata or the filename, the return value/out parameter is set to null.

Supported file types:

  • JPG
  • PNG
  • GIF
  • MP4
  • MOV
  • MKV

Contributing to DateTakenExtractor

To contribute to DateTakenExtractor, follow these steps:

  1. Fork this repository.
  2. Create a branch: git checkout -b <branch_name>.
  3. Make your changes and commit them: git commit -m '<commit_message>'
  4. Push to the original branch: git push origin DateTakenExtractor/<location>
  5. Create the pull request.

Alternatively see the GitHub documentation on creating a pull request.

Feel free to either email me or contribute if you spot a bug 🐛 or have a feature idea 💡.

Contact

If you want to contact me you can reach me at ellduc4@gmail.com

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.

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
1.2.0 467 7/14/2023
1.1.4 580 1/5/2023
1.1.3 677 7/12/2022
1.1.2 601 6/10/2022
1.1.1 631 6/5/2022
1.1.0 615 6/5/2022
1.0.2 601 5/24/2022
1.0.1 610 5/23/2022
1.0.0 678 5/23/2022

DTE V1.2 details on GitHub.