Skip to content

Latest commit

 

History

22 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Beets AI Sauce Plugin

build status PyPI - Version

Because your tunes deserve a little extra flavor.

Let artificial intelligence decipher and enhance the mysterious metadata of your music tracks.

Who Needs This? (Definitely You)

  • You: The person who once gazed at your MP3 folder and thought, "My beats need more AI jazz hands!"
  • Also You: If you trust AI more than your friend who can't stop labeling everything "Track 1".
  • Definitely You: If you own folders full of tracks from bootlegs, unknown rips, or suspect compilation albums.

Features

  • Auto-Metadata Magic: Automatically retrieve and correct track and album metadata using AI-generated suggestions.
  • Cleanup Crew: Strip away unnecessary embellishments like "Free Download" in titles or SHOUTCAPS, giving your library a polished appearance.
  • Extensible System: Leverage AI configurations and prompts custom tailored for your library needs.

Installation

Prerequisites

  • Beets: Make sure you have Beets installed (pip install beets),
  • AI Service API Key: Get an API key from your preferred AI service provider (e.g., OpenAI, Deepseek).
    • Any service that supports openAI endpoints should work.

Plugin Setup

  1. Installation: Obtain the sauce by installing the plugin via pip:
    pip install beets-aisauce
  2. Configuration: Add the plugin to your Beets configuration file (config.yaml/beets config -e) with your AI provider details:
     plugins: 
       - aisauce
    
     aisauce:
         mode: "metadata_source" # or "metadata_cleanup"
         providers:
             - id: openai
               model: gpt-4o
               api_key: YOUR_API_KEY_HERE
               api_base_url: https://api.openai.com/v1
  3. Execute the AI Sauce: Import your tracks through Beets to start receiving AI-enhanced metadata suggestions.

Usage

There are two main ways to use the AI Sauce plugin, either as metadata source during import or as a pre-import correction step. You can also combine both methods for maximum flavor.

As a Metadata Source During Import

When importing new music, the AI Sauce plugin can act as a metadata source. Beets will query the AI model to suggest metadata for tracks that lack sufficient information.

For this set the mode option to metadata_source in your configuration file:

aisauce:
    mode: "metadata_source"
    providers:
        ...

During beet import, the plugin will prompt the AI model to generate metadata suggestions based on existing tags or file names.

As a Pre-Import Correction Step

If you want to use AI to cleanup your metadata before retrieving candidates from other sources, set the mode option to metadata_cleanup:

aisauce:
    mode: "metadata_cleanup"
    providers:
        ...

During beet import, the plugin will first use the AI model to correct and enhance existing metadata before proceeding with the standard import process. This allows you to clean up messy tags before Beets attempts to match them with external databases.

Advanced Usage

  • Custom Rules: Sometimes you have specific metadata correction rules that you want to apply. You can modify the default user and system prompts by adding a source to your configuration file:
    aisauce:
        providers:
            - id: openai
              model: gpt-4o
              api_key: YOUR_API_KEY_HERE
    
        sources:
            - provider_id: openai
              user_prompt: '
                Additional rules:
                - Replace any occurrences of Vulgar or inappropriate words with "**sauced**".
                '
  • Multiple sources can be defined allowing you to test different prompts or configurations for different types of music or metadata corrections and models.

Contributing

Great ideas welcome! Especially if they include more puns. Open a PR or send us a message in a bottle (GitHub issues also work).

License

This project is licensed under the MIT License—meaning you can do almost anything, but please don't sue us if the AI names your tracks "Untitled Jam 42."

Development

The following sections are for developers who want to contribute to the project. Feel free to skip if you're just here for the AI sauce.

Installation for Development

Clone the repository and install the package in editable mode:

git clone
pip install -e .[dev]

Running Tests

To run the tests, you can use pytest. Make sure you have the necessary dependencies installed:

pytest .

Running mypy locally

Running mypy local is a bit tricky due to the namespace packages used in this project. To run mypy, you need to specify the --namespace-packages and --explicit-package-bases flags.

mypy  --namespace-packages --explicit-package-bases .

About

Beets AI Autotagger

Resources

Stars

10 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages