Created
July 28, 2014 16:07
-
-
Save Casey-Bateman/2cf61c0bae2b5b421593 to your computer and use it in GitHub Desktop.
Step Two
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//we need to create an instance of a command factory. | |
var factory = CommandFactory.Create(); | |
//staging all input video streams for concatenation, filtering, and mapping to output | |
var command = factory.CreateOutputCommand() | |
.WithInput<VideoStream>("c:/foo/bar1.mp4") | |
.WithInput<VideoStream>("c:/foo/bar2.mp4") | |
.WithInput<VideoStream>("c:/foo/bar3.mp4"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment