Пример #1
0
 /// <summary>
 /// Called once all the subscriptions are established.
 /// </summary>
 private void OnPipelineRun()
 {
     MP4Writer.Startup();
     this.writer = new MP4Writer();
     this.writer.Open(this.filename, this.configuration.Config);
 }
Пример #2
0
 /// <summary>
 /// Called once all the subscriptions are established.
 /// </summary>
 /// <param name="onCompleted">Delegate to call when the execution completed</param>
 /// <param name="descriptor">If set, describes the playback constraints</param>
 void IStartable.Start(Action onCompleted, ReplayDescriptor descriptor)
 {
     MP4Writer.Startup();
     this.writer = new MP4Writer();
     this.writer.Open(this.filename, this.configuration.Config);
 }