1234567891011121314151617181920212223 |
- namespace Vinno.IUS.Common.Media.FFmpeg.Video
- {
- public class FFmpegVideoArgs
- {
- public string Output { get;}
- public int Height { get;}
- public int Width { get;}
- public int FrameRate { get; set; } = 15;
- public int VideoQuality { get; set; } = 70;
- public FFmpegVideoArgs(string output, int width, int height)
- {
- Output = output;
- Width = width;
- Height = height;
- }
- }
- }
|