Page 1 of 1

Change cover format and name

PostPosted: Sat Sep 29, 2018 6:47 am
by mapomme1108
Hello,

By default, Subsonic downloads covers as "cover.png"
I would like to know if it is possible to modify this and download covers as folder.jpg.

Thanks!

Re: Change cover format and name

PostPosted: Sat Sep 29, 2018 2:25 pm
by J_T_W
Although I know you can specify what file name/type can be used as the cover/folder art, I don't think you can change the resulting automatically obtained folder. If you want to keep it standard, you could download a freeware utility like Image Magick (http://imagemagick.org) and then use a script similar to below & scheduled for regular execution to convert them.

Code: Select all
$Root="[Path to your music library]"
$Magick = "C:\Program Files\ImageMagick-7.0.8-Q16\Magick.exe"

$Images = Get-ChildItem -Path $Root -Filter "cover.png" -recurse -ErrorAction SilentlyContinue
ForEach ($Image IN $Images) {
    $RetVal = Start-Process `
        -FilePath $Magick `
        -ArgumentList ('"' + $Image.FullName.ToLower() + '" "' + $Image.FullName.Replace("cover.png","Folder.jpg") + '"') `
        -WorkingDirectory (Split-Path -Path $Magick -Parent) `
        -NoNewWindow -Wait

    Remove-Item -Path $Image.FullName -Force
    }

Re: Change cover format and name

PostPosted: Wed Oct 03, 2018 4:38 pm
by mapomme1108
Hello,

Thank you, I will try that