Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Vista File Management > Windows Media Player 11 automatic folder.jpg download issue

Reply
Thread Tools Display Modes

Windows Media Player 11 automatic folder.jpg download issue

 
 
Extracampine
Guest
Posts: n/a

 
      02-09-2007
Windows Media Player 11 by default will try and retrieve album art
(folder.jpg) from the internet. If it finds it, it will overwrite any
pre-existing folder.jpg (even if the pre-existing one is a larger file) as
well as create an AlbumArtSmall.jpg file.

Having this as a default option is foolish, as the program began to
overwrite my scanned-in high-resolution images with crappy low-resolution
ones. Realising this, I searched the options for a remedy to this.

The tools/options/library tab enables the user to switch off various
"Automatic media information updates for files". Great, I thought. However,
despite this option being switched off, Media Player continues to carry out
this assault of my file organisation rather sporadically.

Any ideas?

 
Reply With Quote
 
 
 
 
Buellpilot
Guest
Posts: n/a

 
      02-13-2007

First thing to do is take a copy of all your folder.jpgs before you lose
them...

if you put the following line in a batch file and run it from the top folder
of your
music collection it will find all the folder.jpgs and make a copy of each
called
cover.jpg

for /r %%i in (Folde?.jpg) do copy "%%i" "%%~dpiCover.jpg"

You could then use this batch file to delete any folder.jpgs and albumart
files after a wmp11 rescan.

attrib -S -H AlbumArtSmall.jpg /S
del /S AlbumArtSmall.jpg
pause
attrib -S -H Folder.jpg /S
del /S Folder.jpg

and then use the reverse of the first line of code to copy your Cover.jpgs
back to folder.jpgs

for /r %%i in (Cove?.jpg) do copy "%%i" "%%~dpiFolder.jpg"


BE careful with these batch files as if you run the wrong one at the
wrong time you might end up crying into your beer...




"Extracampine" <> wrote in message
news:%...
> Windows Media Player 11 by default will try and retrieve album art
> (folder.jpg) from the internet. If it finds it, it will overwrite any
> pre-existing folder.jpg (even if the pre-existing one is a larger file) as
> well as create an AlbumArtSmall.jpg file.
>
> Having this as a default option is foolish, as the program began to
> overwrite my scanned-in high-resolution images with crappy low-resolution
> ones. Realising this, I searched the options for a remedy to this.
>
> The tools/options/library tab enables the user to switch off various
> "Automatic media information updates for files". Great, I thought.
> However, despite this option being switched off, Media Player continues to
> carry out this assault of my file organisation rather sporadically.
>
> Any ideas?



 
Reply With Quote
 
Extracampine
Guest
Posts: n/a

 
      02-15-2007
Lol, cheers!




"Buellpilot" <> wrote in message
news:...
>
> First thing to do is take a copy of all your folder.jpgs before you lose
> them...
>
> if you put the following line in a batch file and run it from the top
> folder of your
> music collection it will find all the folder.jpgs and make a copy of each
> called
> cover.jpg
>
> for /r %%i in (Folde?.jpg) do copy "%%i" "%%~dpiCover.jpg"
>
> You could then use this batch file to delete any folder.jpgs and albumart
> files after a wmp11 rescan.
>
> attrib -S -H AlbumArtSmall.jpg /S
> del /S AlbumArtSmall.jpg
> pause
> attrib -S -H Folder.jpg /S
> del /S Folder.jpg
>
> and then use the reverse of the first line of code to copy your Cover.jpgs
> back to folder.jpgs
>
> for /r %%i in (Cove?.jpg) do copy "%%i" "%%~dpiFolder.jpg"
>
>
> BE careful with these batch files as if you run the wrong one at the
> wrong time you might end up crying into your beer...
>
>
>
>
> "Extracampine" <> wrote in message
> news:%...
>> Windows Media Player 11 by default will try and retrieve album art
>> (folder.jpg) from the internet. If it finds it, it will overwrite any
>> pre-existing folder.jpg (even if the pre-existing one is a larger file)
>> as well as create an AlbumArtSmall.jpg file.
>>
>> Having this as a default option is foolish, as the program began to
>> overwrite my scanned-in high-resolution images with crappy low-resolution
>> ones. Realising this, I searched the options for a remedy to this.
>>
>> The tools/options/library tab enables the user to switch off various
>> "Automatic media information updates for files". Great, I thought.
>> However, despite this option being switched off, Media Player continues
>> to carry out this assault of my file organisation rather sporadically.
>>
>> Any ideas?

>
>


 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Windows Media Player Issue Amit Ghoshal Windows Vista General Discussion 1 01-31-2008 11:35 PM
Vista/Windows Media Player issue bostonblakie Windows Vista Performance 0 10-05-2007 08:14 PM
Windows Media Player 11 Issue MRossi Windows Vista General Discussion 1 05-15-2007 10:38 PM
Windows Media Player 11 automatic image retrieval issue Extracampine Windows Vista General Discussion 2 02-09-2007 02:25 PM
Windows Media Player 11 Download Official Andre Da Costa [Extended64] Windows Vista General Discussion 13 05-19-2006 10:27 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59