[solved] When playing music Fanart does not appear immediately after downloading (1 Viewer)

horned_reaper

Test Group
  • Team MediaPortal
  • January 7, 2011
    1,233
    461
    Munich
    Home Country
    Germany Germany
    Hmm, with your recent optimisations, have you changed anything in regards to the separators? The new option for the "and" separator doesn't work anymore:
    Code:
      <section name="Advanced">
        <entry name="SkipFeatArtist">no</entry>
        <entry name="DontSplitArtistByAnd">yes</entry>
      </section>
      <section name="Separators">
        <entry name="sep0"> feat </entry>
        <entry name="sep1"> feat. </entry>
        <entry name="sep2"> featuring </entry>
        <entry name="sep3"> pres </entry>
        <entry name="sep4"> pres. </entry>
        <entry name="sep5"> presents </entry>
        <entry name="sep6"> vs </entry>
        <entry name="sep7"> vs. </entry>
        <entry name="sep8"> versus </entry>
      </section>
    1590775609080.png

    Before, only Fanarts for "Marina And The Diamonds" were downloaded, now I have the "Marina" Fanarts again.
    Probably there's also a relation to the "Yanou pres. Do" issue.
     
    Last edited:

    horned_reaper

    Test Group
  • Team MediaPortal
  • January 7, 2011
    1,233
    461
    Munich
    Home Country
    Germany Germany
    I've found the problem cause.
    On the Fanart search for the artist "Yanou pres. Do" the MBID of the artist "Do" is returned: 16907f68-6858-4d64-8ab7-d33495e4e1a5. To this MBID one image is found and stored as "Yanou pres. Do (0).jpg":
    Code:
    y-2020 20:43:38 Debug [             Scraper]: Trying to find Fanart for Artist: Yanou pres. Do
    29-May-2020 20:43:38 Debug [             Scraper]: MusicBrainz: Trying to find MusicBrainz ID for Artist: Yanou pres. Do.
    29-May-2020 20:43:38 Debug [             Scraper]: MusicBrainz: Extract ID: 16907f68-6858-4d64-8ab7-d33495e4e1a5
    29-May-2020 20:43:38 Debug [             Scraper]: Fanart.TV: Use personal API Key: True
    29-May-2020 20:43:38 Debug [             Scraper]: Fanart.TV: Trying to find pictures for Artist (Fanart): Yanou pres. Do - 16907f68-6858-4d64-8ab7-d33495e4e1a5.
    29-May-2020 20:43:38 Debug [             Scraper]: Fanart.TV: Empty response HTML ... Skip.
    29-May-2020 20:43:38 Debug [             Scraper]: TheAudioDB: Trying to find pictures for Artist (Fanart): Yanou pres. Do - 16907f68-6858-4d64-8ab7-d33495e4e1a5.
    29-May-2020 20:43:39 Debug [             Scraper]: TheAudioDB: Extract URL - URLs Found: 1
    29-May-2020 20:43:39  Info [             Scraper]: Download: Fanart for Yanou pres. Do (C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\Skin FanArt\Scraper\Music\Yanou pres. Do (0).jpg).
    29-May-2020 20:43:39 Debug [             Scraper]: Download: Image: C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\Skin FanArt\Scraper\Music\Yanou pres. Do (0).jpg: Start...
    29-May-2020 20:43:39 Debug [             Scraper]: Download: Image for Yanou pres. Do (C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\Skin FanArt\Scraper\Music\Yanou pres. Do (0).jpg): Complete.
    29-May-2020 20:43:39  Info [     DatabaseManager]: Importing fanart into FanartHandler database (C:\ProgramData\Team MediaPortal\MediaPortal\Thumbs\Skin FanArt\Scraper\Music\Yanou pres. Do (0).jpg).

    "Do" has an alias for "Yanou pres. Do" but the official name to this artist is "Do":
    Code:
    http://musicbrainz.org/ws/2/artist/?query=artist:"Yanou pres. Do" OR alias:"Yanou pres. Do"
    1590780699833.png

    The intention of separators is to handle mixed artists separately but FH still searches for the mixed artist name:
    29-May-2020 20:43:38 Debug [ Scraper]: Trying to find Fanart for Artist: Yanou pres. Do
    29-May-2020 20:43:40 Debug [ Scraper]: Trying to find Fanart for Artist: Yanou
    29-May-2020 20:43:41 Debug [ Scraper]: Trying to find Fanart for Artist: Do

    This leads to duplicate Fanarts and wrong Fanart file names e. g. "Yanou pres. Do (0).jpg"

    Could you please remove the mixed artist name search?
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    15,492
    10,371
    Kyiv
    Home Country
    Ukraine Ukraine
    No its impossible, this correct ...

    --
    WBR, ajs :):whistle::coffee:
     

    horned_reaper

    Test Group
  • Team MediaPortal
  • January 7, 2011
    1,233
    461
    Munich
    Home Country
    Germany Germany
    If you want to keep all three searches, we can solve this issue by adjusting the order, to search granular first then common:
    29-May-2020 20:43:40 Debug [ Scraper]: Trying to find Fanart for Artist: Yanou
    29-May-2020 20:43:41 Debug [ Scraper]: Trying to find Fanart for Artist: Do
    29-May-2020 20:43:38 Debug [ Scraper]: Trying to find Fanart for Artist: Yanou pres. Do

    With this search order, if the single artist searches return MBIDs, the false "Yanou pres. Do (0).jpg" is not stored but "Do (0).jpg"
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    15,492
    10,371
    Kyiv
    Home Country
    Ukraine Ukraine
    No matter what order, the procedure for finding one will work the same as before, only downloading pictures will be the other way around.

    --
    WBR, ajs :):whistle::coffee:
     

    horned_reaper

    Test Group
  • Team MediaPortal
  • January 7, 2011
    1,233
    461
    Munich
    Home Country
    Germany Germany
    I found out that if the MBID of the artist "Do" already exists in the database e. g. by a dummy item, the Fanart is stored correctly, "Do (0).jpg" instead of "Yanou pres. Do (0).jpg". We can achieve this by adjusting the search order. Do you have any concerns on this approach?
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    15,492
    10,371
    Kyiv
    Home Country
    Ukraine Ukraine
    The search order does not affect the search id and receiving and saving images does not affect.

    --
    WBR, ajs :):whistle::coffee:
     

    ajs

    Development Group
  • Team MediaPortal
  • February 29, 2008
    15,492
    10,371
    Kyiv
    Home Country
    Ukraine Ukraine
    And I can not change the order of the search. I don’t even know how many options there are, but the order doesn’t affect anything.

    --
    WBR, ajs :):whistle::coffee:
     

    Users who are viewing this thread

    Top Bottom