Fixed issue with special characters not being recorded properly

This commit is contained in:
kdeng00
2020-02-15 17:32:52 -05:00
parent f2d0947b36
commit 437a6b1453
2 changed files with 14 additions and 12 deletions
+7 -1
View File
@@ -4,13 +4,19 @@
#include <iostream>
#include <string>
#include <attachedpictureframe.h>
#include <textidentificationframe.h>
#include <fileref.h>
#include <mpegfile.h>
#include <tag.h>
#include "model/Models.h"
namespace utility {
class MetadataRetriever {
public:
model::Song retrieveMetadata(model::Song&);
model::Cover updateCoverArt(const model::Song&, model::Cover&, const std::string&);
model::Cover applyStockCoverArt(const model::Song&, model::Cover&, const std::string&);
model::Cover applyCoverArt(const model::Song&, model::Cover&);