Run flac2all (v3.38) with the option -t1
Traceback (most recent call last):
File "./flac2all_v3.38.py", line 758, in <module>
print "We are running %d simultaneous transcodes" % opts['threads']
TypeError: %d format: a number is required, not str
Add this line to fix it:
opts['threads'] = int(opts['threads'])
Original issue reported on code.google.com by nezvadovitz on 23 Feb 2014 at 6:08
Original issue reported on code.google.com by
nezvadovitz
on 23 Feb 2014 at 6:08