internal FFMPEGVideoConverter(string fileName, VideoFormat format)
 {
     args = format.GetArguments(fileName,
         outputFileName = Path.ChangeExtension(fileName,
             format.OutputFileExtension));
 }
 public VideoSelectedEventArgs(string fileName, VideoFormat format)
 {
     this.FileName = fileName;
     this.Format = format;
 }