by John Heath | Sunday 30 August 2015 | Blog |
Background pip is a package management system used to install and manage software packages written in Python. It can be used to install any of the many packages found in the Python Package Index (PyPI). One major advantage of pip is the ease of its command-line...
by John Heath | Saturday 01 August 2015 | Blog |
You can check the integrity of a video file using FFmpeg, the free cross-platform solution for recording, converting and streaming audio and video. Here are examples of the code you can employ; both in Windows and Linux environments. Windows Example [path to...
by John Heath | Thursday 19 March 2015 | Blog |
If you’re using Python 2.6 above, you can use sys.maxsize to find out whether you have the 32-bit or the 64-bit version installed: import sys is_64bits = sys.maxsize > 2**32 print is_64bits Here’s a screenshot of example output:...