Change cover format and name

Need help? Post your questions here.

Moderator: moderators

Change cover format and name

Postby mapomme1108 » Sat Sep 29, 2018 6:47 am

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!
mapomme1108
 
Posts: 6
Joined: Thu Apr 20, 2017 6:39 am

Re: Change cover format and name

Postby J_T_W » Sat Sep 29, 2018 2:25 pm

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
    }
J_T_W
 
Posts: 93
Joined: Fri May 03, 2013 2:13 pm

Re: Change cover format and name

Postby mapomme1108 » Wed Oct 03, 2018 4:38 pm

Hello,

Thank you, I will try that
mapomme1108
 
Posts: 6
Joined: Thu Apr 20, 2017 6:39 am


Return to Help

Who is online

Users browsing this forum: No registered users and 13 guests