mirror of
https://github.com/beetbox/beets.git
synced 2026-01-03 22:42:44 +01:00
Minor layout fixes to documentation
This commit is contained in:
parent
5e4c41ffe8
commit
17b38a6be8
1 changed files with 7 additions and 6 deletions
|
|
@ -216,15 +216,16 @@ The events currently available are:
|
|||
|
||||
* *trackinfo_received*: called after meta data for a track item has been fetched
|
||||
from disparate sources, such as MusicBrainz. Gives a developer the option to
|
||||
intercept the fetched TrackInfo object. Can be used to modify tags on a ``beet
|
||||
import`` operation or during later adjustments, such as ``mbsync``. Slow
|
||||
handlers of the event can impact the operation, since the event is fired for
|
||||
any fetched possible match *before* user or autotagger selection was made.
|
||||
intercept the fetched ``TrackInfo`` object. Can be used to modify tags on a
|
||||
``beet import`` operation or during later adjustments, such as ``mbsync``.
|
||||
Slow handlers of the event can impact the operation, since the event is fired
|
||||
for any fetched possible match *before* user or autotagger selection was made.
|
||||
Parameter: ``info``.
|
||||
|
||||
* *albuminfo_received*: Like *trackinfo_received*, the event indicates new meta
|
||||
data for album items, but supplies an *AlbumInfo* object instead of a
|
||||
*TrackInfo*.
|
||||
data for album items, but supplies an ``AlbumInfo`` object instead of a
|
||||
``TrackInfo``.
|
||||
Parameter: ``info``.
|
||||
|
||||
The included ``mpdupdate`` plugin provides an example use case for event listeners.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue