|
|
|
@ -15,7 +15,7 @@ namespace MediaBrowser.Providers.Music
|
|
|
|
|
public string Key => MetadataProviders.MusicBrainzReleaseGroup.ToString();
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public ExternalIdMediaType Type => ExternalIdMediaType.ReleaseGroup;
|
|
|
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.ReleaseGroup;
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public string UrlFormatString => Plugin.Instance.Configuration.Server + "/release-group/{0}";
|
|
|
|
@ -33,7 +33,7 @@ namespace MediaBrowser.Providers.Music
|
|
|
|
|
public string Key => MetadataProviders.MusicBrainzAlbumArtist.ToString();
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public ExternalIdMediaType Type => ExternalIdMediaType.AlbumArtist;
|
|
|
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.AlbumArtist;
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public string UrlFormatString => Plugin.Instance.Configuration.Server + "/artist/{0}";
|
|
|
|
@ -51,7 +51,7 @@ namespace MediaBrowser.Providers.Music
|
|
|
|
|
public string Key => MetadataProviders.MusicBrainzAlbum.ToString();
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public ExternalIdMediaType Type => ExternalIdMediaType.Album;
|
|
|
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.Album;
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public string UrlFormatString => Plugin.Instance.Configuration.Server + "/release/{0}";
|
|
|
|
@ -69,7 +69,7 @@ namespace MediaBrowser.Providers.Music
|
|
|
|
|
public string Key => MetadataProviders.MusicBrainzArtist.ToString();
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public ExternalIdMediaType Type => ExternalIdMediaType.Artist;
|
|
|
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.Artist;
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public string UrlFormatString => Plugin.Instance.Configuration.Server + "/artist/{0}";
|
|
|
|
@ -88,7 +88,7 @@ namespace MediaBrowser.Providers.Music
|
|
|
|
|
public string Key => MetadataProviders.MusicBrainzArtist.ToString();
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public ExternalIdMediaType Type => ExternalIdMediaType.OtherArtist;
|
|
|
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.OtherArtist;
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public string UrlFormatString => Plugin.Instance.Configuration.Server + "/artist/{0}";
|
|
|
|
@ -106,7 +106,7 @@ namespace MediaBrowser.Providers.Music
|
|
|
|
|
public string Key => MetadataProviders.MusicBrainzTrack.ToString();
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public ExternalIdMediaType Type => ExternalIdMediaType.Track;
|
|
|
|
|
public ExternalIdMediaType? Type => ExternalIdMediaType.Track;
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public string UrlFormatString => Plugin.Instance.Configuration.Server + "/track/{0}";
|
|
|
|
|