Merge branch 'cc-3018-silence-detection' into devel

This commit is contained in:
James 2013-01-03 14:08:21 -05:00
commit a1837366be
16 changed files with 239 additions and 31 deletions

View file

@ -470,7 +470,7 @@ def format_length(mutagen_length):
m = int(math.floor(t / 60))
s = t % 60
# will be ss.uuu
s = str(s)
s = str('{0:f}'.format(s))
seconds = s.split(".")
s = seconds[0]
# have a maximum of 6 subseconds.