mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-01-15 23:58:57 +00:00
update hls to support mpeg2video
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user