Videomass Builds and Installation Instructions

...

Note that installers for Windows x86_64 and MacOsX High Sierra x86_64 are 

available at https://sourceforge.net/projects/videomass2/ 

These installation programs contain everything needed to be used 
in standalone mode, without the need for anything else. 

...


#--------------------------------------------------------------------------#

Base Dependencies:
    
    - Python >=3.7
    - wxPython4 Phoenix *
    - pip
    - ffmpeg
    
    * With Python3 also make sure that the pubsub module is installed.
      if it is not installed you need to install it:
      
            pip install PyPubSub
    
    OR (if you still use Python2)

    - Python >=2.7
    - wxPython Classic
    - pip 
    - ffmpeg

Videomass can be run without installing by un-tarring the source package and 
executing the "launcher" script in the root of the un-tarred directory.

    python launcher
    
If you want the setup.py script to allow you to build 
an executable for your operating system or if you simply 
want to install Videomass from the python Package Index
 (aka PyPi) follow the Options below.

#--------------------------------------------------------------------------#
Option 1) Installing from Pypi: [Linux/Macintosh/Unix/Windows]

    pip install videomass
    
- To uninstall:

    pip uninstall videomass
    
Please, Visit the Wiki page for more info: 

https://github.com/jeanslack/Videomass/wiki/Installing-from-PyPi

#--------------------------------------------------------------------------#
Option 2) Build a Windows executable (.exe): [Windows]

python setup.py py2exe

Please, Visit the Wiki page for more info:

https://github.com/jeanslack/Videomass/wiki/Windows,-build-from-source

#--------------------------------------------------------------------------#

Option 3) Build a MacOSX app: [Macintosh OSX]

python setup.py py2app

Please, Visit the Wiki page for more info:

https://github.com/jeanslack/Videomass/wiki/MacOs,-build-from-source

#--------------------------------------------------------------------------#
Option 4) Build as wheel: [Linux/Macintosh/Unix/Windows]

python3 setup.py sdist bdist_wheel

Please, Visit the Wiki page for more info:

https://github.com/jeanslack/Videomass/wiki/Make-pure-Python-wheels

#--------------------------------------------------------------------------#




