Windows Media Player 11 automatic folder.jpg download issue

Posted: 02-09-2007, 02:31 PM
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

Responses to "Windows Media Player 11 automatic folder.jpg download issue"

Buellpilot
Guest
Posts: n/a
 
Re: Windows Media Player 11 automatic folder.jpg download issue
Posted: 02-13-2007, 05:18 PM

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" <lostfrogg@yahoo.co.uk> wrote in message
news:%23fcoHcFTHHA.4872@TK2MSFTNGP03.phx.gbl...
> 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
 
Re: Windows Media Player 11 automatic folder.jpg download issue
Posted: 02-15-2007, 02:19 PM
Lol, cheers!




"Buellpilot" <colin_mcclinton@hotmail.co.uk> wrote in message
news:OgWg8L5THHA.5060@TK2MSFTNGP06.phx.gbl...
>
> 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" <lostfrogg@yahoo.co.uk> wrote in message
> news:%23fcoHcFTHHA.4872@TK2MSFTNGP03.phx.gbl...
>> 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
 
LinkBack Thread Tools Display Modes
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may 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 On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Having problems with Windows Media player. Can that be why I can't get continuous music on my space? Guest Windows NT/2000/XP 0 02-24-2008 06:33 AM
Low Memory Error DVD Maker and Media Player Dan Windows Vista Performance & Maintenance 9 11-22-2006 04:08 AM
Blue streaks in online media player DRW Windows Vista Performance & Maintenance 2 09-22-2006 12:33 PM
ActiveX Download Issue in Vista's IE 7+ Jorn Windows Vista Performance & Maintenance 0 06-13-2006 07:58 PM
x64 Download Issue Mark D. VandenBerg Windows Vista Install & Setup 9 06-12-2006 07:46 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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90