[SOLVED] Cannot convert mixtape/street tag to Mixtape

F

frustromike

Guest
As the title states, I am trying to organize my folder structure with Singles, EPs, Albums, Mixtapes, and etc.

Currently using this code:

Code:
$if2(%_artists_album_primary_cred%,%artist%)
/
$if($eq(%releasetype%,album), Albums/,
  $if($eq(%releasetype%,single), Singles/,
    $if($eq(%releasetype%,ep), EPs/,
      $if($eq(%releasetype%,broadcast), FM/,
        $if($eq(%releasetype%,other), Other/,
          $if($inmulti(%releasetype%,dj-mix), DJ Mix/,
            $if($inmulti(%releasetype%,remix), Remix/,
              $if($inmulti(%releasetype%,soundtrack), OST/,
                $if($inmulti(%releasetype%,live), Live/,
                  $if($inmulti(%releasetype%,mixtape/street), Mixtape/,
                    $if($inmulti(%releasetype%,compilation), Compilation/,)
                  )
                )
              )
            )
          )
        )
      )
    )
  )
)
$if($if2(%_date%,%originalyear%,%originaldate%),[$left($if2(%_date%,%originalyear%,%originaldate%),4)] ,)
$if(%albumartist%,%album%,)
/
$if2(%_artists_album_primary_cred%,%artist%) - 
$if($if2(%_date%,%originalyear%,%originaldate%),[$left($if2(%_date%,%originalyear%,%originaldate%),4)] $if(%albumartist%,%album%,) - ,)
$if($gt(%totaldiscs%,1),%discnumber%,)
$if($and(%albumartist%,%tracknumber%),$num(%tracknumber%,2) - ,)
$if($if2(%_albumartists%,%artist%,) - ,)%_titleForFilename%

However this particular line $if($inmulti(%releasetype%,mixtape/street), Mixtape/, is not recognized at all. All the other tags work in the script and recognizes singles, albums, OSTs.

I have no idea why it’s working. Any help would be much appreciated.

3 posts - 2 participants

Read full topic

Continue reading...
 
Top