So, my little Python-WebM project is now public (it was already public but not publicised
) and anyone can start reading and writing the Google WebM format for images.
Python-WebM is now public
2 Replies
So, my little Python-WebM project is now public (it was already public but not publicised
) and anyone can start reading and writing the Google WebM format for images.

The python-webm package is an interface to the Google WebM new video/image codec which promise a better compression of image and video data. The interface uses ctypes to call the libvpx/libwebm Google libraries installed in the system. At the moment only the libwebm library is wrapped and with some limitations.
Here a list of platforms with the current support status of the python-webm package:
Below a list of prerequisites to use the python-webm package:
Discover more about the project website at here
Some days ago I was writing a DLL’s wrapper in ctypes and I came across of this typedef in the header file:
typedef struct _FILEHandle *FILEHandle; |
To translate this definition into ctypes is pretty straight-forward (if you already know the solution
).
Continue reading