-
-
Notifications
You must be signed in to change notification settings - Fork 419
Description
Problem:
There is a thumbnail saved for every single file (I am using here music files).
Every song in the album (in my case, and I'm presuming the majority of cases) use the same thumbnail.
This takes up many times the required storage, and can become more of an issue with larger libraries.
Solution:
The thumbnails were pulled (presumably) from the files themselves. (I didn't provide any thumbnails)
So instead of having a separate thumbnail file to reference, use the ones saved in the files themselves.
Alternative (worse) solution:
Instead of one thumbnail per file, (that has one)
Files with the same thumbnail should both refer to that thumbnail.
Problems with alternative:
certain cases might have different artwork for every song, so we can't assume the artwork. We'd need some sort of AI image recognition to calculate, which is WAY overcomplicated.
