ChapterForge
Loading...
Searching...
No Matches
metadata_set.hpp
Go to the documentation of this file.
1//
2// metadata_set.hpp
3// ChapterForge
4//
5// Created by Till Toenshoff on 12/9/25.
6// Copyright © 2025 Till Toenshoff. All rights reserved.
7//
8
9#pragma once
10
11#include <string>
12#include <vector>
13
17 std::string title;
18 std::string artist;
19 std::string album;
20 std::string genre;
21 std::string year;
22 std::string comment;
23 std::vector<uint8_t> cover;
24};
std::string comment
Comment/description.
Definition metadata_set.hpp:22
std::string genre
Genre tag.
Definition metadata_set.hpp:20
std::string artist
Artist/author.
Definition metadata_set.hpp:18
std::vector< uint8_t > cover
JPEG cover data.
Definition metadata_set.hpp:23
std::string year
Year (free-form)
Definition metadata_set.hpp:21
std::string album
Album/collection.
Definition metadata_set.hpp:19
std::string title
Track title.
Definition metadata_set.hpp:17
Definition metadata_set.hpp:16