On Sun, 22 Oct 2017 19:33:23 +0200 Mathieu Malaterre <ma...@debian.org>
wrote:
Control: tags -1 patch
Forget that non-sense, I thought the typo was s/eyeD3/eyed3/ but it
looks like the API change quite a lot. Maybe there is a compat mode
but I do not know eyed3 enough
Dears,
I just submitted a bug report about this Python import issue.
I've checked today that this bug is apparently(*) only related to a typo
or a change in case-sensitivity of Python, the following patch solves
the issue and I was able to burn wav files:
diff --git a/usr/lib/python2.7/dist-packages/burnlib/audio.py
b/usr/lib/python2.7/dist-packages/burnlib/audio.py
index 84795ed..1f85623 100644
--- a/usr/lib/python2.7/dist-packages/burnlib/audio.py
+++ b/usr/lib/python2.7/dist-packages/burnlib/audio.py
@@ -25,7 +25,7 @@
import os.path
import ogg.vorbis
-import eyeD3
+import eyed3
import mad
--
PS: (*) I did not review any code changes, just run successfully the
burn command, as usual, right after I applied the patch above.