-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathREADME
28 lines (18 loc) · 1.12 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
MusicCache
You have a lot of music files (mp3 support only for now). You want to know what you have, where you have it, and what shape it's in (duplicates, encodings, size, track completion, mislabelings).
You'd also like to be able to query this data, for use in other programs – say a web based music player like FTANG (http://github.com/maxogden/ftang).
You could use MusicCache to do these things!
Music cache is written in ruby, and stores in Redis.
it is executed by:
music-cache scan redis_collection_name mp3_folder
e.g.
music-cache scan my_music_db /home/YourUser/Music
IMPORTANT DEPENDENCY INFO (I will not be a dependency coward. Join me.):
We're using bundler here. You should too!
FOR RUBY 1.8 & 1.9 USERS:
bundle install
This program uses ruby-mp3info which can be found at:
http://ruby-mp3info.rubyforge.org/
And uses the ruby implementation of Levenshtein distance, which can be found at:
http://rubyforge.org/frs/?group_id=6257
This program was originally inspired by TheDevelopment's ruby-id3-sort, and still resembles it in a few places. please see http://github.com/TheDevelopment/ruby-id3-sort