forked from pool/picard
6beefab6df
- Update name of dlopen libdiscid object during build - Update additional python plugins to report compatibility for 0.15 - Run dos2unix on additional python plugins - Update to version 0.15 - 2011-07-17 - Added options for using standardized track, release, and artist metadata. - Added preferred release format support. - Expanded preferred release country support to allow multiple countries. - Added support for tagging non-album tracks (standalone recordings). - Plugins can now be installed via drag and drop, or a file browser. - Added several new tags: %%_originaldate%%, %%_recordingcomment%%, and %%_releasecomment%% - Changes to request queuing: added separate high and low priority queues for each host. - Tagger scripts now run after metadata plugins finish (#5850) - The "compilation" tag can now be $unset or modified via tagger script. - Added a shortcut (Ctrl+I) for Edit->Details. - Miscellaneous bug fixes. - Support for the NGS web service Version 0.14 - 2011-05-15 - Fixed a problem with network operations hanging after a network error (#5794, #5884) - ID3v2.3 with UTF-16 is now the default ID3 version - Option to set preferred release types for improved album matching - Added support for sorting the album/file lists (#75) - Fixed OptimFROG tag reading (#5859) - Fixed colors for a white-on-black color scheme (#5846) - Added an option to replace non-ASCII punctuation (#5834) - Support for writing release group and work IDs, currently unused (#5805) - Fixed saving of the release event format tag (#5250) OBS-URL: https://build.opensuse.org/request/show/76928 OBS-URL: https://build.opensuse.org/package/show/multimedia:apps/picard?expand=0&rev=14
45 lines
1.6 KiB
Python
45 lines
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
PLUGIN_NAME = u"Search AMG"
|
|
PLUGIN_AUTHOR = u"Brian Schweitzer"
|
|
PLUGIN_DESCRIPTION = "Search AMG"
|
|
PLUGIN_VERSION = "0.1"
|
|
PLUGIN_API_VERSIONS = ["0.9.0", "0.10", "0.15"]
|
|
|
|
from PyQt4 import QtCore
|
|
from picard.cluster import Cluster
|
|
from picard.util import webbrowser2
|
|
from picard.ui.itemviews import BaseAction, register_cluster_action
|
|
from picard.ui.itemviews import BaseAction, register_album_action
|
|
from picard.ui.itemviews import BaseAction, register_file_action
|
|
from picard.metadata import register_track_metadata_processor
|
|
|
|
class SearchAMGR(BaseAction):
|
|
NAME = "Search AMG for Release"
|
|
def callback(self, objs):
|
|
cluster = objs[0]
|
|
url = "http://wc10.allmusic.com/cg/amg.dll?P=amg&opt1=2&sql="
|
|
url += QtCore.QUrl.toPercentEncoding(cluster.metadata["album"])
|
|
webbrowser2.open(url)
|
|
register_cluster_action(SearchAMGR())
|
|
register_album_action(SearchAMGR())
|
|
|
|
class SearchAMGA(BaseAction):
|
|
NAME = "Search AMG for Artist"
|
|
def callback(self, objs):
|
|
cluster = objs[0]
|
|
url = "http://wc09.allmusic.com/cg/amg.dll?P=amg&opt1=1&sql="
|
|
url += QtCore.QUrl.toPercentEncoding(cluster.metadata["artist"])
|
|
webbrowser2.open(url)
|
|
register_cluster_action(SearchAMGA())
|
|
register_album_action(SearchAMGA())
|
|
|
|
class SearchAMGT(BaseAction):
|
|
NAME = "Search AMG for Track"
|
|
def callback(self, objs):
|
|
file = objs[0]
|
|
url = "http://wc10.allmusic.com/cg/amg.dll?P=amg&opt1=3&sql="
|
|
url += QtCore.QUrl.toPercentEncoding(file.metadata["title"])
|
|
webbrowser2.open(url)
|
|
register_file_action(SearchAMGT())
|