- Notifications
You must be signed in to change notification settings - Fork11
Fetch synced lyrics from Musixmatch and save it as *.lrc file, written in Python. Go versionhttps://github.com/fashni/MxLRC-Go
License
fashni/MxLRC
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Command line tool to fetch synced lyrics fromMusixmatch and save it as *.lrc file.
I'm currently learning Go and I cannot think of a project to start with. So I decided to rewrite this script in Go.
Download fromRelease page
Required Python 3.6+
- Clone/download this repo
- Install dependancy with pip
pip install -r requirements.txt
usage: mxlrc.py [-h] -s SONG [SONG ...] [-o OUTDIR] [-t SLEEP] [-d DEPTH] [-u] [--bfs] [-q] [--token TOKEN]Fetch synced lyrics (*.lrc file) from Musixmatchoptional arguments: -h, --help show this help message and exit -s SONG [SONG ...], --song SONG [SONG ...] song information in the format [ artist,title ], a text file containing list of songs, or a directory containing the song files -o OUTDIR, --out OUTDIR output directory to save the .lrc file(s), default: lyrics -t SLEEP, --sleep SLEEP sleep time (seconds) in between request, default: 30 -d DEPTH, --depth DEPTH (directory mode) maximum recursion depth, default: 100 -u, --update (directory mode) rewrite existing .lrc files inside the output directory --bfs (directory mode) use breadth first search for scanning directory -q, --quiet suppress logging output --token TOKEN musixmatch token
mxlrc -s adele,hello
mxlrc -s adele,hello "the killers,mr. brightside" -o some_directory
mxlrc -s example_input.txt -t 20
mxlrc -s "Dream Theater"
This option overrides the
-o/--outdir
argument which means the lyrics will be saved in the same directory as the given input.
The
-d/--depth
argument limit the depth of subdirectory to scan. Use-d 0
or--depth 0
to only scan the specified directory.
Follow steps 1 to 5 from the guidehere to get a new Musixmatch token.
About
Fetch synced lyrics from Musixmatch and save it as *.lrc file, written in Python. Go versionhttps://github.com/fashni/MxLRC-Go