Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Karaoke Deduplicator
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anton Sarukhanov
Karaoke Deduplicator
Commits
87776e74
Commit
87776e74
authored
5 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
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
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+28
-0
28 additions, 0 deletions
README.md
karaokeclean.py
+2
-0
2 additions, 0 deletions
karaokeclean.py
with
30 additions
and
0 deletions
README.md
+
28
−
0
View file @
87776e74
...
@@ -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`
This diff is collapsed.
Click to expand it.
karaokeclean.py
+
2
−
0
View file @
87776e74
...
@@ -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
"
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment