@ms1602,
check the latest commit, I have implemented custom disc art path configuration:
- Implemented custom disc art paths configurable in the config file
* A new section, "discArtPaths," has been added to the georgia-reborn-config.jsonc file
* Standard paths for CD art and vinyl art are predefined
* A more flexible naming convention for disc art can now be used, and filenames do not need
to explicitly start with cd.png or vinyl.png, but they need to end with them
Download it from the master here:
https://github.com/TT-ReBORN/Georgia-ReBORN/archive/refs/heads/master.zip
Then open your "foobar2000\profile\georgia-reborn\configs\georgia-reborn-config.jsonc" file
and a new section named "discArtPaths" has been added, it's fairly at the top (third section).
Now replace all standard predefined cdArt file naming:
*cd
with
*disc
It should look like this, you can copy and paste it:
"$directory_path(%path%)\\*disc.png",
"$directory_path(%path%)\\*disc$ifgreater(%totaldiscs%,1,%discnumber%,).png",
"$directory_path(%path%)\\Artwork\\*disc.png",
"$directory_path(%path%)\\Artwork\\*disc$ifgreater(%totaldiscs%,1,%discnumber%,).png",
"$directory_path(%path%)\\Scans\\*disc.png",
"$directory_path(%path%)\\Scans\\*disc$ifgreater(%totaldiscs%,1,%discnumber%,).png",
"$directory_path(%path%)\\..\\Artwork\\*disc.png",
"$directory_path(%path%)\\..\\Artwork\\*disc$ifgreater(%totaldiscs%,1,%discnumber%,).png",
"$directory_path(%path%)\\..\\Scans\\*disc.png",
"$directory_path(%path%)\\..\\Scans\\*disc$ifgreater(%totaldiscs%,1,%discnumber%,).png",
Save the config file and restart foobar. Now it should use the 6-disc as you have shown in the screenshot.
Keep in mind all your cd art in your music collection is named *disc.png
The standard file naming for cd art is *cd.png and for vinyl art is *vinyl.png as predefined in the disc art file paths.
---
For better organization of artwork images, I would recommend to create a new folder in your music album named "Artwork" or "Scans"
and put all images in there. This also works for multi-CD's sub-directories. You can also configure this in the "imgPaths" section of the
same config file.
-TT