-
-
Notifications
You must be signed in to change notification settings - Fork 59
Run Videomass from source code
Gianluca Pernigotto edited this page Jun 19, 2024
·
6 revisions
- 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
-
If .tar.gz:
~$ tar -zxvf Videomass-?.?.?.tar.gz
-
If .zip:
~$ unzip Videomass.?.?.?.zip
-
Browse inside the Videomass folder:
~$ cd Videomass-?.?.?
-
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()