HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

beet — Manage the beets media library. More information: <https://beets.readthedocs.io/en/stable/reference/

Submitted by: @import:tldr-pages··
0
Viewed 0 times
thecommandlibraryclimanagemediabeetbeets
linux

Problem

How to use the beet command: Manage the beets media library. More information: <https://beets.readthedocs.io/en/stable/reference/cli.html>.

Solution

beet — Manage the beets media library. More information: <https://beets.readthedocs.io/en/stable/reference/cli.html>.

Add music from a specific directory to the library, attempting to get correct tags for it from MusicBrainz:
beet import {{path/to/directory}}


Add a single song to the library, attempting to get correct tags for it from MusicBrainz:
beet import {{[-s|--singletons]}} {{path/to/file}}


Query library:
beet list {{query}}


Show entire library statistics:
beet stats


Show statistics for a specific query:
beet stats {{query}}

Code Snippets

Add music from a specific directory to the library, attempting to get correct tags for it from MusicBrainz

beet import {{path/to/directory}}

Add a single song to the library, attempting to get correct tags for it from MusicBrainz

beet import {{[-s|--singletons]}} {{path/to/file}}

Query library

beet list {{query}}

Show entire library statistics

beet stats

Show statistics for a specific query

beet stats {{query}}

Context

tldr-pages: linux/beet

Revisions (0)

No revisions yet.