mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-04 15:28:23 +00:00
update hls to support mpeg2video
This commit is contained in:
parent
aaa244be4c
commit
ce1ed2bea7
20 changed files with 268 additions and 112 deletions
|
|
@ -733,12 +733,18 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||
|
||||
if (videoStream.IsInterlaced)
|
||||
{
|
||||
return false;
|
||||
if (request.DeInterlace)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
if (videoStream.IsAnamorphic ?? false)
|
||||
{
|
||||
return false;
|
||||
if (request.RequireNonAnamorphic)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
// Can't stream copy if we're burning in subtitles
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue