Created
November 4, 2017 15:17
-
-
Save fabioam/19e8321435b3c3fd875a0ad942c26751 to your computer and use it in GitHub Desktop.
Description: Split mp4 video 14s with each - for using with instagram stories
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
#!/bin/bash | |
if [ "$#" -ne 1 ] | |
then | |
echo "Description: Split mp4 file with 14s each - for using with instagram stories" | |
echo "Usage: $0 <filename>" | |
exit 1 | |
fi | |
echo $1 | |
ffmpeg-split.py -f "$1" -s 14 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment