Skip to content

Instantly share code, notes, and snippets.

@fabioam
Created November 4, 2017 15:17
Show Gist options
  • Save fabioam/19e8321435b3c3fd875a0ad942c26751 to your computer and use it in GitHub Desktop.
Save fabioam/19e8321435b3c3fd875a0ad942c26751 to your computer and use it in GitHub Desktop.
Description: Split mp4 video 14s with each - for using with instagram stories
#!/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