From fdfb43869b0530c09b7fbb60143b42abb6a69798 Mon Sep 17 00:00:00 2001 From: lickthecheese Date: Thu, 26 Mar 2020 11:29:35 -0400 Subject: [PATCH] cat with ffmpeg --- bin/ffcat | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 bin/ffcat diff --git a/bin/ffcat b/bin/ffcat new file mode 100755 index 0000000..9d43583 --- /dev/null +++ b/bin/ffcat @@ -0,0 +1,9 @@ +#!/bin/bash + +rm output.$1 -i + +printf "file '%s'\n" *.$1 > vidList.txt + +ffmpeg -f concat -i vidList.txt -c copy output.mkv + +