Skip to content

Latest commit

 

History

History
57 lines (42 loc) · 1.33 KB

install_lin.md

File metadata and controls

57 lines (42 loc) · 1.33 KB

Installing Auto-Editor for Linux

Python 3

This project is written in python 3. Check if you have it by running this command in the Terminal.

python --version

If Terminal says this:

command not found: python

or this

Python 2.7.16

you need to install python 3.

FFmpeg

Run this command to install ffmpeg and its dependences.

sudo apt-get install libavformat-dev libavfilter-dev libavdevice-dev ffmpeg

Make sure ffmpeg is on your PATH by running this:

ffmpeg -h

Other Dependencies

To install all of the needed dependencies, run this:

pip3 install scipy audiotsm pillow pydub opencv-python youtube_dl

This usually takes about 5 minutes.

Wait for all the libraries to install and once that's done, close and reopen Terminal.

Running Auto-Editor

If you have git, then you can simply run:

git clone https://github.com/WyattBlue/auto-editor.git

to download the repo or download the zip version here.

Run

python auto-editor.py --help

to test it and if that runs successfully, then congratulations, you have successfully installed auto-editor. See the docs for more commands and usages.