Handled preferred cover file names (same as track's filename, then cover, then front). fixes #71
This commit is contained in:
@@ -215,7 +215,7 @@ MediaFile::getAttachedPictures(std::size_t nbMaxPictures) const
|
|||||||
LMS_LOG(AV, ERROR) << "CODEC ID " << avstream->codecpar->codec_id << " not handled in mime type conversion";
|
LMS_LOG(AV, ERROR) << "CODEC ID " << avstream->codecpar->codec_id << " not handled in mime type conversion";
|
||||||
}
|
}
|
||||||
|
|
||||||
AVPacket pkt = avstream->attached_pic;
|
const AVPacket& pkt {avstream->attached_pic};
|
||||||
|
|
||||||
std::copy(pkt.data, pkt.data + pkt.size, std::back_inserter(picture.data));
|
std::copy(pkt.data, pkt.data + pkt.size, std::back_inserter(picture.data));
|
||||||
|
|
||||||
|
|||||||
@@ -78,30 +78,59 @@ getFromAvMediaFile(const Av::MediaFile& input)
|
|||||||
}
|
}
|
||||||
|
|
||||||
std::optional<Image>
|
std::optional<Image>
|
||||||
Grabber::getFromDirectory(const std::filesystem::path& p) const
|
Grabber::getFromDirectory(const std::filesystem::path& p, std::string_view preferredFileName) const
|
||||||
{
|
{
|
||||||
for (auto coverPath : getCoverPaths(p))
|
const std::multimap<std::string, std::filesystem::path> coverPaths {getCoverPaths(p)};
|
||||||
{
|
|
||||||
Image image;
|
|
||||||
|
|
||||||
if (image.load(coverPath))
|
auto tryLoadImage = [](const std::filesystem::path& p, Image& image)
|
||||||
|
{
|
||||||
|
if (!image.load(p))
|
||||||
|
{
|
||||||
|
LMS_LOG(COVER, ERROR) << "Cannot load image in file '" << p.string() << "'";
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
|
||||||
|
auto tryLoadImageFromFilename = [&](std::string_view fileName, Image& image)
|
||||||
|
{
|
||||||
|
auto range {coverPaths.equal_range(std::string {fileName})};
|
||||||
|
for (auto it {range.first}; it != range.second; ++it)
|
||||||
|
{
|
||||||
|
if (tryLoadImage(it->second, image))
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
};
|
||||||
|
|
||||||
|
Image image;
|
||||||
|
|
||||||
|
if (!preferredFileName.empty() && tryLoadImageFromFilename(preferredFileName, image))
|
||||||
|
return image;
|
||||||
|
|
||||||
|
for (std::string_view filename : _preferredFileNames)
|
||||||
|
{
|
||||||
|
if (tryLoadImageFromFilename(filename, image))
|
||||||
|
return image;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Just pick one
|
||||||
|
for (const auto& [filename, coverPath] : coverPaths)
|
||||||
|
{
|
||||||
|
if (tryLoadImage(coverPath, image))
|
||||||
return image;
|
return image;
|
||||||
else
|
|
||||||
LMS_LOG(COVER, ERROR) << "Cannot load image in file '" << coverPath.string() << "'";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
LMS_LOG(COVER, DEBUG) << "No cover found in directory '" << p.string() << "'";
|
|
||||||
return std::nullopt;
|
return std::nullopt;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<std::filesystem::path>
|
std::multimap<std::string, std::filesystem::path>
|
||||||
Grabber::getCoverPaths(const std::filesystem::path& directoryPath) const
|
Grabber::getCoverPaths(const std::filesystem::path& directoryPath) const
|
||||||
{
|
{
|
||||||
std::vector<std::filesystem::path> res;
|
std::multimap<std::string, std::filesystem::path> res;
|
||||||
std::error_code ec;
|
std::error_code ec;
|
||||||
|
|
||||||
// TODO handle preferred file names
|
|
||||||
|
|
||||||
std::filesystem::directory_iterator itPath(directoryPath, ec);
|
std::filesystem::directory_iterator itPath(directoryPath, ec);
|
||||||
std::filesystem::directory_iterator itEnd;
|
std::filesystem::directory_iterator itEnd;
|
||||||
while (!ec && itPath != itEnd)
|
while (!ec && itPath != itEnd)
|
||||||
@@ -121,7 +150,7 @@ Grabber::getCoverPaths(const std::filesystem::path& directoryPath) const
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
res.push_back(path);
|
res.emplace(std::filesystem::path{path}.filename().replace_extension("").string(), path);
|
||||||
}
|
}
|
||||||
|
|
||||||
return res;
|
return res;
|
||||||
@@ -177,12 +206,12 @@ Grabber::getFromTrack(Database::Session& dbSession, Database::IdType trackId, st
|
|||||||
cover = getFromTrack(trackPath);
|
cover = getFromTrack(trackPath);
|
||||||
|
|
||||||
if (!cover)
|
if (!cover)
|
||||||
cover = getFromDirectory(trackPath.parent_path());
|
cover = getFromDirectory(trackPath.parent_path(), trackPath.filename().replace_extension("").string());
|
||||||
|
|
||||||
if (!cover && isMultiDisc)
|
if (!cover && isMultiDisc)
|
||||||
{
|
{
|
||||||
if (trackPath.parent_path().has_parent_path())
|
if (trackPath.parent_path().has_parent_path())
|
||||||
cover = getFromDirectory(trackPath.parent_path().parent_path());
|
cover = getFromDirectory(trackPath.parent_path().parent_path(), {});
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!cover)
|
if (!cover)
|
||||||
|
|||||||
@@ -20,10 +20,12 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <filesystem>
|
#include <filesystem>
|
||||||
#include <shared_mutex>
|
#include <map>
|
||||||
#include <optional>
|
#include <optional>
|
||||||
#include <vector>
|
#include <shared_mutex>
|
||||||
|
#include <string_view>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "cover/ICoverArtGrabber.hpp"
|
#include "cover/ICoverArtGrabber.hpp"
|
||||||
#include "database/Types.hpp"
|
#include "database/Types.hpp"
|
||||||
@@ -101,8 +103,8 @@ namespace CoverArt
|
|||||||
Image getFromRelease(Database::Session& dbSession, Database::IdType releaseId, std::size_t size);
|
Image getFromRelease(Database::Session& dbSession, Database::IdType releaseId, std::size_t size);
|
||||||
|
|
||||||
std::optional<Image> getFromTrack(const std::filesystem::path& path) const;
|
std::optional<Image> getFromTrack(const std::filesystem::path& path) const;
|
||||||
std::vector<std::filesystem::path> getCoverPaths(const std::filesystem::path& directoryPath) const;
|
std::multimap<std::string, std::filesystem::path> getCoverPaths(const std::filesystem::path& directoryPath) const;
|
||||||
std::optional<Image> getFromDirectory(const std::filesystem::path& path) const;
|
std::optional<Image> getFromDirectory(const std::filesystem::path& path, std::string_view preferredFileName) const;
|
||||||
|
|
||||||
std::unique_ptr<Image> _defaultCover; // unique_ptr to defer initializing
|
std::unique_ptr<Image> _defaultCover; // unique_ptr to defer initializing
|
||||||
|
|
||||||
@@ -117,7 +119,7 @@ namespace CoverArt
|
|||||||
static inline constexpr std::size_t _maxCacheEntries {1000};
|
static inline constexpr std::size_t _maxCacheEntries {1000};
|
||||||
static inline const std::vector<std::filesystem::path> _fileExtensions {".jpg", ".jpeg", ".png", ".bmp"}; // TODO parametrize
|
static inline const std::vector<std::filesystem::path> _fileExtensions {".jpg", ".jpeg", ".png", ".bmp"}; // TODO parametrize
|
||||||
static inline constexpr std::size_t _maxFileSize {10000000};
|
static inline constexpr std::size_t _maxFileSize {10000000};
|
||||||
static inline const std::vector<std::filesystem::path> _preferredFileNames {"cover", "front"}; // TODO parametrize
|
static inline const std::vector<std::string> _preferredFileNames {"cover", "front"}; // TODO parametrize
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace CoverArt
|
} // namespace CoverArt
|
||||||
|
|||||||
Reference in New Issue
Block a user