JXL2112 7 Posted February 7, 2019 Posted February 7, 2019 My music folders are filled with folder.jpg but they hardly find backdrop.jpg when running a metadata scan. This actually got worse with 4.xx since it does not inherit the backdrop from the artist. So I was wondering if there is any way to copy the folder.jpg and rename it to backdrop.jpg automatically? At least something would be in the background. I've done a few manually but it's pretty tedious.
ryandavidg 30 Posted February 7, 2019 Posted February 7, 2019 (edited) I would use a batch file to just do this in Windows, recursively so all subdirectories are done too. Should be easy to find with a search, or modify this one slightly: https://stackoverflow.com/questions/38650536/batch-file-to-copy-and-rename-files-from-multiple-directories I actually didn't know Emby used "backdrop.jpg" so thanks for pointing that out. My albums had always used (as you mentioned) the artist fanart for this and I've been trying to get a response on this forum as to how one gets this working again since the v4 update. At least now I know I can put all that artwork I gathered and edited to use again, with a bit of copying and renaming. Still wish that artist backdrops would work again (as an option at least) though, instead of having to have 40 copies of Rolling Stone backdrops, etc. Edited February 7, 2019 by ryandavidg
Luke 38954 Posted February 8, 2019 Posted February 8, 2019 This actually got worse with 4.xx since it does not inherit the backdrop from the artist. We are looking into this, thanks. 1
JXL2112 7 Posted February 9, 2019 Author Posted February 9, 2019 I would use a batch file to just do this in Windows, recursively so all subdirectories are done too. Should be easy to find with a search, or modify this one slightly: https://stackoverflow.com/questions/38650536/batch-file-to-copy-and-rename-files-from-multiple-directories I actually didn't know Emby used "backdrop.jpg" so thanks for pointing that out. My albums had always used (as you mentioned) the artist fanart for this and I've been trying to get a response on this forum as to how one gets this working again since the v4 update. At least now I know I can put all that artwork I gathered and edited to use again, with a bit of copying and renaming. Still wish that artist backdrops would work again (as an option at least) though, instead of having to have 40 copies of Rolling Stone backdrops, etc. This is what I have so far: @[member="Echo"] OFF ATTRIB -h folder.jpg COPY /Y folder.jpg "backdrop.jpg" REN folder.jpg backdrop.jpg ATTRIB +h folder.jpg ATTRIB +h backdrop.jpg @Pause The above works for a single folder. To recurse folders in a cmd window: forfiles /S /M folder.jpg /C "C:\backdrop.bat" Put the bat file where ever you like and then call to it. 1
Luke 38954 Posted February 15, 2019 Posted February 15, 2019 We are looking into the issue of album image inheritance from artists. Thanks.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now