Plugins extend beets' core functionality. They add new commands, fetch additional data during import, provide new metadata sources, and much more. If beets by itself doesn't do what you want it to, you may just need to enable a plugin---or, if you want to do something new, :doc:`writing a plugin </dev/plugins/index>` is easy if you know a little Python.
To use one of the plugins included with beets (see the rest of this page for a
list), just use the plugins option in your :doc:`config.yaml
</reference/config>` file:
plugins: musicbrainz inline convert webThe value for plugins can be a space-separated list of plugin names or a
YAML list like [foo, bar]. You can see which plugins are currently enabled
by typing beet version.
Each plugin has its own set of options that can be defined in a section bearing its name:
plugins: musicbrainz inline convert web
convert:
auto: trueSome plugins have special dependencies that you'll need to install. The
documentation page for each plugin will list them in the setup instructions. For
some, you can use pip's "extras" feature to install the dependencies:
pip install "beets[fetchart,lyrics,lastgenre]"We provide several :ref:`autotagger_extensions` that fetch metadata from online databases. They share the following configuration options:
.. toctree::
:hidden:
absubmit
acousticbrainz
advancedrewrite
albumtypes
aura
autobpm
badfiles
bareasc
beatport
bpd
bpm
bpsync
bucket
chroma
convert
deezer
discogs
duplicates
edit
embedart
embyupdate
export
fetchart
filefilter
fish
freedesktop
fromfilename
ftintitle
fuzzy
gmusic
hook
ihate
importadded
importsource
importfeeds
info
inline
ipfs
keyfinder
kodiupdate
lastgenre
lastimport
limit
listenbrainz
loadext
lyrics
mbcollection
mbpseudo
mbsubmit
mbsync
metasync
missing
mpdstats
mpdupdate
musicbrainz
parentwork
permissions
play
playlist
plexupdate
random
replace
replaygain
rewrite
scrub
smartplaylist
sonosupdate
spotify
subsonicplaylist
subsonicupdate
substitute
the
thumbnails
titlecase
types
unimported
web
zero
- :doc:`chroma <chroma>`
- Use acoustic fingerprinting to identify audio files with missing or incorrect metadata.
- :doc:`deezer <deezer>`
- Search for releases in the Deezer database.
- :doc:`discogs <discogs>`
- Search for releases in the Discogs database.
- :doc:`fromfilename <fromfilename>`
- Guess metadata for untagged tracks from their filenames.
- :doc:`musicbrainz <musicbrainz>`
- Search for releases in the MusicBrainz database.
- :doc:`mbpseudo <mbpseudo>`
- Search for releases and pseudo-releases in the MusicBrainz database.
- :doc:`spotify <spotify>`
- Search for releases in the Spotify database.
- :doc:`absubmit <absubmit>`
- Analyse audio with the streaming_extractor_music program and submit the metadata to an AcousticBrainz server
- :doc:`acousticbrainz <acousticbrainz>`
- Fetch various AcousticBrainz metadata
- :doc:`autobpm <autobpm>`
- Use Librosa to calculate the BPM from the audio.
- :doc:`bpm <bpm>`
- Measure tempo using keystrokes.
- :doc:`bpsync <bpsync>`
- Fetch updated metadata from Beatport.
- :doc:`edit <edit>`
- Edit metadata from a text editor.
- :doc:`embedart <embedart>`
- Embed album art images into files' metadata.
- :doc:`fetchart <fetchart>`
- Fetch album cover art from various sources.
- :doc:`ftintitle <ftintitle>`
- Move "featured" artists from the artist field to the title field.
- :doc:`keyfinder <keyfinder>`
- Use the KeyFinder program to detect the musical key from the audio.
- :doc:`importadded <importadded>`
- Use file modification times for guessing the value for the
addedfield in the database. - :doc:`lastgenre <lastgenre>`
- Fetch genres based on Last.fm tags.
- :doc:`lastimport <lastimport>`
- Collect play counts from Last.fm.
- :doc:`lyrics <lyrics>`
- Automatically fetch song lyrics.
- :doc:`mbsync <mbsync>`
- Fetch updated metadata from MusicBrainz.
- :doc:`metasync <metasync>`
- Fetch metadata from local or remote sources
- :doc:`mpdstats <mpdstats>`
- Connect to MPD and update the beets library with play statistics (last_played, play_count, skip_count, rating).
- :doc:`parentwork <parentwork>`
- Fetch work titles and works they are part of.
- :doc:`replaygain <replaygain>`
- Calculate volume normalization for players that support it.
- :doc:`scrub <scrub>`
- Clean extraneous metadata from music files.
- :doc:`zero <zero>`
- Nullify fields by pattern or unconditionally.
- :doc:`albumtypes <albumtypes>`
- Format album type in path formats.
- :doc:`bucket <bucket>`
- Group your files into bucket directories that cover different field values ranges.
- :doc:`inline <inline>`
- Use Python snippets to customize path format strings.
- :doc:`rewrite <rewrite>`
- Substitute values in path formats.
- :doc:`advancedrewrite <advancedrewrite>`
- Substitute field values for items matching a query.
- :doc:`substitute <substitute>`
- As an alternative to :doc:`rewrite <rewrite>`, use this plugin. The main difference between them is that this plugin never modifies the files metadata.
- :doc:`the <the>`
- Move patterns in path formats (i.e., move "a" and "the" to the end).
- :doc:`aura <aura>`
- A server implementation of the AURA specification.
- :doc:`badfiles <badfiles>`
- Check audio file integrity.
- :doc:`embyupdate <embyupdate>`
- Automatically notifies Emby whenever the beets library changes.
- :doc:`fish <fish>`
- Adds Fish shell tab autocompletion to
beetcommands. - :doc:`importfeeds <importfeeds>`
- Keep track of imported files via
.m3uplaylist file(s) or symlinks. - :doc:`ipfs <ipfs>`
- Import libraries from friends and get albums from them via ipfs.
- :doc:`kodiupdate <kodiupdate>`
- Automatically notifies Kodi whenever the beets library changes.
- :doc:`mpdupdate <mpdupdate>`
- Automatically notifies MPD whenever the beets library changes.
- :doc:`play <play>`
- Play beets queries in your music player.
- :doc:`playlist <playlist>`
- Use M3U playlists to query the beets library.
- :doc:`plexupdate <plexupdate>`
- Automatically notifies Plex whenever the beets library changes.
- :doc:`smartplaylist <smartplaylist>`
- Generate smart playlists based on beets queries.
- :doc:`sonosupdate <sonosupdate>`
- Automatically notifies Sonos whenever the beets library changes.
- :doc:`thumbnails <thumbnails>`
- Get thumbnails with the cover art on your album folders.
- :doc:`subsonicupdate <subsonicupdate>`
- Automatically notifies Subsonic whenever the beets library changes.
- :doc:`bareasc <bareasc>`
- Search albums and tracks with bare ASCII string matching.
- :doc:`bpd <bpd>`
- A music player for your beets library that emulates MPD and is compatible with MPD clients.
- :doc:`convert <convert>`
- Transcode music and embed album art while exporting to a different directory.
- :doc:`duplicates <duplicates>`
- List duplicate tracks or albums.
- :doc:`export <export>`
- Export data from queries to a format.
- :doc:`filefilter <filefilter>`
- Automatically skip files during the import process based on regular expressions.
- :doc:`fuzzy <fuzzy>`
- Search albums and tracks with fuzzy string matching.
- :doc:`hook <hook>`
- Run a command when an event is emitted by beets.
- :doc:`ihate <ihate>`
- Automatically skip albums and tracks during the import process.
- :doc:`info <info>`
- Print music files' tags to the console.
- :doc:`loadext <loadext>`
- Load SQLite extensions.
- :doc:`mbcollection <mbcollection>`
- Maintain your MusicBrainz collection list.
- :doc:`mbsubmit <mbsubmit>`
- Print an album's tracks in a MusicBrainz-friendly format.
- :doc:`missing <missing>`
- List missing tracks.
- mstream
- A music streaming server + webapp that can be used alongside beets.
- :doc:`random <random>`
- Randomly choose albums and tracks from your library.
- :doc:`spotify <spotify>`
- Create Spotify playlists from the Beets library.
- :doc:`types <types>`
- Declare types for flexible attributes.
- :doc:`web <web>`
- An experimental Web-based GUI for beets.
In addition to the plugins that come with beets, there are several plugins that are maintained by the beets community. To use an external plugin, there are two options for installation:
- Make sure it's in the Python path (known as
sys.pathto developers). This just means the plugin has to be installed on your system (e.g., with asetup.pyscript or a command likepiporeasy_install). - Set the
pluginpathconfig variable to point to the directory containing the plugin. (See :doc:`/reference/config`.)
Once the plugin is installed, enable it by placing its name on the plugins
line in your config file.
Here are a few of the plugins written by the beets community:
- beets-alternatives
- Manages external files.
- beet-amazon
- Adds Amazon.com as a tagger data source.
- beets-artistcountry
- Fetches the artist's country of origin from MusicBrainz.
- beets-autofix
- Automates repetitive tasks to keep your library in order.
- beets-autogenre
- Assigns genres to your library items using the :doc:`lastgenre <lastgenre>` and beets-xtractor plugins as well as additional rules.
- beets-audible
- Adds Audible as a tagger data source and provides other features for managing audiobook collections.
- beets-barcode
- Lets you scan or enter barcodes for physical media to search for their metadata.
- beetcamp
- Enables bandcamp.com autotagger with a fairly extensive amount of metadata.
- beetstream
- Server implementation of the Subsonic API specification, serving the beets library and (:doc:`smartplaylist <smartplaylist>` plugin generated) M3U playlists, allowing you to stream your music on a multitude of clients.
- beets-bpmanalyser
- Analyses songs and calculates their tempo (BPM).
- beets-check
- Automatically checksums your files to detect corruption.
- A cmus plugin
- Integrates with the cmus console music player.
- beets-copyartifacts
- Helps bring non-music files along during import.
- beets-describe
- Gives you the full picture of a single attribute of your library items.
- drop2beets
- Automatically imports singles as soon as they are dropped in a folder (using
Linux's
inotify). You can also set a sub-folders hierarchy to set flexible attributes by the way. - dsedivec
- Has two plugins:
editandmoveall. - beets-filetote
- Helps bring non-music extra files, attachments, and artifacts during imports
and CLI file manipulation actions (
beet move, etc.). - beets-follow
- Lets you check for new albums from artists you like.
- beetFs
- Is a FUSE filesystem for browsing the music in your beets library. (Might be out of date.)
- beets-goingrunning
- Generates playlists to go with your running sessions.
- beets-ibroadcast
- Uploads tracks to the iBroadcast cloud service.
- beets-id3extract
- Maps arbitrary ID3 tags to beets custom fields.
- beets-importreplace
- Lets you perform regex replacements on incoming metadata.
- beets-jiosaavn
- Adds JioSaavn.com as a tagger data source.
- beets-more
- Finds versions of indexed releases with more tracks, like deluxe and anniversary editions.
- beets-mosaic
- Generates a montage of a mosaic from cover art.
- beets-mpd-utils
- Plugins to interface with MPD. Comes with
mpd_tracker(track play/skip counts from MPD) andmpd_dj(auto-add songs to your queue.) - beets-noimport
- Adds and removes directories from the incremental import skip list.
- beets-originquery
- Augments MusicBrainz queries with locally-sourced data to improve autotagger results.
- beets-plexsync
- Allows you to sync your Plex library with your beets library, create smart playlists in Plex, and import online playlists (from services like Spotify) into Plex.
- beets-setlister
- Generate playlists from the setlists of a given artist.
- beet-summarize
- Can compute lots of counts and statistics about your music library.
- beets-usertag
- Lets you use keywords to tag and organize your music.
- beets-webm3u
- Serves the (:doc:`smartplaylist <smartplaylist>` plugin generated) M3U playlists via HTTP.
- beets-webrouter
- Serves multiple beets webapps (e.g. :doc:`web <web>`, beets-webm3u, beetstream, :doc:`aura <aura>`) using a single command/process/host/port, each under a different path.
- whatlastgenre
- Fetches genres from various music sites.
- beets-xtractor
- Extracts low- and high-level musical information from your songs.
- beets-ydl
- Downloads audio from youtube-dl sources and import into beets.
- beets-ytimport
- Download and import your liked songs from YouTube into beets.
- beets-yearfixer
- Attempts to fix all missing
original_yearandyearfields. - beets-youtube
- Adds YouTube Music as a tagger data source.