5 from optparse
import OptionParser
6 from tag_wrapper
import tag
8 ACCEPTEXTS
= [".ogg"] # Keep it simple for now
10 def issupportedfile(name
):
11 for ext
in ACCEPTEXTS
:
12 if os
.path
.splitext(name
)[1] == ext
:
16 def newpath(file, target
, pattern
):
17 # Create the tokens dictionary
20 # TODO: add tracknumber, disknumber and possibily compilation
21 for t
in ["title", "artist", "album artist", "album", "composer", "genre", "date"]:
26 # %album artist% is %artist% if nothing can be found in the tags
27 if tokens
["album artist"] == None:
28 tokens
["album artist"] = tokens
["artist"]
30 # That appears in no tag
31 tokens
["base"] = target
33 # Now replace all tokens by their values
37 pattern
= pattern
.replace(repl
, tokens
[i
][0])
39 # Add the extension and return the new path
40 return pattern
+ os
.path
.splitext(file)[1]
44 usage
= "Usage: %prog [options] directory pattern"
45 parser
= OptionParser(usage
=usage
)
46 parser
.add_option("-r", "--recursive", action
="store_true",
47 dest
="recursive", help="also move/copy files from sub-directories", default
=False)
48 parser
.add_option("-t", "--target", dest
="target",
49 help="create new directory structure in directory TARGET (default=directory)")
50 (options
, args
) = parser
.parse_args()
55 print "You must specify a directory"
61 print "You must specify a pattern"
64 if options
.target
!= None:
65 target
= options
.target
71 files
= basepath
.walkfiles()
73 files
= basepath
.files()
75 if issupportedfile(file):
77 print newpath(file, target
, pattern
)
79 if __name__
== "__main__":