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 python3 | |
# A small python script to download github directories/files. | |
# Author: Argus Khan | |
# Dependencies: subversion | |
import sys, os, re, argparse, subprocess | |
try: | |
subprocess.check_output(['which', 'svn']) |
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
# A small bash script to spit videos in smaller parts. | |
# Author: Argus Khan | |
# Dependencies: ffmpeg,mideainfo | |
#!/usr/bin/env bash | |
function usage { | |
echo "Please use the following formatting:" | |
echo "Usage: $(basename $0) [-o OUTPUT_NAME] [-t CLIP_LENGTH] <INPUT_VIDEO_FILE>" 2>&1 |