-
-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
rgbpm : where do you get bpm-calc from ? #38
Comments
Sorry to say: Nowhere. Like loudgain, it was originally written for my own personal use, based on a 2006 Python script by Erich Schubert, which I heavily modified and which in turn uses Mutagen, Queen Mary University’s Sonic Annotator and some hand-coded vamp plugin. I simply never bothered to remove the call to BPM calculation is still quite an inexact science, and quite complex if trying to do it "right", so you might actually be better off using another available tool before loudgaining your files (that is because loudgain can repair incorrect tags sometimes written by BPM software). Sorry again for not publishing my solution here, because I’m totally unsure if that would comply with the licenses of the software I used. If you really want to go "the hard route", you’ll need:
To give an example, here’s the commandline I construct for the Sonic Annotator (in Python): command_line = 'sonic-annotator -t ~/.vamp/bpm-calc.n3 -n "%s" -w csv --csv-stdout --csv-separator "\t" 2>/dev/null' % file + ' | cut -f5' An here is the contents of
|
Thank you for your reply. I've never had any real use for a BPM scanner, but I though it'd be nice to have nonetheless. Maybe that'll benefit someone else. :) |
rgbpm
seems to be a lovely script ! Just where do you getbpm-calc
from ? Maybe https://github.com/marionnewlevant/bpm-calc ? There's sadly no release nor package.The text was updated successfully, but these errors were encountered: