Skip to content

Commit f29e079

Browse files
committed
Updated README.md
1 parent 89873a8 commit f29e079

File tree

2 files changed

+22
-11
lines changed

2 files changed

+22
-11
lines changed

README.md

+20-9
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,26 @@ Requires Python >=3.6 to run.
1616
This program depends on NumPy (for arrays and mathematical operations) and Librosa (for audio analysis and beat extraction).
1717
If you don't have these dependencies installed, they'll be automatically downloaded:
1818

19-
```sh
20-
pip install git+https://github.com/arkrow/PyMusicLooper.git
19+
For the full program with tag preservation and direct playing support:
2120
```
21+
pip install git+https://github.com/arkrow/PyMusicLooper.git#egg=pymusiclooper[complete]
22+
```
23+
24+
The "complete" version requires:
25+
- [pytaglib](https://github.com/supermihi/pytaglib) for tag preservation (see their [installation notes](https://github.com/supermihi/pytaglib#installation-notes) for problems with libtag dependency on MacOS/Linux)
26+
- [mpg123](https://www.mpg123.de/download.shtml) to play music endlessly through the terminal.
2227

23-
To play music endlessly through the terminal, the external library `mpg123` is required. Available through the following link: (https://www.mpg123.de/download.shtml).
28+
For just the essentials (exporting intro/loop/outro sections to WAV, or the loop points in samples):
29+
```
30+
pip install git+https://github.com/arkrow/PyMusicLooper.git
31+
```
2432

2533
## Usage
2634

2735
```
28-
usage: python -m pymusiclooper [-h] [-v] [-p] [-e] [-j] [-b] [-r] [-n N_JOBS]
29-
[-o OUTPUT_DIR] [-m MIN_DURATION_MULTIPLIER]
36+
usage: python -m pymusiclooper [-h] [-v] [-p] [-e] [--preserve-tags] [-j] [-b]
37+
[-r] [-n N_JOBS] [-o OUTPUT_DIR]
38+
[-m MIN_DURATION_MULTIPLIER]
3039
path
3140
3241
A script for repeating music seamlessly and endlessly, by automatically
@@ -46,6 +55,7 @@ Play:
4655
Export:
4756
-e, --export export the song into intro, loop and outro files (WAV
4857
format).
58+
--preserve-tags export with the track's original tags.
4959
-j, --json export the loop points (in samples) to a JSON file in
5060
the song's directory.
5161
-b, --batch batch process all the files within the given path
@@ -84,10 +94,10 @@ Play the song on repeat with the best discovered loop point.
8494
python -m pymusiclooper "Song I Could Listen To Forever.mp3"
8595
```
8696

87-
Export the song into intro, loop and outro files, as well as the loop points used.
97+
Export the song into intro, loop and outro files, and carry over the track's original tags.
8898

8999
```sh
90-
python -m pymusiclooper -ej "some music track.ogg"
100+
python -m pymusiclooper -e "some music track.ogg" --preserve-tags
91101
```
92102

93103
Export the loop points of all the songs in the current directory.
@@ -97,10 +107,10 @@ python -m pymusiclooper -bj .
97107
```
98108

99109
The **I WANT IT ALL** option.
100-
Export intro/loop/outro sections and loop points of all the songs in the current directory and its subdirectories, to a folder called "Music Loops", processing 4 tracks concurrently.
110+
Export intro/loop/outro sections and loop points of all the songs in the current directory and its subdirectories, to a folder called "Music Loops", processing 4 tracks concurrently, preserving the original tags.
101111

102112
```sh
103-
python -m pymusiclooper -brej . -o "Music Loops" -n 4
113+
python -m pymusiclooper -brej . -o "Music Loops" -n 4 --preserve-tags
104114
```
105115

106116
If the loop is very long (or very short), you may specify a different minimum duration for the algorithm to use, which is 0.35 (35%) by default.
@@ -139,6 +149,7 @@ This project started out as a fork of [Nolan Nicholson](https://github.com/Nolan
139149

140150
## Version History
141151

152+
- v1.4.0 Major improvements to the loop detection algorithm; added option to preserve tags
142153
- v1.3.2 Fixed fallback PLP method not working sometimes
143154
- v1.3.1 Fixed batch processing mode selection
144155
- v1.3.0 Added multiprocessing support and progress bar for batch export

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ def get_requirements():
1212

1313
setuptools.setup(
1414
name="pymusiclooper",
15-
version="1.3.2",
15+
version="1.4.0",
1616
author="arkrow",
1717
author_email="[email protected]",
1818
description="Automatically find loop points of any song and play endlessly or export into intro/loop/outro sections or loop points.",
1919
long_description=long_description,
2020
long_description_content_type="text/markdown",
2121
url="https://github.com/arkrow/PyMusicLooper",
2222
install_requires=get_requirements(),
23-
extras_require={"all": ["pytaglib>=1.4.6", "mpg123>=0.4"]},
23+
extras_require={"complete": ["pytaglib>=1.4.6", "mpg123>=0.4"]},
2424
packages=setuptools.find_packages(),
2525
classifiers=[
2626
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)