mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
This is 'the big one', which touches every file so that it all conforms to the given standard.
92 lines
2.8 KiB
Python
92 lines
2.8 KiB
Python
# This file is part of beets.
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
# a copy of this software and associated documentation files (the
|
|
# "Software"), to deal in the Software without restriction, including
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
# permit persons to whom the Software is furnished to do so, subject to
|
|
# the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
"""Uses Librosa to calculate the `bpm` field.
|
|
"""
|
|
|
|
|
|
from librosa import beat, load
|
|
from soundfile import LibsndfileError
|
|
|
|
from beets import ui, util
|
|
from beets.plugins import BeetsPlugin
|
|
|
|
|
|
class AutoBPMPlugin(BeetsPlugin):
|
|
def __init__(self):
|
|
super().__init__()
|
|
self.config.add(
|
|
{
|
|
"auto": True,
|
|
"overwrite": False,
|
|
}
|
|
)
|
|
|
|
if self.config["auto"].get(bool):
|
|
self.import_stages = [self.imported]
|
|
|
|
def commands(self):
|
|
cmd = ui.Subcommand(
|
|
"autobpm", help="detect and add bpm from audio using Librosa"
|
|
)
|
|
cmd.func = self.command
|
|
return [cmd]
|
|
|
|
def command(self, lib, opts, args):
|
|
self.calculate_bpm(lib.items(ui.decargs(args)), write=ui.should_write())
|
|
|
|
def imported(self, session, task):
|
|
self.calculate_bpm(task.imported_items())
|
|
|
|
def calculate_bpm(self, items, write=False):
|
|
overwrite = self.config["overwrite"].get(bool)
|
|
|
|
for item in items:
|
|
if item["bpm"]:
|
|
self._log.info(
|
|
"found bpm {0} for {1}",
|
|
item["bpm"],
|
|
util.displayable_path(item.path),
|
|
)
|
|
if not overwrite:
|
|
continue
|
|
|
|
try:
|
|
y, sr = load(util.syspath(item.path), res_type="kaiser_fast")
|
|
except LibsndfileError as exc:
|
|
self._log.error(
|
|
"LibsndfileError: failed to load {0} {1}",
|
|
util.displayable_path(item.path),
|
|
exc,
|
|
)
|
|
continue
|
|
except ValueError as exc:
|
|
self._log.error(
|
|
"ValueError: failed to load {0} {1}",
|
|
util.displayable_path(item.path),
|
|
exc,
|
|
)
|
|
continue
|
|
|
|
tempo, _ = beat.beat_track(y=y, sr=sr)
|
|
bpm = round(tempo)
|
|
item["bpm"] = bpm
|
|
self._log.info(
|
|
"added computed bpm {0} for {1}",
|
|
bpm,
|
|
util.displayable_path(item.path),
|
|
)
|
|
|
|
if write:
|
|
item.try_write()
|
|
item.store()
|