mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-18 09:08:03 +00:00
add image encoder based on ffmpeg
This commit is contained in:
committed by
Tim Hobbs
parent
fb22901d38
commit
0aec40966e
@@ -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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user