We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ceeee69 commit bb39562Copy full SHA for bb39562
ffmpeg_test.go
@@ -69,6 +69,14 @@ func TestSimpleExample(t *testing.T) {
69
assert.Nil(t, err)
70
}
71
72
+func TestSimpleOverLayExample(t *testing.T) {
73
+ err := Input(TestInputFile1, nil).
74
+ Overlay(Input(TestOverlayFile), "").
75
+ Output(TestOutputFile1).OverWriteOutput().
76
+ Run()
77
+ assert.Nil(t, err)
78
+}
79
+
80
func ComplexFilterExample() *Stream {
81
split := Input(TestInputFile1).VFlip().Split()
82
split0, split1 := split.Get("0"), split.Get("1")
0 commit comments