concat video files with same codec
This commit is contained in:
parent
442e2b0d88
commit
f3d72a0103
18
concatVideos
Executable file
18
concatVideos
Executable file
|
@ -0,0 +1,18 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -eu
|
||||
|
||||
fullpath="$1"
|
||||
source fileextensions
|
||||
|
||||
timestamp=`stamp -filename`
|
||||
tmplist="concatVideos-$timestamp.txt"
|
||||
outfile="concatVideos-$timestamp.$extension"
|
||||
|
||||
for file in "$@"; do
|
||||
echo "file '$file'" >> $tmplist
|
||||
done
|
||||
|
||||
ffmpeg -f concat -safe 0 -i "$tmplist" -c copy "$outfile"
|
||||
|
||||
echo "outfile: $outfile"
|
Loading…
Reference in New Issue
Block a user