INTERACT FORUM
More => Old Versions => Media Center 11 (Development Ended) => Topic started by: RhinoBanga on December 14, 2003, 03:58:04 am
-
How do you get it to save the artwork in the same directory as the album as the name Folder.jpg so it's compatible with Windows XP?
I like secure ripping by the way ... it has saved one of my favourite CD's ... The Stone Roses by The Stone Roses :) :) :)
-
bump.
-
bump
-
Bumpety-bump
-
I recall King Sparta's updated CoverArt plugin being able to do that for you. I
-
Look at the Path For The Media File
Do A Rev Search Of The String For the first "\"
From Byte 1 To "\" is the path to the media file
MyFilePath = "C:\My Music\MySong.mp3"
If LenB(MyFilePath) <> 0 Then
MyPos1 = 0
MyPos1 = InStrRev(MyFilePath, "\")
If MyPos1 <> 0 Then
MyNewFilePath = Mid(MyFilePath, 1, MyPos1)
End If
End If
MyNewFilePath Now Will Be "C:\My Music\"
and Folder.jpg can be found or saved
-
My plugin AlbumView also does it but MC should have a checkbox to support the Microsoft standard set in Windows XP.