mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-20 22:49:39 +00:00
restored live tv playback in the web client
This commit is contained in:
parent
a90d892eca
commit
f756e39b9d
31 changed files with 1373 additions and 192 deletions
|
|
@ -0,0 +1,26 @@
|
|||
|
||||
namespace MediaBrowser.Controller.MediaEncoding
|
||||
{
|
||||
public class VideoEncodingOptions : EncodingOptions
|
||||
{
|
||||
public string VideoCodec { get; set; }
|
||||
|
||||
public string VideoProfile { get; set; }
|
||||
|
||||
public double? VideoLevel { get; set; }
|
||||
|
||||
public int? VideoStreamIndex { get; set; }
|
||||
|
||||
public int? AudioStreamIndex { get; set; }
|
||||
|
||||
public int? SubtitleStreamIndex { get; set; }
|
||||
|
||||
public int? MaxWidth { get; set; }
|
||||
|
||||
public int? MaxHeight { get; set; }
|
||||
|
||||
public int? Height { get; set; }
|
||||
|
||||
public int? Width { get; set; }
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue