DVD cover image software

Soldato
Joined
4 Mar 2008
Posts
2,584
Location
Wandsworth
Hi all,

Just wondering what scraper everyone is using to get their DVD info? (Covers/Actors/Synopsis etc)

I've been using media companion but its started to be getting a bit hit and miss.

So what does everyone use?

Cheers
 
I use Media Center Master. Downloads all metadata, fan art, dvd covers, trailers etc. Brilliant bit of kit.

ahhh, I think my issue is going to be that I have all my movie files in my root movie folder. i.e. I don't have a separate folder for each movie. So that program doesn't seem to like it. Is there and easy way of creating folders for each movie or do I need to go through and manually create ~500 folders?! :( :mad:
 
Found a solution to the above if anyone is interested

Code:
@echo off
for %%a in (*.*) do (
md "%%~na" 2>nul
move "%%a" "%%~na"
)
pause

copy and paste that into a notepad file and save as foldermaker.bat

It makes a folder for all the files in the directory its placed and then moves the files into their respective folders.

Quite a neat tool :)
 
Back
Top Bottom