mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-08-04 07:10:45 +00:00
Fix playback of complex BluRay ISOs (#6166)
This commit is contained in:
parent
d366fd3fd7
commit
adf406b182
2 changed files with 4 additions and 2 deletions
|
|
@ -367,7 +367,8 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
|||
public string GetInputArgument(string inputFile, MediaSourceInfo mediaSource)
|
||||
{
|
||||
var prefix = "file";
|
||||
if (mediaSource.VideoType == VideoType.BluRay)
|
||||
if (mediaSource.VideoType == VideoType.BluRay
|
||||
|| mediaSource.IsoType == IsoType.BluRay)
|
||||
{
|
||||
prefix = "bluray";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue