ZivaVatra/flac2all

The -t option doesn't work

Closed this issue · 1 comments

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 brian@bri1.com on 23 Feb 2014 at 6:08

  • Merged into: #10
Duplicate of issue #10.

Can you check revision 41 or later of SVN to see if the fix works for you?

Original comment by i...@ziva-vatra.com on 23 Feb 2014 at 7:22

  • Changed state: Duplicate