

trixmoto wrote:New version (1.8.) is now available to download from my website. Changes include...
- Added extra debug messaging
- Fixed problem with spaces in filenames

trixmoto wrote:@Peke - all tracks for me for, so I can't really confirm or deny.
@Kevinwpb - the logfile is in your windows temporary directory (%temp%).

--- MusicIPTagger.vbs 2011-03-01 15:46:14.000000000 -0500
+++ MusicIPTagger-new.vbs 2011-03-01 15:59:29.000000000 -0500
@@ -685,6 +685,8 @@
rel = GetText(trk.getElementsByTagName("first-release-date").Item(0))
gen = GetText(trk.getElementsByTagName("genre-list").Item(0).ChildNodes.Item(0).ChildNodes.Item(0))
On Error Goto 0
+ Dim newArt
+ Dim newAArt
For cnt = 0 To WS.NewTracks.Count-1
Dim itm : Set itm = WS.NewTracks.Item(cnt)
If itm.Path = mp3 Then
@@ -701,12 +703,14 @@
If Not (art = "") Then
If UpArt Then
If Debug Then Call out("Artist="&art)
- itm.ArtistName = art
+ newArt = art
+ itm.ArtistName = Replace(newArt," / ","; ")
End If
If UpAAr Then
If (itm.ArtistName = itm.AlbumArtistName Or itm.AlbumArtistName = "") Then
If Debug Then Call out("AlbumArtist="&art)
- itm.AlbumArtistName = art
+ newAArt = art
+ itm.AlbumArtistName = Replace(newAArt," / ","; ")
End If
End If
If UpOAr Then

SatinKnights wrote:
- Code: Select all
--- MusicIPTagger.vbs 2011-03-01 15:46:14.000000000 -0500
+++ MusicIPTagger-new.vbs 2011-03-01 15:59:29.000000000 -0500
@@ -685,6 +685,8 @@
rel = GetText(trk.getElementsByTagName("first-release-date").Item(0))
gen = GetText(trk.getElementsByTagName("genre-list").Item(0).ChildNodes.Item(0).ChildNodes.Item(0))
On Error Goto 0
+ Dim newArt
+ Dim newAArt
For cnt = 0 To WS.NewTracks.Count-1
Dim itm : Set itm = WS.NewTracks.Item(cnt)
If itm.Path = mp3 Then
@@ -701,12 +703,14 @@
If Not (art = "") Then
If UpArt Then
If Debug Then Call out("Artist="&art)
- itm.ArtistName = art
+ newArt = art
+ itm.ArtistName = Replace(newArt," / ","; ")
End If
If UpAAr Then
If (itm.ArtistName = itm.AlbumArtistName Or itm.AlbumArtistName = "") Then
If Debug Then Call out("AlbumArtist="&art)
- itm.AlbumArtistName = art
+ newAArt = art
+ itm.AlbumArtistName = Replace(newAArt," / ","; ")
End If
End If
If UpOAr Then
SatinKnights wrote:change
Dim cmd : cmd = "%comspec% /c """&exe&""" f25c7a6acad172541066f475175465a7"
to
Dim cmd : cmd = "%comspec% /c "&exe&" f25c7a6acad172541066f475175465a7"
Users browsing this forum: Bing [Bot] and 10 guests