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
}