Displaying 1 result from an estimated 1 matches for "4abca20".
Did you mean:
4abc000
2010 Jan 21
0
python-theora: some comments
...e 1, in <module>
File "/usr/lib/python2.5/site-packages/scipy/misc/pilutil.py", line 10, in <module>
import Image
ImportError: No module named Image
which works after I install python-imaging.
4) I modified python-theora with
diff --git a/theora.pyx b/theora.pyx
index 4abca20..78722be 100644
--- a/theora.pyx
+++ b/theora.pyx
@@ -678,7 +678,7 @@ cdef class Theora:
<Image.Image instance at 0x...>
"""
- from scipy.misc import toimage
+ from scipy.misc.pilutil import toimage
return toimage(self.YCbCr2RGB(self.g...