z440.atl.core 4.4.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package z440.atl.core --version 4.4.0
NuGet\Install-Package z440.atl.core -Version 4.4.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="z440.atl.core" Version="4.4.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add z440.atl.core --version 4.4.0
#r "nuget: z440.atl.core, 4.4.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 z440.atl.core as a Cake Addin
#addin nuget:?package=z440.atl.core&version=4.4.0

// Install z440.atl.core as a Cake Tool
#tool nuget:?package=z440.atl.core&version=4.4.0

Breaking changes

  • Major overhaul of TagData and related classes to streamline and simplify some parts of the library
    • You won't have any impact if you just use the Track class

    • If you were using TagData, please use TagHolder instead and mind the following :

      • Some fields have been renamed to align with the rest of the library : RatingPopularity, PicturesEmbeddedPictures
      • Some fields have been merged to align with the rest of the library : Recording<xxx>Date, TrackNumberTotal and TrackTotalTrackTotal, DiscNumberTotal and DiscTotalDiscTotal
      • Public type of the "Additional fields" field has been simplified and is now a IDictionary<string, string>
      • Numeral and date fields are now typed instead of being plain strings
      • Last but not least, as collections (EmbeddedPictures, AdditionalFields and Chapters) are deep-copied upon access, they can't be edited on the fly anymore. You'll have to edit a temporary collection and feed it to TagHolder
      // Old code (won't work anymore)
      TagData tag = new TagData();
      tag.Pictures = new List<PictureInfo>();
      PictureInfo pic1 = PictureInfo.fromBinaryData(/*...*/, PIC_TYPE.Unsupported, tagType, 0x01);
      tag.Pictures.Add(pic1);
      PictureInfo pic2 = PictureInfo.fromBinaryData(/*...*/, PIC_TYPE.Unsupported, tagType, 0x02);
      tag.Pictures.Add(pic2);
      
      // New code
      TagHolder holder = new TagHolder(); // Now use TagHolder instead of TagData
      // Note that you don't have to worry about holder.Pictures not being initialized anymore
      IList<PictureInfo> testPictureInfos = new List<PictureInfo>(); // Use a local temporary collection
      PictureInfo pic1 = PictureInfo.fromBinaryData(/*...*/, PIC_TYPE.Unsupported, tagType, 0x01); // That part hasn't changed
      testPictureInfos.Add(pic1);
      PictureInfo pic2 = PictureInfo.fromBinaryData(/*...*/, PIC_TYPE.Unsupported, tagType, 0x02);
      testPictureInfos.Add(pic2);
      holder.EmbeddedPictures = testPictureInfos; // Feed the temporary collection to the TagHolder
      
  • The subset of IMetaDataIO with the properties has been extracted and called IMetaData
  • The IMetaData.Track field name has been renamed to TrackNumber and IMetaData.Disc has been renamed to DiscNumber to align with the naming of the Track class and the old TagData class
  • Most helper classes are now internal to the library - for instance, you can't directly call StreamUtils or WavHelper anymore (don't know why you would in the first place...)

New

  • OGG : Support for reading embedded FLAC
  • OGG : ATL now properly reads multiplexed OGG files (e.g. Vorbis + Theora) and processes the audio part only
  • M4A/MP4 : Support for Publisher and Publishing date fields
  • M4A/MP4 : Support for alternate @des code for the General description field
  • New standard field to Track and IMetaData : Product ID
  • New feature : date values in AdditionalFields can be auto-formatted when prefixing them with MetaDataHolder.DATETIME_PREFIX. That feature can be turned off with Settings.AutoFormatAdditionalDates

Changed

The PictureTokens field is now deprecated as it is a remain from the era where ATL didn't support embedded images directly. This field will be removed on the next major udpate.

Fixed

WAV LIST INFO chunk now properly supports Recording Date, Genre, Popularity and Track number

Technical

Fixed unit tests for Linux and Unix-based systems (thanks to @sandreas)

Binaries are available from nuGet

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net48 is compatible.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.1

    • No dependencies.
  • .NETFramework 4.8

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on z440.atl.core:

Package Downloads
Milki.Extensions.MixPlayer

This library is for timelined sound effects playing.

Sandreas.AudioMetadata

Extension library to improve abilities of atldotnet, an excelent audio metadata library.

FRESHMusicPlayer.Core

Audio library abstraction library designed to make creating an audio player easier :)

NightcastMediaConverter

Package Description

Quaver.API

Package Description

GitHub repositories (3)

Showing the top 3 popular GitHub repositories that depend on z440.atl.core:

Repository Stars
audiamus/AaxAudioConverter
Convert Audible aax files to mp3 and m4a/m4b
sandreas/tone
tone is a cross platform audio tagger and metadata editor to dump and modify metadata for a wide variety of formats, including mp3, m4b, flac and more. It has no dependencies and can be downloaded as single binary for Windows, macOS, Linux and other common platforms.
NickvisionApps/Tagger
Tag your music
Version Downloads Last updated
5.22.0 413 4/17/2024
5.21.0 1,616 3/27/2024
5.20.0 4,784 2/20/2024
5.19.0 1,304 2/12/2024
5.18.0 941 1/31/2024
5.17.0 255 1/28/2024
5.16.0 1,388 1/12/2024
5.15.0 969 1/7/2024
5.14.0 1,165 1/4/2024
5.13.0 250 1/1/2024
5.12.0 4,825 11/4/2023
5.11.0 1,291 10/22/2023
5.10.0 603 10/18/2023
5.9.0 1,510 10/8/2023
5.8.0 1,326 9/21/2023
5.7.0 2,154 9/15/2023
5.6.0 1,988 9/1/2023
5.5.0 2,209 8/25/2023
5.4.0 254 8/24/2023
5.3.0 287 8/21/2023
5.2.0 537 8/18/2023
5.1.0 224 8/16/2023
5.0.0 212 8/14/2023
4.36.0 2,211 7/28/2023
4.35.0 431 7/24/2023
4.34.0 2,189 6/20/2023
4.33.0 3,646 5/10/2023
4.32.0 347 5/7/2023
4.31.0 647 4/17/2023
4.30.0 287 4/15/2023
4.29.0 463 4/5/2023
4.28.0 264 4/3/2023
4.27.0 320 3/31/2023
4.26.0 1,123 3/27/2023
4.25.0 477 3/23/2023
4.24.0 337 3/19/2023
4.23.0 423 3/12/2023
4.22.0 349 3/11/2023
4.21.0 307 3/9/2023
4.20.0 757 2/26/2023
4.19.0 1,778 2/7/2023
4.18.0 2,033 1/5/2023
4.17.0 1,781 12/22/2022
4.16.0 4,263 12/9/2022
4.15.0 449 12/5/2022
4.14.0 1,148 11/23/2022
4.13.0 1,793 10/25/2022
4.12.0 543 10/16/2022
4.11.0 703 10/10/2022
4.10.0 804 9/20/2022
4.9.0 6,508 7/15/2022
4.8.0 2,948 6/12/2022
4.7.0 3,018 5/25/2022
4.6.0 738 5/21/2022
4.5.0 718 5/18/2022
4.4.0 1,897 4/9/2022
4.4.0-alpha 180 3/20/2022
4.3.0 2,984 1/15/2022
4.2.0 526 1/9/2022
4.1.0 519 12/14/2021
4.0.0 383 12/9/2021
3.25.0 1,582 9/21/2021
3.24.0 614 9/3/2021
3.23.0 686 8/6/2021
3.22.0 1,473 5/27/2021
3.21.0 416 5/26/2021
3.20.0 1,406 4/12/2021
3.19.0 1,160 4/5/2021
3.18.0 6,213 2/8/2021
3.17.0 1,153 1/27/2021
3.16.0 483 1/14/2021
3.15.0 1,504 12/4/2020
3.14.0 660 11/22/2020
3.13.0 1,669 10/27/2020
3.12.0 634 10/19/2020
3.11.0 1,811 9/19/2020
3.10.0 912 9/12/2020
3.9.0 729 9/6/2020
3.8.0 668 8/31/2020
3.7.0 1,933 8/10/2020
3.6.0 1,839 6/28/2020
3.5.0 1,251 5/22/2020
3.4.1 755 5/5/2020
3.4.0 542 5/5/2020
3.3.0 1,384 3/29/2020
3.2.0 631 3/19/2020
3.1.0 801 2/17/2020
3.0.0 643 2/16/2020
2.16.0 4,777 1/10/2020
2.15.0 647 12/18/2019
2.14.0 905 11/24/2019
2.13.0 956 9/23/2019
2.12.0 952 7/26/2019
2.11.0 839 6/10/2019
2.10.0 687 5/22/2019
2.9.0 874 4/30/2019
2.8.0 693 4/4/2019
2.7.0 666 3/21/2019
2.6.0 672 3/10/2019
2.5.0 1,361 9/2/2018
2.4.2 1,264 6/23/2018
2.4.1 993 6/18/2018
2.4.0 976 6/15/2018
2.3.0 1,240 1/7/2018
2.2.1 1,163 11/18/2017
2.2.0 1,145 11/18/2017
2.1.0 1,196 10/22/2017
2.0.1 968 9/24/2017