1234567891011 |
- namespace Vinno.IUS.Common.Media.FFmpeg.Video
- {
- public class FFmpegVideoConverterArgs: FFmpegVideoArgs
- {
- public string InputFile { get; set; }
- public FFmpegVideoConverterArgs(string fileName, int width, int height) : base(fileName, width, height)
- {
- }
- }
- }
|