Skip to content
Snippets Groups Projects
Commit 87776e74 authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

clarify doc

parent 6902898d
No related branches found
No related tags found
No related merge requests found
Pipeline #118 passed with stage
in 33 seconds
...@@ -5,3 +5,31 @@ Removes redundant files from a karaoke collection. ...@@ -5,3 +5,31 @@ Removes redundant files from a karaoke collection.
A collection may include multiple versions of the same song, from multiple A collection may include multiple versions of the same song, from multiple
karaoke studios/labels. This script finds such songs, and moves the less-desired karaoke studios/labels. This script finds such songs, and moves the less-desired
copies into a different directory. copies into a different directory.
There's nothing fancy here, just looking at filenames and choosing the ones we want.
## Usage
Probably don't. This was a one-off script and it's probably not very useful to
anyone else, except as an example of a quick and dirty way to sort a bunch of files.
## Example filenames
### Before
* `Karaoke/ArtistA - TrackX [Label1].mp3`
* `Karaoke/ArtistA - TrackX [LabelF].mp3`
* `Karaoke/ArtistA - TrackX [Label#@!].mp3`
* `Karaoke/ArtistA - TrackX [LabelBest].mp3`
* `Karaoke/ArtistA - TrackX [Label2].mp3`
### After
Assuming we configure `LabelBest` above the others...
* `Karaoke/ArtistA - TrackX [LabelBest].mp3`
* `Other/ArtistA - TrackX [Label1].mp3`
* `Other/ArtistA - TrackX [LabelF].mp3`
* `Other/ArtistA - TrackX [Label#@!].mp3`
* `Other/ArtistA - TrackX [Label2].mp3`
...@@ -12,6 +12,8 @@ EXTRA_DIR = "/media/anton/Karaoke/Karaoke_Extra" ...@@ -12,6 +12,8 @@ EXTRA_DIR = "/media/anton/Karaoke/Karaoke_Extra"
FILENAME_REGEX = re.compile(r"(?P<song>.*)\[(?P<label>.*)\](?P<ext>.*)") FILENAME_REGEX = re.compile(r"(?P<song>.*)\[(?P<label>.*)\](?P<ext>.*)")
# List of karaoke labels in order of preference.
PREFERENCES = [ PREFERENCES = [
"Karaoke", "Karaoke",
"SC Karaoke", "SC Karaoke",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment