INTERACT FORUM
More => Old Versions => Media Center 12 (Development Ended) => Topic started by: benn600 on January 05, 2007, 09:59:06 pm
-
I decided to pursue a quick and simple fix for my Xbox Media Center.
In order to view the thumbnails for my movies in XBMC, I need to duplicate my folder.jpg files.
They are stored in Video/Movies/*movie*/VIDEO_TS/folder.jpg
I need to copy them all (for all *movies*) from the VIDEO_TS/folder.jpg TO /folder.jpg
This will allow media center to keep working as it is now--which I can't get by removing the VIDEO_TS folder--and my Xbox Media Center will be able to pick up the folder.jpg files from the newly copied area. Can a batch file be created to fix this? It obviously needs to cycle through all the movie titles (folders).
-
If you guys can't help, then I'm destined to about 2 hours of boring copying and pasting. Please~!
-
Please clarify the XBox destination folder...
Are the files to be renamed?
And are you using mapped drives or UNC?
-
It's really a simple file copy process but it's hard to explain. It really doesn't matter what the reason for doing it is, either. The point is, I absolutely know without a doubt that doing this will fix my problem because I've tried a few movies and it does fix the problem.
I have lots of folder.jpg's **denotes variable
Video/DVD Movies/*Movie Title*/VIDEO_TS/folder.jpg
All of those need to be copied to
Video/DVD Movies/*Movie Title*/folder.jpg
Notice the folder.jpg is originally inside the VIDEO_TS folder. I need it to be copied one folder up, beside the VIDEO_TS folder. Then, two identical folder.jpg files will exist for every movie. Media Center automatically picks up the one under the VIDEO_TS folder and my Xbox Media Center automatically picks up the one next to the VIDEO_TS folder. When I browse movies, it only looks one folder below the *Movie Title* for a jpg file so it has to be next to the VIDEO_TS folder. XBMC doesn't bother looking inside the subfolder VIDEO_TS as well. If I select the movie, the VIDEO_TS folder does have the correct thumbnail but I want the thumbnails to appear on all the Movie folders so it's easy to scroll through them all.
I hope this makes more sense. I've already started manually copying but it would be good to know of a good program to do something like this. It could almost be done with the cmd prompt in Windows but variables are the key. It has to copy files (which is easy) but the filenames have to cycle through all available folders to complete the process.
-
If the folder.jpgs are imported into your library you can simply:
1) Select Images Mode
2) Type folder.jpg in the Search box
3) Select all the folder.jpg files
4) Library Tools->Find & Replace...
5) Click Select None button
6) Select Filename (path)
7) Find what: /VIDEO_TS/
8) Replace: /
-John
-
And, should you wish to do this outside MC, the batch file way, do as follows:-
First create a text file (using something like notepad) that has the following three lines
ifo
bup
vob
Save it as list.txt
Then open a command prompt and type (for example)
xcopy \\source\video\Diving_Sipadan_040903\*.* c:\temp\video /EXCLUDE:list.txt /s
The EXCLUDE switch excludes files in the list.txt file, and the /s copies all subdirectories (and files). You may have to add some addtional lines to list.txt depending if you have other files in the VIDEO_TS source.
-
Just had another thought... Rather than doing either of these ways, why not map the XBox drive and get MC to recognise it as a removeable drive, then create a playlist and auto-synchronise it???
-
Thanks for everyone's help. I appreciate it.