I hereby claim:
- I am jengo on github.
- I am jolene (https://keybase.io/jolene) on keybase.
- I have a public key ASCSSTrkgLNhBdgTlWzbHylXSYhleFNOmKOUT5UN2ZcVKwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| KEY=$(basename $1) | |
| FILENAME=$1 | |
| if [ "${KEY}" == "" ]; then | |
| echo "Missing parameter SSH key" | |
| exit 1 | |
| fi |
| If you have docker installed, this is a simple command to load ffmpeg, link current directory and create a video from the output of blender. | |
| docker run -it --rm -v "`pwd`":/tmp/workdir jrottenberg/ffmpeg -r 24 -f image2 -pattern_type glob -i '*.png' -i %04d.png -s hd1080 -vcodec libx264 -pix_fmt yuv420p -y output.mp4 |
| # Run this on the remote | |
| export PROJECT=project | |
| export OWNER="jengo.dev" | |
| mkdir /git/$PROJECT.git | |
| cd /git/$PROJECT.git | |
| git init --bare | |
| chown $OWNER /git/$PROJECT.git -R | |
| git repo-config core.sharedRepository true |