https://github.com/mirryi/beets-playlistc
A simple beets plugin for creating playlists.
https://github.com/mirryi/beets-playlistc
beets playlist plugin
Last synced: about 1 month ago
JSON representation
A simple beets plugin for creating playlists.
- Host: GitHub
- URL: https://github.com/mirryi/beets-playlistc
- Owner: mirryi
- License: mit
- Created: 2020-04-24T23:33:56.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-05-26T14:32:27.000Z (almost 3 years ago)
- Last Synced: 2025-02-13T20:17:31.592Z (3 months ago)
- Topics: beets, playlist, plugin
- Language: Python
- Homepage: https://pypi.org/project/beets-playlistc
- Size: 40 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# beets-playlistc

This [beets](https://beets.readthedocs.io/en/latest/index.html) plugin
allows for the creation of playlists based on your beets database. Take
advantage of beets's rich query system.## Getting Started
$ pip install beets-playlistc
Enable the plugin in your beets configuration:
plugins:
- ...
- playlistc## Usage
The options `playlist_dir` and `relative_to` must be specified in
beets's configuration file.playlistc:
playlist_dir: ~/files/music/playlists
relative_to: ~/files/music/libraryPlaylists are created using the subcommand `playlistc create`:
$ beet playlistc create NAME QUERY
The paths of the matching items relative to the path specified in
`relative_to` are written to `playlist_dir/NAME.m3u`.