NotImplementedError: compression type 98 (ppmd)
このエラーを修正するにはどうすればよいですか?
ありがとうございます。
NotImplementedError: compression type 98 (ppmd)
このエラーを修正するにはどうすればよいですか?
ありがとうございます。
Pythonのzipfile
モジュールはPPMD圧縮をサポートしていません - issue 14366を参照してください(強調追加):
I think we should add the ability to register new codecs. Support for PPMd, jpeg and WavPack is unlikely to emerge in the Python in the foreseeable future, but users of third-party libraries (such as PIL), will use the new codecs as needed.
のみ2つのオプションがあります。
は、Pythonから外部zipプログラムを使用しては、とsubprocess
モジュール。 p7zip
プログラムは仕事をうまくやってくれます。
zipfile
モジュールにPPMdサポートを追加するようにPythonを修正します。
(定期unzip
含む)ほとんどのプログラムはすべてでそれをサポートしていないので、PPMDを利用するには極めて珍しいコーデックであることに留意してください。
http://stackoverflow.com/questions/1690993/zip-file-with-ppmd-compression-programmatically-unzip –