Example #1
0
 public FFMpegException(FFMpegExceptionType type, string?message = null, Exception?innerException = null, string ffmpegErrorOutput = "", string ffmpegOutput = "")
     : base(message, innerException)
 {
     FfmpegOutput      = ffmpegOutput;
     FfmpegErrorOutput = ffmpegErrorOutput;
     Type = type;
 }
Example #2
0
 public FFMpegException(FFMpegExceptionType type, string message, FFMpegException innerException)
     : base(message, innerException)
 {
     Type = type;
 }
Example #3
0
 public FFMpegException(FFMpegExceptionType type, string message) : this(type, message, null)
 {
 }
Example #4
0
 public FFMpegException(FFMpegExceptionType type, StringBuilder sb) : this(type, sb.ToString(), null)
 {
 }
Example #5
0
 public FFMpegException(FFMpegExceptionType type) : this(type, null, null)
 {
 }
 public FFMpegStreamFormatException(FFMpegExceptionType type, string message, Exception?innerException = null)
     : base(type, message, innerException)
 {
 }
 public FFMpegException(FFMpegExceptionType type, string message)
     : base(message)
 {
     FFMpegErrorOutput = string.Empty;
     Type = type;
 }
 public FFMpegException(FFMpegExceptionType type, string message, string ffMpegErrorOutput = "")
     : base(message)
 {
     FFMpegErrorOutput = ffMpegErrorOutput;
     Type = type;
 }
Example #9
0
 public FFMpegException(FFMpegExceptionType type, string message) : base(message)
 {
     Type = type;
 }
Example #10
0
 public FFMpegException(FFMpegExceptionType type)
 {
     Type = type;
 }