diff --git a/fridge b/fridge index 611c3cd..5337439 100755 --- a/fridge +++ b/fridge @@ -1,4 +1,5 @@ -#!/bin/python3 +#!/usr/bin/env python3 + from moviepy.editor import * from math import trunc from sys import argv, exit diff --git a/readme.md b/readme.md index f64467d..db8b282 100644 --- a/readme.md +++ b/readme.md @@ -1,7 +1,9 @@ # fridge creates music videos from an image or gif and an audio track -## installation (linux) +## installation + +linux: make sure you have python3 and pip installed ``` @@ -9,11 +11,34 @@ git clone https://github.com/clippymusic/fridge cd ./fridge python3 -m pip install ./requirements.txt ``` +--- + +mac osx: +make sure you have python3 and pip installed -- use brew for this +``` +brew update +brew install python3 (or brew upgrade python3 if already installed) +-m pip install --upgrade pip +``` + +clone the source, change to the source directory, and deal with dependencies: +``` +git clone https://github.com/clippymusic/fridge +cd ./fridge +python3 -m pip install moviepy +``` +--- -### (optional) making it globally available +### run from source ``` -sudo mv ./fridge /bin +python3 ./fridge.py ``` ## dependencies - moviepy + +## TODO: +Installers +CI +UX +ETC