Files
soundServe/include/Metadata.h
T
fegger 31d7453a50 read/parse file tags
import audiofiles
2026-06-16 09:03:57 +02:00

20 lines
395 B
C++

#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;
TagLib::VariantList artwork;
TagLib::String genre;
unsigned int trackNr;
double length;
std::string format;
unsigned int sampleRate;
unsigned int bitRate;
};