Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion fridge
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/python3
#!/usr/bin/env python3

from moviepy.editor import *
from math import trunc
from sys import argv, exit
Expand Down
31 changes: 28 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,19 +1,44 @@
# 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

```
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