mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-27 04:08:33 +00:00
support additional encoding switches
This commit is contained in:
parent
bdf27b81c1
commit
92eeee0fc5
4 changed files with 82 additions and 15 deletions
|
|
@ -39,14 +39,52 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
|
||||
public bool ReadInputAtNativeFramerate { get; set; }
|
||||
|
||||
public bool IgnoreDts
|
||||
public bool IgnoreInputDts
|
||||
{
|
||||
get { return MediaSource.IgnoreDts; }
|
||||
get
|
||||
{
|
||||
return MediaSource.IgnoreDts;
|
||||
}
|
||||
}
|
||||
|
||||
public bool IgnoreIndex
|
||||
public bool IgnoreInputIndex
|
||||
{
|
||||
get { return MediaSource.IgnoreIndex; }
|
||||
get
|
||||
{
|
||||
return MediaSource.IgnoreIndex;
|
||||
}
|
||||
}
|
||||
|
||||
public bool GenPtsInput
|
||||
{
|
||||
get
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public bool DiscardCorruptFramesInput
|
||||
{
|
||||
get
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public bool EnableFastSeekInput
|
||||
{
|
||||
get
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public bool GenPtsOutput
|
||||
{
|
||||
get
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public string OutputContainer { get; set; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue