commit f653f88680a801361389cebc739cb1d1163d4a17 Author: mmcwilliams Date: Thu May 30 19:32:19 2019 -0400 Created working script. Use 3 input files, 2 picture and 1 matte to generate an output video diff --git a/README.md b/README.md new file mode 100644 index 0000000..c5272b6 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# bipack + +Script for simulating traveling mattes with ffmpeg. + +## Requirements + +Uses `ffmpeg` to generate matte files, apply mattes as alpha masks and render final video. + +Installation instructions for ffmpeg here: https://github.com/adaptlearning/adapt_authoring/wiki/Installing-FFmpeg + +## Usage + + + +`sh bipack.sh A.mp4 B.mp4 matte.mp4 output.mov` + + + diff --git a/bipack.sh b/bipack.sh new file mode 100644 index 0000000..3fbf7fa --- /dev/null +++ b/bipack.sh @@ -0,0 +1,29 @@ +#!/bin/bash + +#IMAGE1 +A=${1} +#IMAGE2 +B=${2} +#MATTE +MATTE=${3} +#OUTPUT FILE +OUTPUT_FILE=${4} + +CONTRAST=100 +SIZE="1280x720" +RATE=30 + +time ffmpeg -y -i $A -i $B -i $MATTE \ + -filter_complex " + color=0x000000:size=$SIZE, format=rgb24[bla]; + [0] format=rgb24 [a]; + [1] format=rgb24 [b]; + [2] format=gray, smartblur=1, eq=contrast=$CONTRAST, format=rgb24 [maska]; + [2] format=gray, smartblur=1, eq=contrast=$CONTRAST, negate, format=rgb24 [maskb]; + [bla][a][maska] maskedmerge, format=rgb24 [pass1]; + [pass1][b][maskb] maskedmerge, format=rgb24 + " \ + -r $RATE \ + -c:v prores_ks \ + -profile:v 3 \ + $OUTPUT_FILE diff --git a/notes/README.md b/notes/README.md new file mode 100644 index 0000000..e40ad32 --- /dev/null +++ b/notes/README.md @@ -0,0 +1,10 @@ +# Sources + +[alphaextract, alphamerge tutorial](https://hhsprings.bitbucket.io/docs/programming/examples/ffmpeg/manipulating_video_colors/alphamerge_alphaextract.html) + +[alphaextract, alphamerge tutorial 2](https://hhsprings.bitbucket.io/docs/programming/examples/ffmpeg/manipulating_video_colors/alphamerge_alphaextract_more_.html) + +[maskedmerge tutorial](https://hhsprings.bitbucket.io/docs/programming/examples/ffmpeg/manipulating_video_colors/maskedmerge.html) + +[maskedmerge turorial 2](http://oioiiooixiii.blogspot.com/2016/09/ffmpeg-extract-foreground-moving.html) + diff --git a/scripts/bipack_attempt1.sh b/scripts/bipack_attempt1.sh new file mode 100644 index 0000000..16d3d38 --- /dev/null +++ b/scripts/bipack_attempt1.sh @@ -0,0 +1,61 @@ +#!/bin/bash + +#IMAGE1 +A=${1} +#IMAGE2 +B=${2} +#MATTE +MATTE=${3} +#OUTPUT FILE +OUTPUT_FILE=${4} + + +MATTE1=$(mktemp -u).mov +MATTE2=$(mktemp -u).mov +PASS1=$(mktemp -u).mov +PASS2=$(mktemp -u).mov + +# use rawvideo for intermediary tmp files +# -f rawvideo -pixel_format rgb24 + +echo "Generating mattes from $MATTE..." + +time ffmpeg -y -i $MATTE -t 10 -vf eq=saturation=0:contrast=100 -c:v prores_ks -profile:v 4 $MATTE1 +time ffmpeg -y -i $MATTE1 -t 10 -vf negate -c:v prores_ks -profile:v 4 $MATTE2 + +echo "Applying matte to $A..." + +time ffmpeg -y -i $A -i $MATTE1 \ + -t 10 \ + -filter_complex '[1]split[m][a];[a][1]alphamerge[keyed];[0][keyed]overlay=eof_action=endall' \ + -c:v prores_ks \ + -profile:v 4 \ + $PASS1 + +echo "Applying matte to $B..." + +time ffmpeg -y -i $B -i $MATTE2 \ + -t 10 \ + -filter_complex '[1]split[m][a];[a][1]alphamerge[keyed];[0][keyed]overlay=eof_action=endall' \ + -c:v prores_ks \ + -profile:v 4 \ + $PASS2 + +echo "Cleaning up tmp matte files..." +#echo $MATTE1 +rm $MATTE1 +rm $MATTE2 + +echo "Combining matted layers together into $OUTPUT_FILE..." + +time ffmpeg -y -i $PASS1 -i $PASS2 \ + -t 10 \ + -filter_complex "[0][1]blend=all_mode='darken'" \ + -c:v prores_ks \ + -profile:v 3 \ + $OUTPUT_FILE + +echo "Cleaning up temp files..." + +rm $PASS1 +rm $PASS2 \ No newline at end of file diff --git a/scripts/combine.sh b/scripts/combine.sh new file mode 100644 index 0000000..d3f5cad --- /dev/null +++ b/scripts/combine.sh @@ -0,0 +1,11 @@ +#!/bin/bash + + +#IMAGE1 +A=${1} +#IMAGE2 +B=${2} +OUTPUT_FILE=${3} + +#this combines video with the mattes applied +ffmpeg -y -i $A -i $B -filter_complex "[0][1]blend=all_mode='overlay'" -c:v prores_ks -profile:v 3 $OUTPUT_FILE \ No newline at end of file diff --git a/scripts/hicon.sh b/scripts/hicon.sh new file mode 100644 index 0000000..6fb83b7 --- /dev/null +++ b/scripts/hicon.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +INPUT_FILE=${1} +OUTPUT_FILE=${2} + +#maximum contrast on video +ffmpeg -y -i $INPUT_FILE -vf eq=saturation=0:contrast=100 $OUTPUT_FILE \ No newline at end of file diff --git a/scripts/invert.sh b/scripts/invert.sh new file mode 100644 index 0000000..55a4816 --- /dev/null +++ b/scripts/invert.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +INPUT_FILE=${1} +OUTPUT_FILE=${2} + +ffmpeg -y -i $INPUT_FILE -vf negate $OUTPUT_FILE \ No newline at end of file diff --git a/scripts/matte_overlay.sh b/scripts/matte_overlay.sh new file mode 100644 index 0000000..1acdf80 --- /dev/null +++ b/scripts/matte_overlay.sh @@ -0,0 +1,30 @@ +#!/bin/bash + +#ffmpeg -ss 00:00:18.300 -i music.mp3 -loop 1 -i bg.mp4 -i ac%d.png -i dust.mp4 -filter_complex "[1:0]scale=1600:ih*1200/iw, crop=1600:900[a];[a][2:0] overlay=0:0[b]; [3:0] scale=1600:ih*1600/iw, crop=1600:900,setsar=1[c]; [b][c] blend=all_mode='overlay':all_opacity=0.2" -shortest -y output.mp4 +#-filter_complex "[0][1]blend=all_mode='overlay'" +#ffmpeg -i video -vf "movie='image',alphaextract[a];[in][a]alphamerge" -c:v qtrle output.mov + +#-filter_complex "[1:v]alphaextract[alf];[0:v][alf]alphamerge" +#-filter_complex "[0][1]alphamerge,format=yuva420p" + +#-filter_complex '[0]split[m][a];[m][a]alphamerge[keyed];[1][keyed]overlay=eof_action=endall' +#The alphamerge filter adds a grayscale version of its 2nd input as the alpha channel to the 1st. +#The overlay filter does alpha blending of its inputs. +# -> CLOSE!!!! +# was extracting the wrong value!!! + + +#overlay fills in black areas with color, but darkens them +#subtract inverts colors +#multiply128 does opposite of what I want +#darken so close, but it desaturates image layer where white is + + +#IMAGE +A=${1} +#MATTE LAYER +B=${2} +OUTPUT_FILE=${3} + +#swap [0]split with [1]split and [m][a]alphamerge with [a][m]alphamerge +ffmpeg -y -i $A -i $B -filter_complex '[1]split[m][a];[a][m]alphamerge[keyed];[0][keyed]overlay=eof_action=endall' $OUTPUT_FILE \ No newline at end of file