コード例 #1
0
 public FFMpeg(TemporaryFilesStorage temporaryFilesStorage,
               ProcessPriorityClass ffmpegProcessPriorityClass = ProcessPriorityClass.High,
               IObservable <double> stopSignal = null)
 {
     this.temporaryFilesStorage      = temporaryFilesStorage;
     this.ffmpegProcessPriorityClass = ffmpegProcessPriorityClass;
     this.stopSignal = stopSignal ?? Observable.Empty <double>();
 }
コード例 #2
0
 public FFMpegCommandBuilder(TemporaryFilesStorage temporaryFilesStorage)
 {
     this.temporaryFilesStorage = temporaryFilesStorage;
 }