add image encoder based on ffmpeg

This commit is contained in:
Luke Pulverenti
2014-03-27 19:01:42 -04:00
parent 39ea2adbc5
commit 9705594845
7 changed files with 192 additions and 12 deletions

View File

@@ -0,0 +1,18 @@

namespace MediaBrowser.Controller.MediaEncoding
{
public class ImageEncodingOptions
{
public string InputPath { get; set; }
public int? Width { get; set; }
public int? Height { get; set; }
public int? MaxWidth { get; set; }
public int? MaxHeight { get; set; }
public string Format { get; set; }
}
}