예제 #1
0
 public FFProbeWrapper(IOptions <FFMpegSettings> ffmpegSettings,
                       IOptions <VideoSettings> videoSettings,
                       IShellExecutableFactory shellExecutableFactory)
 {
     _options                = ffmpegSettings.Value;
     _videoSettings          = videoSettings.Value;
     _shellExecutableFactory = shellExecutableFactory;
 }
예제 #2
0
 public FFMpegWrapper(IOptions <ProcessorSettings> processorSettings,
                      IShellExecutableFactory shellExecutableFactory)
 {
     _options = processorSettings.Value;
     _shellExecutableFactory = shellExecutableFactory;
 }