initial Commit

This commit is contained in:
2026-06-15 22:11:47 +02:00
commit 293756cf1f
13 changed files with 96038 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
#pragma once
#include <string>
#include <taglib/tag.h>
struct Metadata {
TagLib::String artist;
TagLib::String title;
TagLib::String album;
TagLib::String albumArtist;
unsigned int year;
std::string artwork;
TagLib::String genre;
unsigned int trackNr;
double length;
std::string format;
unsigned int sampleRate;
unsigned int bitRate;
};