Viperinius / jellyfin-plugin-spotify-import

Import playlists from Spotify in Jellyfin
GNU General Public License v3.0
28 stars 2 forks source link

Track matching suggestion #20

Closed bfg100k closed 6 months ago

bfg100k commented 7 months ago

First up, great work on making this plugin. Install and setup was a breeze. Managed to get it working somewhat but am finding some songs not being picked up (correctly) by the plugin no matter what combination of the matching criteria I set. I'm thinking instead of selecting the matching criteria in a "all or nothing" fashion, perhaps it will work better if it can be prioritised/sequenced? i.e. first search by track name, if multiple are found, then narrow by artist, if there are still multiples, then use album, etc. this can be user defined by setting the order of the criteria in the list?

Viperinius commented 7 months ago

Thanks, yes, the "matching problem" is still up for discussion.

first search by track name, if multiple are found, then narrow by artist, if there are still multiples, then use album

If the criteria are checked in sequence, I would actually go in reverse (first artist, then album, then track) in the hope that there should be less duplicate artist names than tracks.

I will experiment with my current ideas a bit:

Viperinius commented 7 months ago

some songs not being picked up

Have you tried what logs are produced if you turn on debug logging as described in the README? If you see any messages like Did not find any tracks containing the name ... the match criteria are not the reason the track is not picked up. In this case, the Jellyfin library did not return any matches for this track in the first place.

If you experience this, I would appreciate to know about one example track with this problem (I may need to change the way the library is queried).

bfg100k commented 6 months ago

Here's one that didn't get picked up -

Spotify info is image

my library info is image

debug log says [2024-02-22 11:29:07.558 +11:00] [DBG] [24] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "Yes or No (Feat. 허윤진 of LE SSERAFIM, Crush)"

I have the plugin match type set to "Ignore Case + Punctuation + Parentheses Content". Looks like it is not ignoring the parentheses? Also, in this example you can see that there are 3 artists and one of them is named differently between spotify and my library. will artist matching fail in this case?

Also regarding artist matching - does selecting BOTH album artist and artist means as long as one of them is the same as the spotify artist it will be considered a match or both must be the same?

bfg100k commented 6 months ago

Here's another one that didn't get picked up -

Spotify info is image

my library info is image

debug log says [2024-02-22 11:29:08.479 +11:00] [DBG] [24] Viperinius.Plugin.SpotifyImport.PlaylistSync: AlbumArtists did not match for track "GODS" ["League of Legends"] -> "GODS" ["NewJeans"]

So Spotify lists 2 artists but my library only have one. The plugin appears to be using just the first artist for matching.

Viperinius commented 6 months ago

Thanks for the examples, I will try to reproduce their behaviour!

Also, in this example you can see that there are 3 artists and one of them is named differently between spotify and my library. will artist matching fail in this case?

It shouldn't fail there as the plugin accepts the artist as matching if the first / main artist on Spotify is contained in the list on the Jellyfin side.

does selecting BOTH album artist and artist means as long as one of them is the same as the spotify artist it will be considered a match or both must be the same?

Album artists is an additional check, so if both artist and album artist are selected, each will get looked at separately.

Viperinius commented 6 months ago

Okay, a bit of an update: I could reproduce the issues with both tracks and changed the way the matching and searching on the Jellyfin server works. A quick overview of how it works now FYI:

  1. Search for any of the artists from Spotify on the Jellyfin server
  2. If anyone matches, check the associated albums of this artist for a matching name
  3. If this succeeds, the album artists are checked (whether one artist from Spotify is set in Jellyfin as album artist or vice versa)
  4. If album artists are ok as well, it goes through the tracks an tries to match their name with the Spotify info

With these changes, both example tracks are matching as expected (at least in my tests). This means, that now it no longer uses just the first artist from Spotify.

You can try these changes by updating the plugin to version 1.6.0.0

bfg100k commented 6 months ago

Just tried the new version and it picked up the 2 tracks. Thanks for the quick turnaround!

bfg100k commented 6 months ago

I spoke too soon. I deleted the old list and ran the sync again hoping to get the songs in the right order. Unfortunately some of the tracks that were picked up in the last version are no longer being picked up. v1.5 picked up 16 songs while v1.6 only picked up only 6! The spotify list in question is 37i9dQZF1DX9tPFwDMOaN1.

Songs picked up by v1.5 image

Logs for this run [2024-02-26 11:42:10.870 +11:00] [INF] [30] Viperinius.Plugin.SpotifyImport.Spotify.SpotifyPlaylistProvider: Starting to query 1 playlists from "Spotify" [2024-02-26 11:42:10.913 +11:00] [INF] [30] Viperinius.Plugin.SpotifyImport.Spotify.SpotifyLogger: "GET" playlists/37i9dQZF1DX9tPFwDMOaN1 ["additional_types=track,episode"] null [2024-02-26 11:42:11.747 +11:00] [INF] [22] Viperinius.Plugin.SpotifyImport.Spotify.SpotifyLogger: --> OK "application/json" "{\"collaborative\":false,\"description\":\"Turn on the " [2024-02-26 11:42:13.991 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "I NEED U - Spotify Singles" [2024-02-26 11:42:14.026 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "Shopper" [2024-02-26 11:42:14.106 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "EASY" ["LE SSERAFIM"] -> "Easy Way" ["Westlife"] [2024-02-26 11:42:14.107 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "EASY" ["LE SSERAFIM"] -> "It's So Easy" ["Guns N' Roses"] [2024-02-26 11:42:14.108 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "EASY" ["LE SSERAFIM"] -> "Superman (It's Not Easy)" ["Five For Fighting"] [2024-02-26 11:42:14.108 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "EASY" ["LE SSERAFIM"] -> "Easy Tonight" ["Five For Fighting"] [2024-02-26 11:42:14.108 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "EASY" ["LE SSERAFIM"] -> "It Ain't Easy" ["Sugababes"] [2024-02-26 11:42:14.108 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "EASY" ["LE SSERAFIM"] -> "Slow An' Easy" ["Whitesnake"] [2024-02-26 11:42:14.108 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "EASY" ["LE SSERAFIM"] -> "Words Don't Come Easy 2021" ["MAMAMOO"] [2024-02-26 11:42:14.108 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "EASY" ["LE SSERAFIM"] -> "Easy Rider" ["Deep & Wide"] [2024-02-26 11:42:14.108 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "EASY" ["LE SSERAFIM"] -> "Free & Easy" ["浜崎あゆみ"] [2024-02-26 11:42:14.108 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "EASY" ["LE SSERAFIM"] -> "Take It Easy" ["Eagles"] [2024-02-26 11:42:14.108 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "EASY" ["LE SSERAFIM"] -> "Peaceful Easy Feeling" ["Eagles"] [2024-02-26 11:42:14.144 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "STUPID IN LOVE (feat. HUH YUNJIN of LE SSERAFIM)" [2024-02-26 11:42:14.178 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "Bam Yang Gang" [2024-02-26 11:42:14.212 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "Don't Go Insane" [2024-02-26 11:42:14.246 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Wife" ["(G)I-DLE"] -> "Turret Wife Serenade" ["Aperture Science Psychoacoustics Laboratory"] [2024-02-26 11:42:14.246 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Wife" ["(G)I-DLE"] -> "Eve, Psyche & the Bluebeard’s wife" ["LE SSERAFIM"] [2024-02-26 11:42:14.318 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "Stay Closer" ["ZHU"] [2024-02-26 11:42:14.318 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "Stay High (Habits Remix) ft. Hippie Sabotage" ["Tove Lo"] [2024-02-26 11:42:14.318 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "Stay With You" ["林俊杰"] [2024-02-26 11:42:14.318 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "If You Stay" ["Backstreet Boys"] [2024-02-26 11:42:14.318 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "Stay With Me" ["찬열 (CHANYEOL), 펀치 (Punch)"] [2024-02-26 11:42:14.319 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "Stay With Me (Inst.)" ["찬열 (CHANYEOL), 펀치 (Punch)"] [2024-02-26 11:42:14.319 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "Stay Together" ["Jennifer Lopez"] [2024-02-26 11:42:14.319 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "Don't Stay" ["Linkin Park"] [2024-02-26 11:42:14.319 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "Stay The Night" ["Mariah Carey"] [2024-02-26 11:42:14.319 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "I Stay In Love" ["Mariah Carey"] [2024-02-26 11:42:14.319 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "All You Had To Do Was Stay" ["Taylor Swift"] [2024-02-26 11:42:14.319 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "STAY" ["Cha Eun-Woo"] -> "Stay" ["East 17"] [2024-02-26 11:42:14.319 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "Let's Stay Together" ["Al Green"] [2024-02-26 11:42:14.319 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "Stay Young, Go Dancing" ["Death Cab for Cutie"] [2024-02-26 11:42:14.319 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "Stay With Me Tonight" ["東方神起"] [2024-02-26 11:42:14.319 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "Stay Away" ["Nirvana"] [2024-02-26 11:42:14.319 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "Habits (Stay High) (The Chainsmokers radio edit)" ["Tove Lo"] [2024-02-26 11:42:14.319 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "Stay on the Road" ["Corrinne May"] [2024-02-26 11:42:14.319 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "STAY" ["Cha Eun-Woo"] -> "Stay" ["Zedd"] [2024-02-26 11:42:14.319 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "Stay with me" ["Ayaka"] [2024-02-26 11:42:14.319 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "STAY" ["Cha Eun-Woo"] -> "STAY BY MY SIDE" ["TWICE"] [2024-02-26 11:42:14.355 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "LTNS" [2024-02-26 11:42:14.388 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "Killin' It" [2024-02-26 11:42:14.424 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "Nightwalker" [2024-02-26 11:42:14.457 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "plot twist" [2024-02-26 11:42:14.493 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "Super Lady" [2024-02-26 11:42:14.527 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "MANIAC" [2024-02-26 11:42:14.563 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "Stuck In The Middle" [2024-02-26 11:42:14.598 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Drama" ["aespa"] -> "Con Locura Ft. Jiggy Drama" ["Sua, Jiggy Drama"] [2024-02-26 11:42:14.599 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Drama" ["aespa"] -> "Me Against The World [Feat. Dramacydal]" ["2Pac"] [2024-02-26 11:42:14.599 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Drama" ["aespa"] -> "Butterfly (Drama Ver.)" ["Mido and Falasol"] [2024-02-26 11:42:14.599 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Drama" ["aespa"] -> "Is It Still Beautiful (Drama Ver.)" ["Mido and Falasol"] [2024-02-26 11:42:14.599 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Drama" ["aespa"] -> "It′s My Life (Drama Ver.)" ["Mido and Falasol"] [2024-02-26 11:42:14.599 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Drama" ["aespa"] -> "Rain and You (Drama Ver.)" ["Mido and Falasol"] [2024-02-26 11:42:14.599 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Drama" ["aespa"] -> "I Like You (Drama Ver.)" ["Mido and Falasol"] [2024-02-26 11:42:14.599 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Drama" ["aespa"] -> "You Have a Crush On Me (Drama Ver.)" ["Mido and Falasol"] [2024-02-26 11:42:14.599 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Drama" ["aespa"] -> "Let′s forget it (Drama Ver.)" ["Mido and Falasol"] [2024-02-26 11:42:14.599 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Drama" ["aespa"] -> "Running in the sky (Drama Ver.)" ["Mido and Falasol"] [2024-02-26 11:42:14.599 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Drama" ["aespa"] -> "Already One Year (Drama Ver.)" ["Mido and Falasol"] [2024-02-26 11:42:14.599 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Drama" ["aespa"] -> "Wind flower (Dramatic ver.)" ["MAMAMOO"] [2024-02-26 11:42:14.599 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Drama" ["aespa"] -> "캐논 (Canon) (Drama Ver.)" ["미도와 파라솔"] [2024-02-26 11:42:14.599 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Drama" ["aespa"] -> "밤이 깊었네 (Drama Ver.) (Inst.)" ["미도와 파라솔"] [2024-02-26 11:42:14.600 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Drama" ["aespa"] -> "밤이 깊었네 (Drama Ver.)" ["미도와 파라솔"] [2024-02-26 11:42:14.703 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "Slowly (feat. Heize)" [2024-02-26 11:42:14.737 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "Yes or No (Feat. 허윤진 of LE SSERAFIM, Crush)" [2024-02-26 11:42:14.771 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "BATTER UP" [2024-02-26 11:42:14.842 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "NO MORE (MA BOY)" [2024-02-26 11:42:14.879 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "All Night (feat. Saweetie)" [2024-02-26 11:42:14.950 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "Love 119" [2024-02-26 11:42:14.984 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "Bite Me" [2024-02-26 11:42:15.020 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "LALALALA" [2024-02-26 11:42:15.089 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "Queencard" [2024-02-26 11:42:15.160 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "HK Superstar" ["MC Jin Ft. Daniel Wu"] [2024-02-26 11:42:15.164 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "Superstar" ["Saliva"] [2024-02-26 11:42:15.164 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "Champagne Supernova" ["Oasis"] [2024-02-26 11:42:15.164 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "Supersonic" ["Oasis"] [2024-02-26 11:42:15.164 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "Superman" ["R.E.M."] [2024-02-26 11:42:15.164 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "Superstar" ["Mido and Falasol"] [2024-02-26 11:42:15.164 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "Super Power Girl" ["에브리싱글데이"] [2024-02-26 11:42:15.164 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "Russian Superhero" ["Various Artists"] [2024-02-26 11:42:15.164 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "SUPERMAN" ["曹格"] [2024-02-26 11:42:15.164 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "Superwoman" ["曹格"] [2024-02-26 11:42:15.164 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "Superman (It's Not Easy)" ["Five For Fighting"] [2024-02-26 11:42:15.164 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "Super Trouper" ["ABBA"] [2024-02-26 11:42:15.164 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "Super Star" ["S.H.E"] [2024-02-26 11:42:15.164 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "Super Model" ["S.H.E"] [2024-02-26 11:42:15.164 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "Superfriends" ["ZHU"] [2024-02-26 11:42:15.164 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "Little Superhero Girl" ["Corrinne May"] [2024-02-26 11:42:15.165 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "Superstition" ["Sungha Jung"] [2024-02-26 11:42:15.165 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Super" ["SEVENTEEN"] -> "Super Shy" ["NewJeans"] [2024-02-26 11:42:15.234 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "You & Me" [2024-02-26 11:42:15.271 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "I AM" ["IVE"] -> "I Am" ["林俊杰"] [2024-02-26 11:42:15.271 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "I AM" ["IVE"] -> "I Am Alive (Feat. Jason Mraz)" ["林俊杰"] [2024-02-26 11:42:15.271 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "I AM" ["IVE"] -> "Here I Am" ["윤상현"] [2024-02-26 11:42:15.271 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "I AM" ["IVE"] -> "Here I Am (With 美)" ["포맨(4men)"] [2024-02-26 11:42:15.271 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "I AM" ["IVE"] -> "Here I Am (Piano Ver.) " ["美(미)"] [2024-02-26 11:42:15.271 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "I AM" ["IVE"] -> "who i am" ["Mandi Perkins"] [2024-02-26 11:42:15.271 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "I AM" ["IVE"] -> "I Am" ["Jorja Smith"] [2024-02-26 11:42:15.271 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "I AM" ["IVE"] -> "I AM NOT A MORON!" ["Aperture Science Psychoacoustics Laboratory"] [2024-02-26 11:42:15.271 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "I AM" ["IVE"] -> "From Where I Am" ["Enya"] [2024-02-26 11:42:15.271 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "I AM" ["IVE"] -> "I am amazed" ["张惠妹"] [2024-02-26 11:42:15.271 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "I AM" ["IVE"] -> "here i am (send me an angel)" ["jan wayne ft charlene"] [2024-02-26 11:42:15.271 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "I AM" ["IVE"] -> "Yes I am (Funk boost ver.)" ["MAMAMOO"] [2024-02-26 11:42:15.271 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "I AM" ["IVE"] -> "I am..." ["浜崎あゆみ"] [2024-02-26 11:42:15.343 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "Love Lee" [2024-02-26 11:42:15.380 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "OMG" ["NewJeans"] -> "Omg, What has He Done?" ["Aperture Science Psychoacoustics Laboratory"] [2024-02-26 11:42:15.380 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "OMG" ["NewJeans"] -> "OMG" ["Lee Jeong Min"] [2024-02-26 11:42:15.414 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "Get A Guitar" [2024-02-26 11:42:15.450 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "God of Music" [2024-02-26 11:42:15.521 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any tracks containing the name "Our Night is more beautiful than your Day" [2024-02-26 11:42:15.556 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Guilty" ["TAEMIN"] -> "Guilty" ["浜崎あゆみ"] [2024-02-26 11:42:15.661 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "GODS" ["League of Legends"] -> "Twilight of the Gods" ["Mark Mothersbaugh"] [2024-02-26 11:42:15.661 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "GODS" ["League of Legends"] -> "GODS" ["NewJeans"] [2024-02-26 11:42:15.730 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Fall In Love Again" ["P1Harmony"] -> "F.I.L.A (Fall In Love Again)" ["TWICE"] [2024-02-26 11:42:15.799 +11:00] [INF] [23] Viperinius.Plugin.SpotifyImport.PlaylistSync: Write missing tracks file with 33 entries to "/tmp/jfplugin_spotify_import/K-Pop ON! (온)_missing_2024-02-26_00-42.json"

Songs picked up by v1.6 image

Logs for v1.6 [2024-02-26 11:40:00.825 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.Spotify.SpotifyPlaylistProvider: Starting to query 1 playlists from "Spotify" [2024-02-26 11:40:00.827 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.Spotify.SpotifyLogger: "GET" playlists/37i9dQZF1DX9tPFwDMOaN1 ["additional_types=track,episode"] null [2024-02-26 11:40:01.998 +11:00] [INF] [37] Viperinius.Plugin.SpotifyImport.Spotify.SpotifyLogger: --> OK "application/json" "{\"collaborative\":false,\"description\":\"Turn on the " [2024-02-26 11:40:02.747 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "I NEED U - Spotify Singles" ["I NEED U - Spotify Singles"]["ENHYPEN"] [2024-02-26 11:40:02.832 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "I NEED U - Spotify Singles" ["I NEED U - Spotify Singles"]["ENHYPEN"] [2024-02-26 11:40:02.832 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Shopper" ["The Winning"]["IU"] [2024-02-26 11:40:02.903 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Shopper" ["The Winning"]["IU"] [2024-02-26 11:40:02.903 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "ONE SPARK" ["With YOU-th"]["TWICE"] [2024-02-26 11:40:02.984 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "ONE SPARK" ["With YOU-th"]["TWICE"] [2024-02-26 11:40:02.985 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "EASY" ["EASY"]["LE SSERAFIM"] [2024-02-26 11:40:03.071 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "EASY" ["EASY"]["LE SSERAFIM"] [2024-02-26 11:40:03.072 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "STUPID IN LOVE (feat. HUH YUNJIN of LE SSERAFIM)" ["STUPID IN LOVE (feat. HUH YUNJIN of LE SSERAFIM)"]["MAX#HUH YUNJIN"] [2024-02-26 11:40:03.153 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: AlbumName did not match for track "STUPID IN LOVE (feat. HUH YUNJIN of LE SSERAFIM)" ["STUPID IN LOVE (feat. HUH YUNJIN of LE SSERAFIM)"]["MAX#HUH YUNJIN"] [2024-02-26 11:40:03.154 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Bam Yang Gang" ["Bam Yang Gang"]["BIBI"] [2024-02-26 11:40:03.227 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "BIBI" [2024-02-26 11:40:03.229 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Bam Yang Gang" ["Bam Yang Gang"]["BIBI"] [2024-02-26 11:40:03.229 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Don't Go Insane" ["Don't Go Insane"]["DPR IAN"] [2024-02-26 11:40:03.308 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "DPR IAN" [2024-02-26 11:40:03.309 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Don't Go Insane" ["Don't Go Insane"]["DPR IAN"] [2024-02-26 11:40:03.309 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Wife" ["Wife"]["(G)I-DLE"] [2024-02-26 11:40:03.392 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "(G)I-DLE" [2024-02-26 11:40:03.392 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Wife" ["Wife"]["(G)I-DLE"] [2024-02-26 11:40:03.393 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "I GOT YOU" ["I GOT YOU"]["TWICE"] [2024-02-26 11:40:03.476 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "I GOT YOU" ["I GOT YOU"]["TWICE"] [2024-02-26 11:40:03.477 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "STAY" ["ENTITY"]["Cha Eun-Woo"] [2024-02-26 11:40:03.543 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "Cha Eun-Woo" [2024-02-26 11:40:03.544 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "STAY" ["ENTITY"]["Cha Eun-Woo"] [2024-02-26 11:40:03.545 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "LTNS" ["LTNS"]["DK"] [2024-02-26 11:40:03.621 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "DK" [2024-02-26 11:40:03.621 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "LTNS" ["LTNS"]["DK"] [2024-02-26 11:40:03.622 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Killin' It" ["Killin' It"]["P1Harmony"] [2024-02-26 11:40:03.695 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "P1Harmony" [2024-02-26 11:40:03.696 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Killin' It" ["Killin' It"]["P1Harmony"] [2024-02-26 11:40:03.697 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Nightwalker" ["TEN - The 1st Mini Album"]["TEN"] [2024-02-26 11:40:03.776 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Nightwalker" ["TEN - The 1st Mini Album"]["TEN"] [2024-02-26 11:40:03.777 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "plot twist" ["TWS 1st Mini Album 'Sparkling Blue'"]["TWS"] [2024-02-26 11:40:03.856 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "TWS" [2024-02-26 11:40:03.856 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "plot twist" ["TWS 1st Mini Album 'Sparkling Blue'"]["TWS"] [2024-02-26 11:40:03.857 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Super Lady" ["2"]["(G)I-DLE"] [2024-02-26 11:40:03.933 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "(G)I-DLE" [2024-02-26 11:40:03.934 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Super Lady" ["2"]["(G)I-DLE"] [2024-02-26 11:40:03.935 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "MANIAC" ["The 4th Mini Album 'VERSUS'"]["VIVIZ"] [2024-02-26 11:40:04.011 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "VIVIZ" [2024-02-26 11:40:04.012 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "MANIAC" ["The 4th Mini Album 'VERSUS'"]["VIVIZ"] [2024-02-26 11:40:04.013 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Stuck In The Middle" ["BABYMONSTER Pre-Release Single [Stuck In The Middle]"]["BABYMONSTER"] [2024-02-26 11:40:04.081 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "BABYMONSTER" [2024-02-26 11:40:04.083 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Stuck In The Middle" ["BABYMONSTER Pre-Release Single [Stuck In The Middle]"]["BABYMONSTER"] [2024-02-26 11:40:04.083 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Drama" ["Drama - The 4th Mini Album"]["aespa"] [2024-02-26 11:40:04.159 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "aespa" [2024-02-26 11:40:04.160 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Drama" ["Drama - The 4th Mini Album"]["aespa"] [2024-02-26 11:40:04.160 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "DASH" ["Fe3O4: BREAK"]["NMIXX"] [2024-02-26 11:40:04.234 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Perfect Night" ["Perfect Night"]["LE SSERAFIM"] [2024-02-26 11:40:04.303 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Perfect Night" ["Perfect Night"]["LE SSERAFIM"] [2024-02-26 11:40:04.304 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Slowly (feat. Heize)" ["Slowly (feat. Heize)"]["I.M#HEIZE"] [2024-02-26 11:40:04.367 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "I.M" [2024-02-26 11:40:04.433 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Slowly (feat. Heize)" ["Slowly (feat. Heize)"]["I.M#HEIZE"] [2024-02-26 11:40:04.434 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Yes or No (Feat. 허윤진 of LE SSERAFIM, Crush)" ["Yes or No"]["GroovyRoom#HUH YUNJIN#Crush"] [2024-02-26 11:40:04.500 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "BATTER UP" ["BABYMONSTER Debut Digital Single [BATTER UP]"]["BABYMONSTER"] [2024-02-26 11:40:04.566 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "BABYMONSTER" [2024-02-26 11:40:04.566 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "BATTER UP" ["BABYMONSTER Debut Digital Single [BATTER UP]"]["BABYMONSTER"] [2024-02-26 11:40:04.567 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "UNTOUCHABLE" ["BORN TO BE"]["ITZY"] [2024-02-26 11:40:04.634 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "UNTOUCHABLE" ["BORN TO BE"]["ITZY"] [2024-02-26 11:40:04.635 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "NO MORE (MA BOY)" ["NO MORE (MA BOY)"]["SISTAR19"] [2024-02-26 11:40:04.702 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "SISTAR19" [2024-02-26 11:40:04.703 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "NO MORE (MA BOY)" ["NO MORE (MA BOY)"]["SISTAR19"] [2024-02-26 11:40:04.703 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "All Night (feat. Saweetie)" ["All Night (feat. Saweetie)"]["IVE#Saweetie"] [2024-02-26 11:40:04.770 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "All Night (feat. Saweetie)" ["All Night (feat. Saweetie)"]["IVE#Saweetie"] [2024-02-26 11:40:04.771 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Sweet Venom" ["ORANGE BLOOD"]["ENHYPEN"] [2024-02-26 11:40:04.838 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Love 119" ["Love 119"]["RIIZE"] [2024-02-26 11:40:04.901 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "RIIZE" [2024-02-26 11:40:04.902 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Love 119" ["Love 119"]["RIIZE"] [2024-02-26 11:40:04.902 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Bite Me" ["DARK BLOOD"]["ENHYPEN"] [2024-02-26 11:40:04.968 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Bite Me" ["DARK BLOOD"]["ENHYPEN"] [2024-02-26 11:40:04.968 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "LALALALA" ["ROCK-STAR"]["Stray Kids"] [2024-02-26 11:40:05.032 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "Stray Kids" [2024-02-26 11:40:05.033 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "LALALALA" ["ROCK-STAR"]["Stray Kids"] [2024-02-26 11:40:05.033 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Crazy Form" ["THE WORLD EP.FIN : WILL"]["ATEEZ"] [2024-02-26 11:40:05.098 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Crazy Form" ["THE WORLD EP.FIN : WILL"]["ATEEZ"] [2024-02-26 11:40:05.099 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Queencard" ["I feel"]["(G)I-DLE"] [2024-02-26 11:40:05.163 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "(G)I-DLE" [2024-02-26 11:40:05.163 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Queencard" ["I feel"]["(G)I-DLE"] [2024-02-26 11:40:05.164 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Baddie" ["I'VE MINE"]["IVE"] [2024-02-26 11:40:05.231 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Baddie" ["I'VE MINE"]["IVE"] [2024-02-26 11:40:05.232 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Super" ["SEVENTEEN 10th Mini Album 'FML'"]["SEVENTEEN"] [2024-02-26 11:40:05.295 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: AlbumName did not match for track "Super" ["SEVENTEEN 10th Mini Album 'FML'"]["SEVENTEEN"] [2024-02-26 11:40:05.296 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Soñar (Breaker)" ["Soñar (Breaker)"]["NMIXX"] [2024-02-26 11:40:05.362 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "You & Me" ["JENNIE Special Single [You & Me]"]["JENNIE"] [2024-02-26 11:40:05.427 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "You & Me" ["JENNIE Special Single [You & Me]"]["JENNIE"] [2024-02-26 11:40:05.428 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "I AM" ["I've IVE"]["IVE"] [2024-02-26 11:40:05.494 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "I AM" ["I've IVE"]["IVE"] [2024-02-26 11:40:05.495 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "ANTIFRAGILE" ["ANTIFRAGILE"]["LE SSERAFIM"] [2024-02-26 11:40:05.561 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "ANTIFRAGILE" ["ANTIFRAGILE"]["LE SSERAFIM"] [2024-02-26 11:40:05.562 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Love Lee" ["Love Lee"]["AKMU"] [2024-02-26 11:40:05.626 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "AKMU" [2024-02-26 11:40:05.627 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Love Lee" ["Love Lee"]["AKMU"] [2024-02-26 11:40:05.628 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "OMG" ["NewJeans 'OMG'"]["NewJeans"] [2024-02-26 11:40:05.692 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "OMG" ["NewJeans 'OMG'"]["NewJeans"] [2024-02-26 11:40:05.693 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Get A Guitar" ["Get A Guitar"]["RIIZE"] [2024-02-26 11:40:05.756 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "RIIZE" [2024-02-26 11:40:05.757 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Get A Guitar" ["Get A Guitar"]["RIIZE"] [2024-02-26 11:40:05.758 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "God of Music" ["SEVENTEEN 11th Mini Album 'SEVENTEENTH HEAVEN'"]["SEVENTEEN"] [2024-02-26 11:40:05.823 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: AlbumName did not match for track "God of Music" ["SEVENTEEN 11th Mini Album 'SEVENTEENTH HEAVEN'"]["SEVENTEEN"] [2024-02-26 11:40:05.823 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Off The Record" ["Off The Record"]["IVE"] [2024-02-26 11:40:05.889 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Off The Record" ["Off The Record"]["IVE"] [2024-02-26 11:40:05.889 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Our Night is more beautiful than your Day" ["NewJeans X MY DEMON"]["NewJeans"] [2024-02-26 11:40:05.957 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Our Night is more beautiful than your Day" ["NewJeans X MY DEMON"]["NewJeans"] [2024-02-26 11:40:05.958 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Guilty" ["Guilty - The 4th Mini Album"]["TAEMIN"] [2024-02-26 11:40:06.022 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "TAEMIN" [2024-02-26 11:40:06.023 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Guilty" ["Guilty - The 4th Mini Album"]["TAEMIN"] [2024-02-26 11:40:06.023 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Nobody Knows" ["Born to be XX"]["KISS OF LIFE"] [2024-02-26 11:40:06.102 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "To. X" ["To. X - The 5th Mini Album"]["TAEYEON"] [2024-02-26 11:40:06.170 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "GODS" ["GODS"]["League of Legends#NewJeans"] [2024-02-26 11:40:06.235 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "League of Legends" [2024-02-26 11:40:06.299 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "GODS" ["GODS"]["League of Legends#NewJeans"] [2024-02-26 11:40:06.300 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Standing Next to You (USHER Remix)" ["Standing Next to You (USHER Remix)"]["Jung Kook#USHER"] [2024-02-26 11:40:06.365 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Standing Next to You (USHER Remix)" ["Standing Next to You (USHER Remix)"]["Jung Kook#USHER"] [2024-02-26 11:40:06.366 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Fall In Love Again" ["Fall In Love Again"]["P1Harmony"] [2024-02-26 11:40:06.446 +11:00] [DBG] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "P1Harmony" [2024-02-26 11:40:06.447 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Fall In Love Again" ["Fall In Love Again"]["P1Harmony"] [2024-02-26 11:40:06.507 +11:00] [INF] [18] Viperinius.Plugin.SpotifyImport.PlaylistSync: Write missing tracks file with 44 entries to "/tmp/jfplugin_spotify_import/K-Pop ON! (온)_missing_2024-02-26_00-40.json"

Viperinius commented 6 months ago

Oook, looking at the log that is odd... I guess you still use Ignore Case + Punctuation + Parentheses Content?

I created a debug version (1.6.0.1): You can access it by adding this url as a new plugin repository in Jellyfin...

https://raw.githubusercontent.com/Viperinius/jellyfin-plugins/test/spotify-import/manifest.json

...and then installing version 1.6.0.1.

  1. With this version, could you paste the debug log again please?
  2. This version contains another manual scheduled task which dumps track metadata for all songs to a file. Could you run this and either paste the resulting file (sits next to the missing track files) here or if you don't want to show your whole music library, paste just the parts for some of the missing tracks (like ONE SPARK)?

With this metadata I would be able to create a fake library for these tracks.

bfg100k commented 6 months ago

yes I still have Ignore Case + Punctuation + Parentheses Content set.

[2024-02-28 08:15:19.923 +11:00] [INF] [11] Emby.Server.Implementations.ScheduledTasks.TaskManager: Executing "Import Spotify playlists" [2024-02-28 08:15:19.925 +11:00] [INF] [11] Viperinius.Plugin.SpotifyImport.Spotify.SpotifyPlaylistProvider: Starting to query 1 playlists from "Spotify" [2024-02-28 08:15:19.926 +11:00] [INF] [11] Viperinius.Plugin.SpotifyImport.Spotify.SpotifyLogger: "GET" playlists/37i9dQZF1DX9tPFwDMOaN1 ["additional_types=track,episode"] null [2024-02-28 08:15:20.630 +11:00] [INF] [11] Viperinius.Plugin.SpotifyImport.Spotify.SpotifyLogger: --> OK "application/json" "{\"collaborative\":false,\"description\":\"Turn on the " [2024-02-28 08:15:23.976 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "I NEED U - Spotify Singles" ["I NEED U - Spotify Singles"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:24.041 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Mortal" ["ORANGE BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:24.041 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Sweet Venom" ["ORANGE BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:24.041 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Still Monster" ["ORANGE BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:24.041 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Blind" ["ORANGE BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:24.041 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Orange Flower (You Complete Me)" ["ORANGE BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:24.041 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Sweet Venom (English ver.)" ["ORANGE BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:24.041 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Sweet Venom" ["ORANGE BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:24.041 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "I NEED U - Spotify Singles" ["I NEED U - Spotify Singles"]["ENHYPEN"] [2024-02-28 08:15:24.041 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "TAP" ["TAP - The 2nd Mini Album"]["TAEYONG"]["TAEYONG"] [2024-02-28 08:15:24.100 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "TAP" ["TAP - The 2nd Mini Album"]["TAEYONG"] [2024-02-28 08:15:24.101 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "EASY" ["EASY"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:24.160 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "The World Is My Oyster" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:24.160 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "FEARLESS" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:24.161 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Blue Flame" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:24.161 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "The Great Mermaid" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:24.161 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Sour Grapes" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:24.161 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "FEARLESS -Japanese ver.-" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:24.161 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Blue Flame -Japanese ver.-" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:24.161 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Choices" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:24.161 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "EASY" ["EASY"]["LE SSERAFIM"] [2024-02-28 08:15:24.161 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "STUPID IN LOVE (feat. HUH YUNJIN of LE SSERAFIM)" ["STUPID IN LOVE (feat. HUH YUNJIN of LE SSERAFIM)"]["MAX#HUH YUNJIN"]["MAX#HUH YUNJIN"] [2024-02-28 08:15:24.219 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: AlbumName did not match for track "STUPID IN LOVE (feat. HUH YUNJIN of LE SSERAFIM)" ["STUPID IN LOVE (feat. HUH YUNJIN of LE SSERAFIM)"]["MAX#HUH YUNJIN"] [2024-02-28 08:15:24.219 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Shopper" ["The Winning"]["IU"]["IU"] [2024-02-28 08:15:24.277 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Shopper" ["The Winning"]["IU"] [2024-02-28 08:15:24.278 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "1 MINUTE" ["TRUST ME"]["YUGYEOM"]["YUGYEOM"] [2024-02-28 08:15:24.338 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "YUGYEOM" [2024-02-28 08:15:24.338 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "1 MINUTE" ["TRUST ME"]["YUGYEOM"] [2024-02-28 08:15:24.338 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "ONE SPARK" ["With YOU-th"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.400 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Celebrate" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.400 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Just be yourself" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.400 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Voices of Delight" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.400 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "TICK TOCK" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.400 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Flow like waves" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.400 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "That's all I'm saying" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.400 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Doughnut" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.400 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Sandcastle" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.400 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Bitter Sweet" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.400 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "ONE SPARK" ["With YOU-th"]["TWICE"] [2024-02-28 08:15:24.400 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Don't Go Insane" ["Don't Go Insane"]["DPR IAN"]["DPR IAN"] [2024-02-28 08:15:24.458 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "DPR IAN" [2024-02-28 08:15:24.459 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Don't Go Insane" ["Don't Go Insane"]["DPR IAN"] [2024-02-28 08:15:24.459 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Wife" ["Wife"]["(G)I-DLE"]["(G)I-DLE"] [2024-02-28 08:15:24.517 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "(G)I-DLE" [2024-02-28 08:15:24.517 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Wife" ["Wife"]["(G)I-DLE"] [2024-02-28 08:15:24.517 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Bam Yang Gang" ["Bam Yang Gang"]["BIBI"]["BIBI"] [2024-02-28 08:15:24.576 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Bam Yang Gang" ["Bam Yang Gang"]["BIBI"]["BIBI"] [2024-02-28 08:15:24.576 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "I GOT YOU" ["I GOT YOU"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.637 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Celebrate" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.637 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Just be yourself" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.637 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Voices of Delight" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.637 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "TICK TOCK" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.637 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Flow like waves" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.637 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "That's all I'm saying" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.637 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Doughnut" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.637 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Sandcastle" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.637 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Bitter Sweet" ["Celebrate"]["TWICE"]["TWICE"] [2024-02-28 08:15:24.637 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "I GOT YOU" ["I GOT YOU"]["TWICE"] [2024-02-28 08:15:24.637 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Killin' It" ["Killin' It"]["P1Harmony"]["P1Harmony"] [2024-02-28 08:15:24.697 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Killin’ It" ["Killin' It"]["P1Harmony"]["P1Harmony"] [2024-02-28 08:15:24.697 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "STAY" ["ENTITY"]["Cha Eun-Woo"]["Cha Eun-Woo"] [2024-02-28 08:15:24.755 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "Cha Eun-Woo" [2024-02-28 08:15:24.755 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "STAY" ["ENTITY"]["Cha Eun-Woo"] [2024-02-28 08:15:24.755 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "LTNS" ["LTNS"]["DK"]["DK"] [2024-02-28 08:15:24.813 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "DK" [2024-02-28 08:15:24.813 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "LTNS" ["LTNS"]["DK"] [2024-02-28 08:15:24.813 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Nightwalker" ["TEN - The 1st Mini Album"]["TEN"]["TEN"] [2024-02-28 08:15:24.871 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Nightwalker" ["TEN - The 1st Mini Album"]["TEN"] [2024-02-28 08:15:24.872 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "plot twist" ["TWS 1st Mini Album 'Sparkling Blue'"]["TWS"]["TWS"] [2024-02-28 08:15:24.931 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "plot twist" ["Sparkling Blue"]["TWS"]["TWS"] [2024-02-28 08:15:24.931 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Super Lady" ["2"]["(G)I-DLE"]["(G)I-DLE"] [2024-02-28 08:15:24.988 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "(G)I-DLE" [2024-02-28 08:15:24.989 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Super Lady" ["2"]["(G)I-DLE"] [2024-02-28 08:15:24.989 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "MANIAC" ["The 4th Mini Album 'VERSUS'"]["VIVIZ"]["VIVIZ"] [2024-02-28 08:15:25.048 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "MANIAC" ["VERSUS"]["VIVIZ"]["VIVIZ"] [2024-02-28 08:15:25.048 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Stuck In The Middle" ["BABYMONSTER Pre-Release Single [Stuck In The Middle]"]["BABYMONSTER"]["BABYMONSTER"] [2024-02-28 08:15:25.110 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Stuck in the Middle" ["Stuck in the Middle"]["BABYMONSTER"]["BABYMONSTER"] [2024-02-28 08:15:25.111 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Drama" ["Drama - The 4th Mini Album"]["aespa"]["aespa"] [2024-02-28 08:15:25.170 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Drama" ["Drama"]["aespa"]["aespa"] [2024-02-28 08:15:25.170 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "DASH" ["Fe3O4: BREAK"]["NMIXX"]["NMIXX"] [2024-02-28 08:15:25.230 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "DASH" ["Fe3O4: BREAK"]["NMIXX"]["NMIXX"] [2024-02-28 08:15:25.230 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Perfect Night" ["Perfect Night"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:25.290 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "The World Is My Oyster" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:25.290 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "FEARLESS" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:25.290 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Blue Flame" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:25.290 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "The Great Mermaid" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:25.290 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Sour Grapes" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:25.290 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "FEARLESS -Japanese ver.-" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:25.290 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Blue Flame -Japanese ver.-" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:25.290 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Choices" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:25.290 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Perfect Night" ["Perfect Night"]["LE SSERAFIM"] [2024-02-28 08:15:25.290 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Slowly (feat. Heize)" ["Slowly (feat. Heize)"]["I.M"]["I.M#HEIZE"] [2024-02-28 08:15:25.348 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "I.M" [2024-02-28 08:15:25.406 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Slowly (feat. Heize)" ["Slowly (feat. Heize)"]["I.M#HEIZE"] [2024-02-28 08:15:25.406 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Yes or No (Feat. 허윤진 of LE SSERAFIM, Crush)" ["Yes or No"]["GroovyRoom#HUH YUNJIN"]["GroovyRoom#HUH YUNJIN#Crush"] [2024-02-28 08:15:25.467 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Yes or No" ["Yes or No"]["GroovyRoom"]["GroovyRoom#HUH YUNJIN of LE SSERAFIM#Crush"] [2024-02-28 08:15:25.467 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "BATTER UP" ["BABYMONSTER Debut Digital Single [BATTER UP]"]["BABYMONSTER"]["BABYMONSTER"] [2024-02-28 08:15:25.526 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Stuck in the Middle" ["Stuck in the Middle"]["BABYMONSTER"]["BABYMONSTER"] [2024-02-28 08:15:25.527 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "BATTER UP" ["BABYMONSTER Debut Digital Single [BATTER UP]"]["BABYMONSTER"] [2024-02-28 08:15:25.527 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "UNTOUCHABLE" ["BORN TO BE"]["ITZY"]["ITZY"] [2024-02-28 08:15:25.586 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "LOCO" ["Crazy in Love"]["ITZY"]["ITZY"] [2024-02-28 08:15:25.587 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "#Twenty" ["Crazy in Love"]["ITZY"]["ITZY"] [2024-02-28 08:15:25.587 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "SWIPE" ["Crazy in Love"]["ITZY"]["ITZY"] [2024-02-28 08:15:25.587 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Sooo LUCKY" ["Crazy in Love"]["ITZY"]["ITZY"] [2024-02-28 08:15:25.587 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "In the morning (Inst.)" ["Crazy in Love"]["ITZY"]["ITZY"] [2024-02-28 08:15:25.587 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Not Shy (Inst.)" ["Crazy in Love"]["ITZY"]["ITZY"] [2024-02-28 08:15:25.587 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "WANNABE (Inst.)" ["Crazy in Love"]["ITZY"]["ITZY"] [2024-02-28 08:15:25.587 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "LOCO (Inst.)" ["Crazy in Love"]["ITZY"]["ITZY"] [2024-02-28 08:15:25.587 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "LOCO (English Ver.)" ["Crazy in Love"]["ITZY"]["ITZY"] [2024-02-28 08:15:25.587 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "ICY (Inst.)" ["Crazy in Love"]["ITZY"]["ITZY"] [2024-02-28 08:15:25.587 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "B[OO]M-BOXX" ["Crazy in Love"]["ITZY"]["ITZY"] [2024-02-28 08:15:25.587 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Chillin' Chillin'" ["Crazy in Love"]["ITZY"]["ITZY"] [2024-02-28 08:15:25.587 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "DALLA DALLA (Inst.)" ["Crazy in Love"]["ITZY"]["ITZY"] [2024-02-28 08:15:25.587 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Mirror" ["Crazy in Love"]["ITZY"]["ITZY"] [2024-02-28 08:15:25.587 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Gas Me Up" ["Crazy in Love"]["ITZY"]["ITZY"] [2024-02-28 08:15:25.587 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "LOVE is" ["Crazy in Love"]["ITZY"]["ITZY"] [2024-02-28 08:15:25.587 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "UNTOUCHABLE" ["BORN TO BE"]["ITZY"] [2024-02-28 08:15:25.587 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "NO MORE (MA BOY)" ["NO MORE (MA BOY)"]["SISTAR19"]["SISTAR19"] [2024-02-28 08:15:25.646 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "NO MORE (MA BOY)" ["No More (Ma Boy)"]["SISTAR19"]["Sistar19"] [2024-02-28 08:15:25.647 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "All Night (feat. Saweetie)" ["All Night (feat. Saweetie)"]["IVE#Saweetie"]["IVE#Saweetie"] [2024-02-28 08:15:25.709 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "LOVE DIVE" ["LOVE DIVE"]["IVE"]["IVE"] [2024-02-28 08:15:25.709 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "ROYAL" ["LOVE DIVE"]["IVE"]["IVE"] [2024-02-28 08:15:25.709 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "All Night (feat. Saweetie)" ["All Night (feat. Saweetie)"]["IVE#Saweetie"] [2024-02-28 08:15:25.709 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Sweet Venom" ["ORANGE BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:25.769 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Mortal" ["ORANGE BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:25.770 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Sweet Venom" ["ORANGE BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:25.770 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Love 119" ["Love 119"]["RIIZE"]["RIIZE"] [2024-02-28 08:15:25.827 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "RIIZE" [2024-02-28 08:15:25.828 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Love 119" ["Love 119"]["RIIZE"] [2024-02-28 08:15:25.828 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Bite Me" ["DARK BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:25.887 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Mortal" ["ORANGE BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:25.887 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Sweet Venom" ["ORANGE BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:25.887 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Still Monster" ["ORANGE BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:25.887 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Blind" ["ORANGE BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:25.887 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Orange Flower (You Complete Me)" ["ORANGE BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:25.887 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Sweet Venom (English ver.)" ["ORANGE BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:25.887 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Sweet Venom" ["ORANGE BLOOD"]["ENHYPEN"]["ENHYPEN"] [2024-02-28 08:15:25.887 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Bite Me" ["DARK BLOOD"]["ENHYPEN"] [2024-02-28 08:15:25.887 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "LALALALA" ["ROCK-STAR"]["Stray Kids"]["Stray Kids"] [2024-02-28 08:15:25.947 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "MEGAVERSE" ["樂-STAR"]["Stray Kids"]["Stray Kids"] [2024-02-28 08:15:25.947 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "락 (樂) (LALALALA)" ["樂-STAR"]["Stray Kids"]["Stray Kids"] [2024-02-28 08:15:25.947 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "사각지대 (BLIND SPOT)" ["樂-STAR"]["Stray Kids"]["Stray Kids"] [2024-02-28 08:15:25.947 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "COMFLEX" ["樂-STAR"]["Stray Kids"]["Stray Kids"] [2024-02-28 08:15:25.947 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "가려줘 (Cover Me)" ["樂-STAR"]["Stray Kids"]["Stray Kids"] [2024-02-28 08:15:25.947 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Leave" ["樂-STAR"]["Stray Kids"]["Stray Kids"] [2024-02-28 08:15:25.947 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "SOCIAL PATH (Korean ver.)" ["樂-STAR"]["Stray Kids"]["Stray Kids"] [2024-02-28 08:15:25.947 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "락 (樂) (LALALALA) (Rock ver.)" ["樂-STAR"]["Stray Kids"]["Stray Kids"] [2024-02-28 08:15:25.947 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "LALALALA" ["ROCK-STAR"]["Stray Kids"] [2024-02-28 08:15:25.947 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Crazy Form" ["THE WORLD EP.FIN : WILL"]["ATEEZ"]["ATEEZ"] [2024-02-28 08:15:26.009 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "This World" ["THE WORLD EP.2 : OUTLAW"]["ATEEZ"]["ATEEZ"] [2024-02-28 08:15:26.009 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Dune" ["THE WORLD EP.2 : OUTLAW"]["ATEEZ"]["ATEEZ"] [2024-02-28 08:15:26.009 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "BOUNCY (K‐HOT CHILLI PEPPERS)" ["THE WORLD EP.2 : OUTLAW"]["ATEEZ"]["ATEEZ"] [2024-02-28 08:15:26.010 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "DJANGO" ["THE WORLD EP.2 : OUTLAW"]["ATEEZ"]["ATEEZ"] [2024-02-28 08:15:26.010 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Wake Up" ["THE WORLD EP.2 : OUTLAW"]["ATEEZ"]["ATEEZ"] [2024-02-28 08:15:26.010 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Outlaw" ["THE WORLD EP.2 : OUTLAW"]["ATEEZ"]["ATEEZ"] [2024-02-28 08:15:26.010 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Crazy Form" ["THE WORLD EP.FIN : WILL"]["ATEEZ"] [2024-02-28 08:15:26.010 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Queencard" ["I feel"]["(G)I-DLE"]["(G)I-DLE"] [2024-02-28 08:15:26.068 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "(G)I-DLE" [2024-02-28 08:15:26.068 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Queencard" ["I feel"]["(G)I-DLE"] [2024-02-28 08:15:26.068 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Baddie" ["I'VE MINE"]["IVE"]["IVE"] [2024-02-28 08:15:26.128 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "LOVE DIVE" ["LOVE DIVE"]["IVE"]["IVE"] [2024-02-28 08:15:26.129 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "ROYAL" ["LOVE DIVE"]["IVE"]["IVE"] [2024-02-28 08:15:26.129 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Baddie" ["I'VE MINE"]["IVE"] [2024-02-28 08:15:26.129 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Super" ["SEVENTEEN 10th Mini Album 'FML'"]["SEVENTEEN"]["SEVENTEEN"] [2024-02-28 08:15:26.187 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: AlbumName did not match for track "Super" ["SEVENTEEN 10th Mini Album 'FML'"]["SEVENTEEN"] [2024-02-28 08:15:26.187 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Soñar (Breaker)" ["Soñar (Breaker)"]["NMIXX"]["NMIXX"] [2024-02-28 08:15:26.247 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "DASH" ["Fe3O4: BREAK"]["NMIXX"]["NMIXX"] [2024-02-28 08:15:26.247 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Soñar (Breaker)" ["Fe3O4: BREAK"]["NMIXX"]["NMIXX"] [2024-02-28 08:15:26.247 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "You & Me" ["JENNIE Special Single [You & Me]"]["JENNIE"]["JENNIE"] [2024-02-28 08:15:26.308 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "You & Me" ["You & Me"]["JENNIE"]["JENNIE"] [2024-02-28 08:15:26.308 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "I AM" ["I've IVE"]["IVE"]["IVE"] [2024-02-28 08:15:26.368 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "LOVE DIVE" ["LOVE DIVE"]["IVE"]["IVE"] [2024-02-28 08:15:26.368 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "ROYAL" ["LOVE DIVE"]["IVE"]["IVE"] [2024-02-28 08:15:26.368 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "I AM" ["I've IVE"]["IVE"] [2024-02-28 08:15:26.368 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "ANTIFRAGILE" ["ANTIFRAGILE"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:26.430 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "The World Is My Oyster" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:26.430 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "FEARLESS" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:26.430 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Blue Flame" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:26.430 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "The Great Mermaid" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:26.430 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Sour Grapes" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:26.430 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "FEARLESS -Japanese ver.-" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:26.430 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Blue Flame -Japanese ver.-" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:26.430 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Choices" ["FEARLESS"]["LE SSERAFIM"]["LE SSERAFIM"] [2024-02-28 08:15:26.430 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "ANTIFRAGILE" ["ANTIFRAGILE"]["LE SSERAFIM"] [2024-02-28 08:15:26.430 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Love Lee" ["Love Lee"]["AKMU"]["AKMU"] [2024-02-28 08:15:26.488 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "AKMU" [2024-02-28 08:15:26.488 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Love Lee" ["Love Lee"]["AKMU"] [2024-02-28 08:15:26.488 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "OMG" ["NewJeans 'OMG'"]["NewJeans"]["NewJeans"] [2024-02-28 08:15:26.550 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Ditto" ["Ditto"]["NewJeans"]["NewJeans"] [2024-02-28 08:15:26.550 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "OMG" ["NewJeans 'OMG'"]["NewJeans"] [2024-02-28 08:15:26.550 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Get A Guitar" ["Get A Guitar"]["RIIZE"]["RIIZE"] [2024-02-28 08:15:26.608 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Did not find any artists for the name "RIIZE" [2024-02-28 08:15:26.609 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Get A Guitar" ["Get A Guitar"]["RIIZE"] [2024-02-28 08:15:26.609 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "God of Music" ["SEVENTEEN 11th Mini Album 'SEVENTEENTH HEAVEN'"]["SEVENTEEN"]["SEVENTEEN"] [2024-02-28 08:15:26.667 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: AlbumName did not match for track "God of Music" ["SEVENTEEN 11th Mini Album 'SEVENTEENTH HEAVEN'"]["SEVENTEEN"] [2024-02-28 08:15:26.667 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Off The Record" ["Off The Record"]["IVE"]["IVE"] [2024-02-28 08:15:26.727 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "LOVE DIVE" ["LOVE DIVE"]["IVE"]["IVE"] [2024-02-28 08:15:26.727 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "ROYAL" ["LOVE DIVE"]["IVE"]["IVE"] [2024-02-28 08:15:26.727 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Off The Record" ["Off The Record"]["IVE"] [2024-02-28 08:15:26.727 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Our Night is more beautiful than your Day" ["NewJeans X MY DEMON"]["NewJeans"]["NewJeans"] [2024-02-28 08:15:26.787 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Ditto" ["Ditto"]["NewJeans"]["NewJeans"] [2024-02-28 08:15:26.787 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Our Night is more beautiful than your Day" ["NewJeans X MY DEMON"]["NewJeans"] [2024-02-28 08:15:26.787 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Guilty" ["Guilty - The 4th Mini Album"]["TAEMIN"]["TAEMIN"] [2024-02-28 08:15:26.846 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Guilty" ["Guilty"]["TAEMIN"]["TAEMIN"] [2024-02-28 08:15:26.846 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Nobody Knows" ["Born to be XX"]["KISS OF LIFE"]["KISS OF LIFE"] [2024-02-28 08:15:26.907 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Bad News" ["Born to be XX"]["KISS OF LIFE"]["KISS OF LIFE"] [2024-02-28 08:15:26.907 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Nobody Knows" ["Born to be XX"]["KISS OF LIFE"]["KISS OF LIFE"] [2024-02-28 08:15:26.908 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "To. X" ["To. X - The 5th Mini Album"]["TAEYEON"]["TAEYEON"] [2024-02-28 08:15:26.968 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "To. X" ["To. X"]["TAEYEON"]["TAEYEON"] [2024-02-28 08:15:26.969 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Fall In Love Again" ["Fall In Love Again"]["P1Harmony"]["P1Harmony"] [2024-02-28 08:15:27.028 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Killin’ It" ["Killin' It"]["P1Harmony"]["P1Harmony"] [2024-02-28 08:15:27.028 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Late Night Calls" ["Killin' It"]["P1Harmony"]["P1Harmony"] [2024-02-28 08:15:27.028 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Everybody Clap" ["Killin' It"]["P1Harmony"]["P1Harmony"] [2024-02-28 08:15:27.028 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Love Story" ["Killin' It"]["P1Harmony"]["P1Harmony"] [2024-02-28 08:15:27.028 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Countdown To Love" ["Killin' It"]["P1Harmony"]["P1Harmony"] [2024-02-28 08:15:27.028 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Emergency" ["Killin' It"]["P1Harmony"]["P1Harmony"] [2024-02-28 08:15:27.029 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "2Nite" ["Killin' It"]["P1Harmony"]["P1Harmony"] [2024-02-28 08:15:27.029 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Let Me Love You" ["Killin' It"]["P1Harmony"]["P1Harmony"] [2024-02-28 08:15:27.029 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "Street Star" ["Killin' It"]["P1Harmony"]["P1Harmony"] [2024-02-28 08:15:27.029 +11:00] [DBG] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Checking server track "I See U" ["Killin' It"]["P1Harmony"]["P1Harmony"] [2024-02-28 08:15:27.029 +11:00] [INF] [8] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName did not match for track "Fall In Love Again" ["Fall In Love Again"]["P1Harmony"] [2024-02-28 08:15:27.066 +11:00] [INF] [11] Viperinius.Plugin.SpotifyImport.PlaylistSync: Write missing tracks file with 35 entries to "/tmp/jfplugin_spotify_import/K-Pop ON! (온)_missing_2024-02-27_21-15.json" [2024-02-28 08:15:27.077 +11:00] [INF] [13] Emby.Server.Implementations.ScheduledTasks.TaskManager: "Import Spotify playlists" Completed after 0 minute(s) and 7 seconds

[ { "Name": "Wishing", "AlbumName": "BDZ", "AlbumArtistNames": [ "TWICE" ], "ArtistNames": [ "TWICE" ] }, { "Name": "\uD038\uCE74 (Queencard)", "AlbumName": "I feel", "AlbumArtistNames": [ "(G)I\u2010DLE" ], "ArtistNames": [ "(G)I\u2010DLE" ] }, { "Name": "\u5E7C\u800C\u5B66", "AlbumName": "\u5BF6\u8C9D\u611B\u7D93\u5178\uFF5E\u4E09\u5B57\u7D93\u4E00\u6821", "AlbumArtistNames": [ "\u7AE5\u60A6\u574A" ], "ArtistNames": [ "\u7AE5\u60A6\u574A" ] }, { "Name": "\uC0AC\uB791 \uB9CC\uB4E4\uAE30 \uD3EC\uBBF8\uB2DB", "AlbumName": "\uAC1C\uC778\uC758 \uCDE8\uD5A5 OST", "AlbumArtistNames": [ "Various Artists" ], "ArtistNames": [ "\uD3EC\uBBF8\uB2DB (4minute)" ] }, { "Name": "\u8981\u4F60\u4EB2\u53E3\u5BF9\u6211\u8BF4", "AlbumName": "\u5FC3\u4E8B", "AlbumArtistNames": [ "\u5F20\u4FE1\u54F2" ], "ArtistNames": [ "\u5F20\u4FE1\u54F2" ] }, { "Name": "\uC9C0\uAE08\uCC98\uB7FC\uB9CC (Be There for You)", "AlbumName": "Hello Future", "AlbumArtistNames": [ "NCT DREAM" ], "ArtistNames": [ "NCT DREAM" ] }, { "Name": "2Nite", "AlbumName": "Killin\u0027 It", "AlbumArtistNames": [ "P1Harmony" ], "ArtistNames": [ "P1Harmony" ] }, { "Name": "\u521D\u5FC3", "AlbumName": "\u7ED9\u81EA\u5DF1\u7684\u60C5\u6B4C", "AlbumArtistNames": [ "\u6881\u548F\u742A" ], "ArtistNames": [ "\u6881\u548F\u742A" ] }, { "Name": "Talk that Talk", "AlbumName": "BETWEEN 1\u00262", "AlbumArtistNames": [ "TWICE" ], "ArtistNames": [ "TWICE" ] }, { "Name": "No Celestial", "AlbumName": "ANTIFRAGILE", "AlbumArtistNames": [ "LE SSERAFIM" ], "ArtistNames": [ "LE SSERAFIM" ] }, { "Name": "TICK TOCK", "AlbumName": "Celebrate", "AlbumArtistNames": [ "TWICE" ], "ArtistNames": [ "TWICE" ] }, { "Name": "Music of the Spheres 2 (Incendiary Lemons)", "AlbumName": "Portal 2: Songs to Test By", "AlbumArtistNames": [ "Original Soundtrack" ], "ArtistNames": [ "Aperture Science Psychoacoustics Laboratory" ] }, { "Name": "\uC74C\uC545\uC758 \uC2E0", "AlbumName": "SEVENTEENTH HEAVEN", "AlbumArtistNames": [ "SEVENTEEN" ], "ArtistNames": [ "SEVENTEEN" ] }, { "Name": "The Feels", "AlbumName": "Formula of Love: O\u002BT=\u003C3", "AlbumArtistNames": [ "TWICE" ], "ArtistNames": [ "TWICE" ] }, { "Name": "Super Shy", "AlbumName": "Get Up", "AlbumArtistNames": [ "NewJeans" ], "ArtistNames": [ "NewJeans" ] }, { "Name": "Better Things", "AlbumName": "Drama", "AlbumArtistNames": [ "aespa" ], "ArtistNames": [ "aespa" ] }, { "Name": "IF you leave me", "AlbumName": "Face the Sun", "AlbumArtistNames": [ "SEVENTEEN" ], "ArtistNames": [ "SEVENTEEN" ] }, { "Name": "3D", "AlbumName": "3D", "AlbumArtistNames": [ "Jung Kook" ], "ArtistNames": [ "Jung Kook", "Jack Harlow" ] }, { "Name": "ONE SPARK", "AlbumName": "With YOU\u2010th", "AlbumArtistNames": [ "TWICE" ], "ArtistNames": [ "TWICE" ] }, { "Name": "Bam Yang Gang", "AlbumName": "Bam Yang Gang", "AlbumArtistNames": [ "BIBI" ], "ArtistNames": [ "BIBI" ] }, { "Name": "Wife", "AlbumName": "2", "AlbumArtistNames": [ "(G)I\u2010DLE" ], "ArtistNames": [ "(G)I\u2010DLE" ] }, "Name": "I GOT YOU", "AlbumName": "I GOT YOU", "AlbumArtistNames": [ "TWICE" ], "ArtistNames": [ "TWICE" ] }, { "Name": "I GOT YOU (instrumental)", "AlbumName": "I GOT YOU", "AlbumArtistNames": [ "TWICE" ], "ArtistNames": [ "TWICE" ] }, "Name": "I GOT YOU", "AlbumName": "With YOU\u2010th", "AlbumArtistNames": [ "TWICE" ], "ArtistNames": [ "TWICE" ] }, { "Name": "Street Star", "AlbumName": "Killin\u0027 It", "AlbumArtistNames": [ "P1Harmony" ], "ArtistNames": [ "P1Harmony" ] }, { "Name": "Emergency", "AlbumName": "Killin\u0027 It", "AlbumArtistNames": [ "P1Harmony" ], "ArtistNames": [ "P1Harmony" ] }, { "Name": "Late Night Calls", "AlbumName": "Killin\u0027 It", "AlbumArtistNames": [ "P1Harmony" ], "ArtistNames": [ "P1Harmony" ] }, { "Name": "Love Story", "AlbumName": "Killin\u0027 It", "AlbumArtistNames": [ "P1Harmony" ], "ArtistNames": [ "P1Harmony" ] }, { "Name": "Countdown To Love", "AlbumName": "Killin\u0027 It", "AlbumArtistNames": [ "P1Harmony" ], "ArtistNames": [ "P1Harmony" ] }, { "Name": "Killin\u2019 It", "AlbumName": "Killin\u0027 It", "AlbumArtistNames": [ "P1Harmony" ], "ArtistNames": [ "P1Harmony" ] }, { "Name": "plot twist", "AlbumName": "Sparkling Blue", "AlbumArtistNames": [ "TWS" ], "ArtistNames": [ "TWS" ] }, { "Name": "Super Lady", "AlbumName": "2", "AlbumArtistNames": [ "(G)I\u2010DLE" ], "ArtistNames": [ "(G)I\u2010DLE" ] }, { "Name": "MANIAC", "AlbumName": "VERSUS", "AlbumArtistNames": [ "VIVIZ" ], "ArtistNames": [ "VIVIZ" ] }, { "Name": "Stuck in the Middle", "AlbumName": "Stuck in the Middle", "AlbumArtistNames": [ "BABYMONSTER" ], "ArtistNames": [ "BABYMONSTER" ] }, { "Name": "Running in the sky (Drama Ver.)", "AlbumName": "Hospital Playlist Season2 (Original Television Soundtrack)", "AlbumArtistNames": [ "Various Artists" ], "ArtistNames": [ "Mido and Falasol" ] }, { "Name": "Drama", "AlbumName": "Drama", "AlbumArtistNames": [ "aespa" ], "ArtistNames": [ "aespa" ] }, { "Name": "Me Against The World [Feat. Dramacydal]", "AlbumName": "Bad Boys", "AlbumArtistNames": [ "Original Soundtrack" ], "ArtistNames": [ "2Pac" ] }, { "Name": "Perfect Night", "AlbumName": "Perfect Night", "AlbumArtistNames": [ "LE SSERAFIM" ], "ArtistNames": [ "LE SSERAFIM" ] }, { "Name": "Driving Slowly", "AlbumName": "TAKE OFF", "AlbumArtistNames": [ "iKON" ], "ArtistNames": [ "iKON" ] }, { "Name": "BATTER UP", "AlbumName": "BATTER UP", "AlbumArtistNames": [ "BABYMONSTER" ], "ArtistNames": [ "BABYMONSTER" ] }, { "Name": "UNTOUCHABLE", "AlbumName": "BORN TO BE", "AlbumArtistNames": [ "ITZY" ], "ArtistNames": [ "ITZY" ] }, { "Name": "no more words", "AlbumName": "I am...", "AlbumArtistNames": [ "\u6D5C\u5D0E\u3042\u3086\u307F" ], "ArtistNames": [ "\u6D5C\u5D0E\u3042\u3086\u307F" ] }, { "Name": "UP NO MORE", "AlbumName": "Eyes Wide Open", "AlbumArtistNames": [ "TWICE" ], "ArtistNames": [ "TWICE" ] }, { "Name": "NO MORE (MA BOY)", "AlbumName": "No More (Ma Boy)", "AlbumArtistNames": [ "SISTAR19" ], "ArtistNames": [ "Sistar19" ] }, { "Name": "SAUCY", "AlbumName": "No More (Ma Boy)", "AlbumArtistNames": [ "SISTAR19" ], "ArtistNames": [ "Sistar19" ] }, { "Name": "Dance All Night", "AlbumName": "Clubland Eurodance", "AlbumArtistNames": [ "Various Artists" ], "ArtistNames": [ "Jessica Wright" ] }, { "Name": "All Night Long", "AlbumName": "Sorry for Party Rocking [Deluxe Edition]", "AlbumArtistNames": [ "LMFAO" ], "ArtistNames": [ "LMFAO" ] }, { "Name": "All Night", "AlbumName": "All Night", "AlbumArtistNames": [ "IVE" ], "ArtistNames": [ "IVE" ] }, { "Name": "All Night", "AlbumName": "I feel", "AlbumArtistNames": [ "(G)I\u2010DLE" ], "ArtistNames": [ "(G)I\u2010DLE" ] }, { "Name": "All Night Long", "AlbumName": "Only Trust Your Heart", "AlbumArtistNames": [ "Diana Krall" ], "ArtistNames": [ "Diana Krall" ] }, { "Name": "Dance All Night", "AlbumName": "Clubland Eurodance", "AlbumArtistNames": [ "Various Artists" ], "ArtistNames": [ "Jessica Wright" ] }, { "Name": "Baddie", "AlbumName": "I\u2019VE MINE", "AlbumArtistNames": [ "IVE" ], "ArtistNames": [ "IVE" ] }, { "Name": "You \u0026 Me (Coachella ver.)", "AlbumName": "You \u0026 Me", "AlbumArtistNames": [ "JENNIE" ], "ArtistNames": [ "JENNIE" ] }, { "Name": "Super Lady", "AlbumName": "2", "AlbumArtistNames": [ "(G)I\u2010DLE" ], "ArtistNames": [ "(G)I\u2010DLE" ] }, { "Name": "Superwoman", "AlbumName": "\u683C\u683CBlue", "AlbumArtistNames": [ "\u66F9\u683C" ], "ArtistNames": [ "\u66F9\u683C" ] }, { "Name": "\u638C\u7EB9", "AlbumName": "Supermarket", "AlbumArtistNames": [ "\u66F9\u683C" ], "ArtistNames": [ "\u66F9\u683C" ] }, { "Name": "Super Star", "AlbumName": "2006\u79FB\u52A8\u57CE\u5821\u6F14\u5531\u4F1A", "AlbumArtistNames": [ "S.H.E" ], "ArtistNames": [ "S.H.E" ] } ]

Viperinius commented 6 months ago

Thanks for the metadata, I think I found the cause (I missed two cases in the new matching implementation).

Before creating a new full release I would ask you to check out the new dev version 1.6.0.2 (same temporary repo as 1.6.0.1).

Based on your dumped data, the playlist looks like this when I use this new version: image (Using Ignore Case + Punctuation + Parentheses Content and the criteria as noted in the screenshot)

bfg100k commented 6 months ago

Thanks for looking into this. The latest version works better but is still missing a few songs. It found 30 and missed 4 as documented below. 2 of them because of artist name (same artist), 1 due to song name - the match is actually in parentheses which is ignored :(. Last one not sure why its not matching since song and artist are exactly the same?

Song "Wife" by artist "(G)I-DLE" in album "Wife" Log output - [2024-03-04 09:51:20.512 +11:00] [INF] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Wife" ["Wife"]["(G)I-DLE"]["(G)I-DLE"] [2024-03-04 09:51:20.572 +11:00] [DBG] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Did not find any artists for the name "(G)I-DLE" [2024-03-04 09:51:20.573 +11:00] [INF] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Reached end of artist list [2024-03-04 09:51:20.573 +11:00] [INF] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Wife" ["Wife"]["(G)I-DLE"]

Son info in Jellyfin Database { "Name": "Wife", "AlbumName": "Wife", "AlbumArtistNames": [ "(G)I\u2010DLE" ], "ArtistNames": [ "(G)I\u2010DLE" ] },

Song "Super Lady" by artist "(G)I-DLE" in album "2" Log output - [2024-03-04 09:51:20.951 +11:00] [INF] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Super Lady" ["2"]["(G)I-DLE"]["(G)I-DLE"] [2024-03-04 09:51:21.010 +11:00] [DBG] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Did not find any artists for the name "(G)I-DLE" [2024-03-04 09:51:21.010 +11:00] [INF] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Reached end of artist list [2024-03-04 09:51:21.010 +11:00] [INF] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: Artists did not match for track "Super Lady" ["2"]["(G)I-DLE"]

Son info in Jellyfin Database { "Name": "Super Lady", "AlbumName": "2", "AlbumArtistNames": [ "(G)I\u2010DLE" ], "ArtistNames": [ "(G)I\u2010DLE" ] }, Song "LALALALA" by artist "Stray Kids" in album "ROCK-STAR" Log output - [2024-03-04 09:51:22.019 +11:00] [INF] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "LALALALA" ["ROCK-STAR"]["Stray Kids"]["Stray Kids"] [2024-03-04 09:51:22.080 +11:00] [DBG] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Found matching artist "Stray Kids" [2024-03-04 09:51:22.081 +11:00] [DBG] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Found matching album "樂-STAR" [2024-03-04 09:51:22.081 +11:00] [DBG] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Album artists ok [2024-03-04 09:51:22.082 +11:00] [DBG] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: >> Checking server track "MEGAVERSE" ["樂-STAR"]["Stray Kids"]["Stray Kids"] [2024-03-04 09:51:22.083 +11:00] [DBG] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: >> Checking server track "락 (樂) (LALALALA)" ["樂-STAR"]["Stray Kids"]["Stray Kids"] [2024-03-04 09:51:22.083 +11:00] [DBG] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: >> Checking server track "사각지대 (BLIND SPOT)" ["樂-STAR"]["Stray Kids"]["Stray Kids"] [2024-03-04 09:51:22.083 +11:00] [DBG] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: >> Checking server track "COMFLEX" ["樂-STAR"]["Stray Kids"]["Stray Kids"] [2024-03-04 09:51:22.083 +11:00] [DBG] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: >> Checking server track "가려줘 (Cover Me)" ["樂-STAR"]["Stray Kids"]["Stray Kids"] [2024-03-04 09:51:22.083 +11:00] [DBG] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: >> Checking server track "Leave" ["樂-STAR"]["Stray Kids"]["Stray Kids"] [2024-03-04 09:51:22.083 +11:00] [DBG] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: >> Checking server track "SOCIAL PATH (Korean ver.)" ["樂-STAR"]["Stray Kids"]["Stray Kids"] [2024-03-04 09:51:22.083 +11:00] [DBG] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: >> Checking server track "락 (樂) (LALALALA) (Rock ver.)" ["樂-STAR"]["Stray Kids"]["Stray Kids"] [2024-03-04 09:51:22.084 +11:00] [INF] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Reached end of album list [2024-03-04 09:51:22.084 +11:00] [INF] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Reached end of artist list [2024-03-04 09:51:22.084 +11:00] [INF] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: TrackName, AlbumName, Artists did not match for track "LALALALA" ["ROCK-STAR"]["Stray Kids"]

Son info in Jellyfin Database { "Name": "\uB77D (\u6A02) (LALALALA)", "AlbumName": "\u6A02-STAR", "AlbumArtistNames": [ "Stray Kids" ], "ArtistNames": [ "Stray Kids" ] },

Song "Super" by artist "SEVENTEEN" in album "FML" Log output - [2024-03-04 09:51:22.281 +11:00] [INF] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Super" ["SEVENTEEN 10th Mini Album 'FML'"]["SEVENTEEN"]["SEVENTEEN"] [2024-03-04 09:51:22.341 +11:00] [DBG] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Found matching artist "SEVENTEEN" [2024-03-04 09:51:22.341 +11:00] [INF] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Reached end of album list [2024-03-04 09:51:22.341 +11:00] [INF] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Reached end of artist list [2024-03-04 09:51:22.341 +11:00] [INF] [22] Viperinius.Plugin.SpotifyImport.PlaylistSync: AlbumName, Artists did not match for track "Super" ["SEVENTEEN 10th Mini Album 'FML'"]["SEVENTEEN"]

Son info in Jellyfin Database { "Name": "Super", "AlbumName": "FML", "AlbumArtistNames": [ "SEVENTEEN" ], "ArtistNames": [ "SEVENTEEN" ] },

Viperinius commented 6 months ago
The behaviour with (G)I-DLE is actually "correct": The Jellyfin artist and Spotify artist have "different" names (the - is a different character): name name in hex form
Spotify (G)I-DLE 28 47 29 49 2D 44 4C 45
Jellyfin (G)I‐DLE 28 47 29 49 2010 44 4C 45

This can also be seen in the json snippet you provided ("(G)I\u2010DLE"). I'm not sure how (or if) the plugin should try to detect and ignore such "confusable characters".

LALALALA -> 락 (樂) (LALALALA) is a situation that I would consider working as intended. Sure, with a check "if the Spotify name is contained within the other name" this would pass, but would introduce a lot of room for false positive matches in general. If you have a suggestion how else to deal with this case without broadening the accepted names too much, please don't hold back :D

Was the last track Super done with album matching turned on? Because based on the json info of that song it does successfully get added for me when I disable album matching.

bfg100k commented 6 months ago

For (1), looks like Spotify uses ASCII and Jellyfin UNICODE. Perhaps you can use System.Uri.UnescapeDataString(string) or System.Net.WebUtility.HtmlDecode(string) to convert the search result from Jellyfin before comparing with Spotify?

For (2), it is quite common for foreign songs to have both native and english titles (one in parenthesis) so not addressing it will result in many missed songs. To reduce false positives, perhaps the logic is to treat the words in parenthesis as a separate title match? e.g. if a song has a title containing parenthesis, first match against the part without. If no match, then try matching just the words in parenthesis.

For (3), I have album matching turned off so not sure what is going on there.

Viperinius commented 6 months ago

For (1): Jellyfin just uses what it gets handed as metadata, so the different hyphen character (codepoint) comes from wherever your server got the name from (mp3 file metadata, MusicBrainz etc). Sadly, a simple decoding won't really do here as the two hyphens are basically two completely different characters (there are even more possible variants...).

For (2): Nice idea, I will check something like that out.

For (3): Hm... As a reference, this is what the logs look like when I try the track:

[INF] [16] Viperinius.Plugin.SpotifyImport.PlaylistSync: Now processing provider track "Super" ["SEVENTEEN 10th Mini Album 'FML'"]["SEVENTEEN"]["SEVENTEEN"]
[DBG] [16] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Found matching artist "SEVENTEEN"
[DBG] [16] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Found matching album "Face the Sun"
[DBG] [16] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Album artists ok
[DBG] [16] Viperinius.Plugin.SpotifyImport.PlaylistSync: >> Checking server track "IF you leave me" ["Face the Sun"]["SEVENTEEN"]["SEVENTEEN"]
[DBG] [16] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Found matching album "SEVENTEENTH HEAVEN"
[DBG] [16] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Album artists ok
[DBG] [16] Viperinius.Plugin.SpotifyImport.PlaylistSync: >> Checking server track "음악의 신" ["SEVENTEENTH HEAVEN"]["SEVENTEEN"]["SEVENTEEN"]
[DBG] [16] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Found matching album "FML"
[DBG] [16] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Album artists ok
[DBG] [16] Viperinius.Plugin.SpotifyImport.PlaylistSync: >> Checking server track "Super" ["FML"]["SEVENTEEN"]["SEVENTEEN"]
[DBG] [16] Viperinius.Plugin.SpotifyImport.PlaylistSync: > Found matching track "Super"

But I suspect some weird internal Jellyfin behaviour here because I observed something similar after manually editing the name of one artist (when playing around with the case for (G)I-DLE), where no albums for this artist were found afterwards (as Jellyfin created a second "invisible / unsearchable" artist). To confirm, could you try out 1.6.0.3 where I added a fallback mechanism?

bfg100k commented 6 months ago

Just tried the v1.6.03 and it picked up the last track "super"

Viperinius commented 6 months ago

Nice! Regarding the parentheses matching: I added your suggestion of treating each parentheses content as another candidate to match against. This change (together with those of the previous test versions) is now published in version 1.7.0.0

bfg100k commented 6 months ago

Awesome! Happy to report that all the issues above appears to be fixed in this release!