Skip to content

Run Videomass from source code

Gianluca Pernigotto edited this page Jun 19, 2024 · 6 revisions

How to run Videomass from sources

  • It is assumed that you have Python installed on your system.
  • Make sure to install the required dependencies.

the following examples are applied on the Linux terminal, but can be reproduced on other operating systems in a similar way.

Videomass can be run without installing it, just download latest Source code release or the repo Snapshot or by cloning the repo snapshot $ git clone https://github.com/jeanslack/Videomass.git

  1. If .tar.gz:
    ~$ tar -zxvf Videomass-?.?.?.tar.gz

  2. If .zip:
    ~$ unzip Videomass.?.?.?.zip

  3. Browse inside the Videomass folder:
    ~$ cd Videomass-?.?.?

  4. Execute the Videomass launcher:
    ~$ python3 launcher

Videomass can also be run in interactive mode with the Python interpreter too, always within the same unpacked directory or cloned directory:

>>> from videomass import gui_app
>>> gui_app.main()
Clone this wiki locally