This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
"""USAGE: | |
genpass [OPTIONS] | |
OPTIONS: | |
-h, --help | |
Display this help message. | |
-a, --allow=dec|hex|alpha|alnum|all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
IMGDIR=/home/john/Projects/video_projects/notd/assets/images/intro/ | |
VIDDIR=/home/john/Projects/video_projects/notd/assets/video/ | |
TMPDIR=tmp/ | |
OUTPUTDIR=../tmp/ | |
#ls $IMGDIR | |
mkdir $TMPDIR | |
# create init sequence from pngs --> step0 | |
ffmpeg -r 6 -f image2 -s 1920x1080 -i ${IMGDIR}notd_init/%03d.png -vcodec libx264 -crf 5 -pix_fmt yuv420p ${TMPDIR}step0.mp4 && |