Beispiel #1
0
 public FfmpegVideoRotatorTests()
 {
     DeleteTestFiles();
     _fakeFfmpegExecutor = A.Fake <IFfmpegExecutor>();
     _ffmpegVideoRotator = new FfmpegVideoRotator(_fakeFfmpegExecutor);
 }
Beispiel #2
0
 public FfmpegVideoRotator(IFfmpegExecutor ffmpegExecutor)
 {
     _ffmpegExecutor = ffmpegExecutor;
 }
Beispiel #3
0
 public FfmpegMediaMuxer(IFfmpegExecutor ffmpegExecutor)
 {
     _ffmpegExecutor = ffmpegExecutor;
 }
 public FfmpegMediaMuxerTests()
 {
     DeleteTestFiles();
     _fakeFfmpegExecutor = A.Fake <IFfmpegExecutor>();
     _FfmpegMediaMuxer   = new FfmpegMediaMuxer(_fakeFfmpegExecutor);
 }