Easy MQ3 questions.
#16
Not sure. Artwork Downloader get's different pieces of art from different places but, if there's no art then there's no art. Only thing you could do would be to add in more providers for it to check(I dunno any good ones) or just manually download art yourself and place them accordingly.

If I'm not mistaken, things like extrathumbs, the name doesn't matter. Just get some piece of art and throw it in the folder and it should be loaded.

P.S.
I could be wrong, I'm really not sure Wink

Edit: Apparently, you just name them: "thumb1" or "thumb2" etc.
(2012-08-26, 13:51)Fennec Wrote: I notice that some movies do not have more than 1 piece of fanart
on the themoviedb.org. Some don't have any at all.

So when you are using Showcase view > Style > Extra Thumbnails
Only 1 or none of 4 thumbnail windows will be taken up with an image.

Is there a way to use other movie databases to scrape the fanart for just
these select movies?

Reply
#17
(2012-08-26, 15:18)donkey33 Wrote: Thanks kaffekask. That helped me also. Once I can't figure out is this as I need to change a .jpg file name but only one and with multiple.jpg files, I'm not sure how to go about it.

In my folder is this.

Contraband (2012)-fanart.jpg
background.jpg
background1.jpg
background2.jpg

I need the first file to match this.

Contraband (2012).Bluray-fanart.jpg

So I had this thinking it would work.

Code:
for /f "tokens=*" %%m in ('dir /s /b *-fanart.jpg') do ren "%%m"  "%%~nm.BluRay%%~xm"

and it worked by only affecting the fanart.jpg file but all it did was this and added it to the end.

Contraband (2012)-fanart.BluRay.jpg

Is there a way I can add it in between the closing bracket and the dash and what would the code be to remove that?

Thanks

I've not tested any of these scripts, so test them of a small groups of files first!

This should rename it:
Code:
@echo off
setlocal enabledelayedexpansion

for /f "tokens=*" %%m in ('dir /s /b *-fanart.jpg') do (
    set nn=%%~nm
    set nn=!nn:-fanart=.Bluray-fanart!
    ren "%%m" "!nn!%%~xm"
    )

To remove it:
Code:
@echo off
setlocal enabledelayedexpansion

for /f "tokens=*" %%m in ('dir /s /b *Bluray-fanart.jpg') do (
    set nn=%%~nm
    set nn=!nn:.Bluray-fanart=-fanart!
    ren "%%m" "!nn!%%~xm"
    )

The replace is done in this line:
set nn=!nn:-fanart=.Bluray-fanart!
Fisrt italic what to replace
Second what to replace it with.
Reply

Logout Mark Read Team Forum Stats Members Help
Easy MQ3 questions.0