コード例 #1
0
 public static List <CommandOutput> To <TOutputType>(this FFmpegCommand command, SettingsCollection settings)
     where TOutputType : class, IContainer, new()
 {
     return(command.To <TOutputType>(string.Empty, settings));
 }
コード例 #2
0
 public static List <CommandOutput> To <TOutputType>(this FFmpegCommand command)
     where TOutputType : class, IContainer, new()
 {
     return(command.To <TOutputType>(SettingsCollection.ForOutput()));
 }