Skip to content

Instantly share code, notes, and snippets.

@Casey-Bateman
Created July 28, 2014 16:07
Show Gist options
  • Save Casey-Bateman/2cf61c0bae2b5b421593 to your computer and use it in GitHub Desktop.
Save Casey-Bateman/2cf61c0bae2b5b421593 to your computer and use it in GitHub Desktop.
Step Two
//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