Get beats from a mp3 song
Installation
First install vidtoolz.
pip install vidtoolzThen install this plugin in the same environment as your vidtoolz application.
vidtoolz install vidtoolz-beatsUsage
type vidtoolz beats --help to get help
Usage Examples
# Detect beats from an audio file
vidtoolz beats my_song.mp3
# Detect beats with an offset (e.g., skip first 2 seconds)
vidtoolz beats my_song.mp3 --offset 2.0
# Save results to a custom file
vidtoolz beats my_song.mp3 --output beats.txtOptions
audio(required): Path to the audio file (mp3 or other format)-of,--offset(optional): Offset for music in seconds, default 0.0-o,--output(optional): Output path for the result, default isbeats.txt
What's Changed
- Add test using mistral vibe. by @sukhbinder in #1
New Contributors
- @sukhbinder made their first contribution in #1
Full Changelog: v0.0.1...v0.1.1