FFmpegVideoArgs.cs 483 B

1234567891011121314151617181920212223
  1. namespace Vinno.IUS.Common.Media.FFmpeg.Video
  2. {
  3. public class FFmpegVideoArgs
  4. {
  5. public string Output { get;}
  6. public int Height { get;}
  7. public int Width { get;}
  8. public int FrameRate { get; set; } = 15;
  9. public int VideoQuality { get; set; } = 70;
  10. public FFmpegVideoArgs(string output, int width, int height)
  11. {
  12. Output = output;
  13. Width = width;
  14. Height = height;
  15. }
  16. }
  17. }