HOWTO: Run OpenShot on Microsoft Windows
- Keywords:
- microsoft windows port
- Last updated by:
- Jonathan Thomas
Currently, OpenShot only works on Linux. However, here are some notes on Windows support for OpenShot.
OpenShot is programmed in Python, which is a cross-platform programming language. Linux, Mac, and Windows can run Python programs. We use GTK for our widget toolkit (dialogs, buttons, drop-downs, etc...), which is also cross-platform. In fact, early in OpenShot's development, I had it working on both Windows and Linux (before the program really did much).
However, we have one library which does not support Windows (yet), which is the MLT Framework (http://
UPDATE: MLT now supports Windows, although not much testing has been done. For build instructions, read the following website: http://
Once MLT and the Swig-based Python bindings are working on Windows, you should be able to run this simple test:
1) Launch Python
(from the command window, type 'python')
2) Import the MLT library
>> import mlt
3) If no errors are encountered, this command should work:
>> f = mlt.Factory()
So, if someone can get over that hurdle, and get this simple test to work, the next steps are to extract the OpenShot tarball (available at https:/
Finally, once OpenShot is patched to support the correct file paths, thumbnail paths, drag n drop paths, etc... It should work just fine. =)
Good luck to anyone willing to accept the challenge.