public BackupDiskHandBrakeJob(HandBrakeService handBrakeService, string driveName, bool backupAll, int minMovieLen) { this.handBrakeService = handBrakeService; this.driveName = driveName; this.backupAll = backupAll; this.minMovieLen = minMovieLen; }
public EncodeMovieJob(HandBrakeService handBrakeService, string inputFilePath, bool keepFiles) { this.handBrakeService = handBrakeService; this.InputFileName = inputFilePath; this.keepFiles = keepFiles; this.titleIndex = 0; }
public BackupDiskMakeMKVJob(MakeMKVService makeMKVService, HandBrakeService handBrakeService, string driveName, bool keepMovies, int minMovieLen) { this.makeMKVService = makeMKVService; this.handBrakeService = handBrakeService; this.driveName = driveName; this.keepMovies = keepMovies; this.minMovieLen = minMovieLen; }
public EncodeMovieJob(HandBrakeService handBrakeService, string inputFilePath, string movieTitle, int titleIndex, int movieIndex, bool keepFiles) { this.handBrakeService = handBrakeService; this.InputFileName = inputFilePath; this.movieTitle = movieTitle; this.titleIndex = titleIndex; this.movieIndex = movieIndex; this.keepFiles = keepFiles; }
/* -- Methods -- */ public EncoderService() { makeMKVService = new MakeMKVService(MakeMkvConExePath, MakeMkvOutDir, GlobalBackupAll); handBrakeService = new HandBrakeService(HandBrakeCliExePath, HandBrakeProfileFile, HandBrakeSourceDir, HandBrakeOutDir, HandBrakeOutputType, HandBrakeForceSubtitles); }