MusicBee Wiki
Advertisement

Authors: Antonski, crvnts, ssri

Here are links to web sites that can be configured in Internet Preferences as web links.


That's what I've found so far:

{{#NewWindowLink:http://www.bnrmetal.com/v2/search.php?name=<Artist>}} (separator: +)

{{#NewWindowLink:http://www.metal-archives.com/search.php?type=band&string=<Artist>}} (separator: +)

{{#NewWindowLink:http://allmusic.com//cg/amg.dll?P=amg&optl=1&sql=1:<Artist>}} (separator: + or _)


Some others


FLICKR

{{#NewWindowLink:http://www.flickr.com/search/show/?q=<Artist>}}

This layout shows a slideshow of pictures of the artist of Flickr, You can add words, for example:

{{#NewWindowLink:http://www.flickr.com/search/show/?q=<Artist> vinyl}}

usually only shows vinyls, covers, rare editions, etc... or

{{#NewWindowLink:http://www.flickr.com/search/show/?q=<Artist> concert}}

usually shows photos from concerts of the artist.

RATE YOUR MUSIC

http://rateyourmusic.com/release/album/$lower($replace($replace($replace(<Artist>"/"<Album>," ",_),"'",),",",_))


SPOTIFY

There is a Spotify Web searcher called heldroe.net. You can add a Web Link Layout on the right panel.

{{#NewWindowLink:http://heldroe.net/spotify/?q=<Artist>}}

a new tab with the results of spotify will appears. Then you need to click on any result with the right button and click "Open with default browser", that opens spotify directly to the artist, album or song you clicked. And, of course, you can put another Layout for songs, you need to create another with:

{{#NewWindowLink:http://heldroe.net/spotify/?q=<Title>}}

You can name it "Find this song on Spotify" Thats is useful to find on Spotify versions from other artist of the song you are playing!


YAHOO MUSIC

Other layout you can add:

{{#NewWindowLink:http://new.music.yahoo.com/<Artist>/}}

Shows the yahoo music web for the artist. Links to Lastfm radio, itunes albums, amazon albums, youtube videos, flickr photos, profile, albums, lyrics, concerts, Pandora artist radio, news...


ADVANCED USAGE

Sometimes other taggers like MP3Tag and Musicbrainz Picard fill tags with non-standard fields. Some of the these fields include Catalog numbers or unique identifiers for databases like discogs or Musicbrainz. Far more accurate queries can be attained by using these tags together with Musicbee's custom tag feature. The following formulas can be entered as a web-link in MusicBee. Essentially, they instruct Musicbee to use the unique tags first or, if they are not found, to use more standard tags.

DISCOGS

Custom tag field (from MP3tag's discogs.src)*: DISCOGS_RELEASE_ID

<Album> search formula:

$IsNull(<DISCOGS_RELEASE_ID>,https://www.discogs.com/search/?q=<Album>&btn=&type=release,https://www.discogs.com/release/<DISCOGS_RELEASE_ID>)

MUSICBRAINZ

Musicbrainz Picard's tag documentation: https://picard.musicbrainz.org/docs/tags/

Custom tag field: MUSICBRAINZ_ALBUMID

<Artist> search formula:

$IsNull(<MUSICBRAINZ_ALBUMID>,http://musicbrainz.org/search/textsearch.html?query=<Artist>&type=artist&an=1&as=1,http://musicbrainz.org/release/<MUSICBRAINZ_ALBUMID>)

<Album> search formula:

$IsNull(<MUSICBRAINZ_ALBUMID>,http://musicbrainz.org/search/textsearch.html?type=release&query=<Album>,http://musicbrainz.org/release/<MUSICBRAINZ_ALBUMID>)

VIDEOGAME MUSIC DATABASE (VGMdb)

Custom tag field: catalognumber (Musicbrainz Picard); catalogno (MP3Tag's discog script)*

<Album> search formula:

$IsNull(<catalognumber>,http://vgmdb.net/search?q=<Album>,http://vgmdb.net/search?q=<catalognumber>)

*Note: MP3Tag's discog script (SRC file) can be edited to conform to other taggers like Musicbrainz Picard. Discog.src is typically located at C:\Users\<Username>\AppData\Roaming\Mp3tag\data\sources. Open discog.src with your favorite text editor, search and change the "outputto" value to one that conforms to other taggers.

For example (to match Musicbrainz Picard's tags):

  1. Catalog Number
    outputto "CATALOGNO"
    json_select_many "labels" "catno" ", "
    sayrest

to

  1. Catalog Number
    outputto "CATALOGNUMBER"
    json_select_many "labels" "catno" ", "
    sayrest
Advertisement