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
31 lines
1.0 KiB
Python
31 lines
1.0 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
PLUGIN_NAME = 'Bonus Disc'
|
|
PLUGIN_AUTHOR = 'Jan van Thiel'
|
|
PLUGIN_DESCRIPTION = '''Based on a script by Lukas Lalinsky.<br/>
|
|
<br/>
|
|
Moves bonus disc and bonus disc titles from album titles to separate tags. For example:<br/>
|
|
<em>"Sleeping With Ghosts (bonus disc: Covers)"</em>
|
|
<ul>
|
|
<li>album = <em>"Sleeping With Ghosts"</em></li>
|
|
<li>bonusdisc = <em>"bonus"</em></li>
|
|
<li>bonusdisctitle = <em>"Covers"</em></li>
|
|
</ul>'''
|
|
PLUGIN_VERSION = "0.1"
|
|
PLUGIN_API_VERSIONS = ["0.9.0", "0.10", "0.15"]
|
|
|
|
from picard.metadata import register_album_metadata_processor
|
|
import re
|
|
|
|
_bonusdisc_re = re.compile(r"\s+\(bonus disc(?::\s+([^)]+))?\)")
|
|
|
|
def remove_bonusdiscs(tagger, metadata, release):
|
|
matches = _bonusdisc_re.search(metadata["album"])
|
|
if matches:
|
|
metadata["bonusdisc"] = "bonus"
|
|
if matches.group(1):
|
|
metadata["bonusdisctitle"] = matches.group(1)
|
|
metadata["album"] = _bonusdisc_re.sub('', metadata["album"])
|
|
|
|
register_album_metadata_processor(remove_bonusdiscs)
|